diff --git a/.travis.yml b/.travis.yml
index f29f71aa19f..77881dbc492 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,14 +1,22 @@
+language: nix
matrix:
- allow_failures:
- - os: osx
include:
- os: linux
- language: generic
+ sudo: false
+ script:
+ - ./maintainers/scripts/travis-nox-review-pr.sh nixpkgs-verify nixpkgs-manual nixpkgs-tarball
+ - ./maintainers/scripts/travis-nox-review-pr.sh nixos-options nixos-manual
+ - os: linux
sudo: required
dist: trusty
+ before_script:
+ - sudo mount -o remount,exec,size=2G,mode=755 /run/user
+ script: ./maintainers/scripts/travis-nox-review-pr.sh pr
- os: osx
- language: generic
osx_image: xcode7.3
-before_install: ./maintainers/scripts/travis-nox-review-pr.sh nix
-install: ./maintainers/scripts/travis-nox-review-pr.sh nox
-script: ./maintainers/scripts/travis-nox-review-pr.sh build
+ script: ./maintainers/scripts/travis-nox-review-pr.sh pr
+git:
+ depth: 1
+env:
+ global:
+ - GITHUB_TOKEN=5edaaf1017f691ed34e7f80878f8f5fbd071603f
diff --git a/README.md b/README.md
index c3187f20462..237ec72223c 100644
--- a/README.md
+++ b/README.md
@@ -31,7 +31,7 @@ For pull-requests, please rebase onto nixpkgs `master`.
* [Documentation (Nix Expression Language chapter)](https://nixos.org/nix/manual/#ch-expression-language)
* [Manual (How to write packages for Nix)](https://nixos.org/nixpkgs/manual/)
* [Manual (NixOS)](https://nixos.org/nixos/manual/)
-* [Nix Wiki](https://nixos.org/wiki/)
+* [Nix Wiki](https://nixos.org/wiki/) (deprecated, see milestone ["Move the Wiki!"](https://github.com/NixOS/nixpkgs/issues?q=is%3Aopen+is%3Aissue+milestone%3A%22Move+the+wiki%21%22))
* [Continuous package builds for unstable/master](https://hydra.nixos.org/jobset/nixos/trunk-combined)
* [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)
diff --git a/default.nix b/default.nix
index c384a5bb694..8171f4149d2 100644
--- a/default.nix
+++ b/default.nix
@@ -6,4 +6,4 @@ if ! builtins ? nixVersion || builtins.compareVersions requiredVersion builtins.
else
- import ./pkgs/top-level
+ import ./pkgs/top-level/impure.nix
diff --git a/doc/functions.xml b/doc/functions.xml
index 73b178b061f..908e9571ed6 100644
--- a/doc/functions.xml
+++ b/doc/functions.xml
@@ -89,27 +89,27 @@ in ...
<pkg>.overrideDerivation
- Do not use this function in Nixpkgs. Because it breaks
- package abstraction and doesn’t provide error checking for
- function arguments, it is only intended for ad-hoc customisation
- (such as in ~/.nixpkgs/config.nix).
-
-
-
- Additionally, overrideDerivation forces an evaluation
- of the Derivation which can be quite a performance penalty if there are many
- overrides used.
+ Do not use this function in Nixpkgs as it evaluates a Derivation
+ before modifying it, which breaks package abstraction and removes
+ error-checking of function arguments. In addition, this
+ evaluation-per-function application incurs a performance penalty,
+ which can become a problem if many overrides are used.
+ It is only intended for ad-hoc customisation, such as in
+ ~/.nixpkgs/config.nix.
- The function overrideDerivation is usually available for all the
- derivations in the nixpkgs expression (pkgs).
+ The function overrideDerivation creates a new derivation
+ based on an existing one by overriding the original's attributes with
+ the attribute set produced by the specified function.
+ This function is available on all
+ derivations defined using the makeOverridable function.
+ Most standard derivation-producing functions, such as
+ stdenv.mkDerivation, are defined using this
+ function, which means most packages in the nixpkgs expression,
+ pkgs, have this function.
-
- It is used to create a new derivation by overriding the attributes of
- the original derivation according to the given function.
-
Example usage:
@@ -125,9 +125,9 @@ in ...
- In the above example, the name, src and patches of the derivation
- will be overridden, while all other attributes will be retained from the
- original derivation.
+ In the above example, the name, src,
+ and patches of the derivation will be overridden, while
+ all other attributes will be retained from the original derivation.
@@ -135,6 +135,20 @@ in ...
the original derivation.
+
+
+ A package's attributes are evaluated *before* being modified by
+ the overrideDerivation function.
+ For example, the name attribute reference
+ in url = "mirror://gnu/hello/${name}.tar.gz";
+ is filled-in *before* the overrideDerivation function
+ modifies the attribute set. This means that overriding the
+ name attribute, in this example, *will not* change the
+ value of the url attribute. Instead, we need to override
+ both the name *and* url attributes.
+
+
+
diff --git a/lib/attrsets.nix b/lib/attrsets.nix
index 636cb257d6b..f47e481c58a 100644
--- a/lib/attrsets.nix
+++ b/lib/attrsets.nix
@@ -457,7 +457,6 @@ rec {
/*** deprecated stuff ***/
- deepSeqAttrs = throw "removed 2016-02-29 because unused and broken";
zipWithNames = zipAttrsWithNames;
zip = builtins.trace
"lib.zip is deprecated, use lib.zipAttrsWith instead" zipAttrsWith;
diff --git a/lib/lists.nix b/lib/lists.nix
index c810c8c2f5f..6712e5cc93f 100644
--- a/lib/lists.nix
+++ b/lib/lists.nix
@@ -374,8 +374,4 @@ rec {
*/
subtractLists = e: filter (x: !(elem x e));
- /*** deprecated stuff ***/
-
- deepSeqList = throw "removed 2016-02-29 because unused and broken";
-
}
diff --git a/lib/maintainers.nix b/lib/maintainers.nix
index ca4dd4f98e8..56816bb206c 100644
--- a/lib/maintainers.nix
+++ b/lib/maintainers.nix
@@ -15,6 +15,7 @@
adev = "Adrien Devresse ";
Adjective-Object = "Maxwell Huang-Hobbs ";
adnelson = "Allen Nelson ";
+ adolfogc = "Adolfo E. García Castro ";
aespinosa = "Allan Espinosa ";
aflatter = "Alexander Flatter ";
aforemny = "Alexander Foremny ";
@@ -162,6 +163,7 @@
guibert = "David Guibert ";
havvy = "Ryan Scheel ";
hbunke = "Hendrik Bunke ";
+ hce = "Hans-Christian Esperer ";
henrytill = "Henry Till ";
hiberno = "Christian Lask ";
hinton = "Tom Hinton ";
@@ -185,6 +187,7 @@
joamaki = "Jussi Maki ";
joelmo = "Joel Moberg ";
joelteon = "Joel Taylor ";
+ joko = "Ioannis Koutras ";
jpbernardy = "Jean-Philippe Bernardy ";
jraygauthier = "Raymond Gauthier ";
juliendehos = "Julien Dehos ";
@@ -231,6 +234,7 @@
markus1189 = "Markus Hauck ";
markWot = "Markus Wotringer ";
martijnvermaat = "Martijn Vermaat ";
+ martingms = "Martin Gammelsæter ";
matejc = "Matej Cotman ";
mathnerd314 = "Mathnerd314 ";
matthiasbeyer = "Matthias Beyer ";
@@ -353,6 +357,7 @@
sheganinans = "Aistis Raulinaitis ";
shell = "Shell Turner ";
shlevy = "Shea Levy ";
+ siddharthist = "Langston Barrett ";
simonvandel = "Simon Vandel Sillesen ";
sjagoe = "Simon Jagoe ";
sjmackenzie = "Stewart Mackenzie ";
@@ -420,6 +425,7 @@
wscott = "Wayne Scott ";
wyvie = "Elijah Rum ";
yarr = "Dmitry V. ";
+ yurrriq = "Eric Bailey ";
z77z = "Marco Maggesi ";
zagy = "Christian Zagrodnick ";
zef = "Zef Hemel ";
diff --git a/maintainers/scripts/generate-kde-applications.sh b/maintainers/scripts/generate-kde-applications.sh
index 525abcc3c2d..b4073a05b88 100755
--- a/maintainers/scripts/generate-kde-applications.sh
+++ b/maintainers/scripts/generate-kde-applications.sh
@@ -1,3 +1,5 @@
#!/bin/sh
-./fetch-kde-qt.sh http://download.kde.org/stable/applications/16.04.2/ -A '*.tar.xz'
+./maintainers/scripts/fetch-kde-qt.sh \
+ http://download.kde.org/stable/applications/16.04.3/ -A '*.tar.xz' \
+ >pkgs/desktops/kde-5/applications/srcs.nix
diff --git a/maintainers/scripts/generate-kde-frameworks.sh b/maintainers/scripts/generate-kde-frameworks.sh
index aa693ced704..b3b559b3571 100755
--- a/maintainers/scripts/generate-kde-frameworks.sh
+++ b/maintainers/scripts/generate-kde-frameworks.sh
@@ -1,3 +1,5 @@
#!/bin/sh
-./fetch-kde-qt.sh http://download.kde.org/stable/frameworks/5.22/ -A '*.tar.xz'
+./maintainers/scripts/fetch-kde-qt.sh \
+ http://download.kde.org/stable/frameworks/5.24/ -A '*.tar.xz' \
+ >pkgs/desktops/kde-5/frameworks/srcs.nix
diff --git a/maintainers/scripts/generate-kde-plasma.sh b/maintainers/scripts/generate-kde-plasma.sh
index fa804758f09..1d93a05512c 100755
--- a/maintainers/scripts/generate-kde-plasma.sh
+++ b/maintainers/scripts/generate-kde-plasma.sh
@@ -1,3 +1,5 @@
#!/bin/sh
-./fetch-kde-qt.sh http://download.kde.org/stable/plasma/5.6.5/ -A '*.tar.xz'
+./maintainers/scripts/fetch-kde-qt.sh \
+ http://download.kde.org/stable/plasma/5.7.1/ -A '*.tar.xz' \
+ >pkgs/desktops/kde-5/plasma/srcs.nix
diff --git a/maintainers/scripts/travis-nox-review-pr.sh b/maintainers/scripts/travis-nox-review-pr.sh
index 092fc0cd9d0..5b25e4f37c1 100755
--- a/maintainers/scripts/travis-nox-review-pr.sh
+++ b/maintainers/scripts/travis-nox-review-pr.sh
@@ -1,58 +1,69 @@
#! /usr/bin/env bash
set -e
-export NIX_CURL_FLAGS=-sS
+while test -n "$1"; do
-if [[ $1 == nix ]]; then
- echo "=== Installing Nix..."
- # Install Nix
- bash <(curl -sS https://nixos.org/nix/install)
- source $HOME/.nix-profile/etc/profile.d/nix.sh
+ # tell Travis to use folding
+ echo -en "travis_fold:start:$1\r"
- # Make sure we can use hydra's binary cache
- sudo mkdir /etc/nix
- sudo sh -c 'echo "build-max-jobs = 4" > /etc/nix/nix.conf'
+ case $1 in
- # Verify evaluation
- echo "=== Verifying that nixpkgs evaluates..."
- nix-env -f. -qa --json >/dev/null
-elif [[ $1 == nox ]]; then
- source $HOME/.nix-profile/etc/profile.d/nix.sh
- echo "=== Installing nox..."
- nix-build -A nox '' --show-trace
-elif [[ $1 == build ]]; then
- source $HOME/.nix-profile/etc/profile.d/nix.sh
+ nixpkgs-verify)
+ echo "=== Verifying that nixpkgs evaluates..."
- if [[ $TRAVIS_OS_NAME == "osx" ]]; then
- echo "Skipping NixOS things on darwin"
- else
- # Nix builds in /tmp and we need exec support
- sudo mount -o remount,exec /run
- sudo mount -o remount,exec /run/user
- sudo mount
+ nix-env --file $TRAVIS_BUILD_DIR --query --available --json > /dev/null
+ ;;
- echo "=== Checking NixOS options"
- nix-build nixos/release.nix -A options --show-trace
+ nixos-options)
+ echo "=== Checking NixOS options"
- echo "=== Checking tarball creation"
- nix-build pkgs/top-level/release.nix -A tarball --show-trace
- fi
+ nix-build $TRAVIS_BUILD_DIR/nixos/release.nix --attr options --show-trace
+ ;;
- if [[ $TRAVIS_PULL_REQUEST == false ]]; then
- echo "=== Not a pull request"
- else
- echo "=== Checking PR"
+ nixos-manual)
+ echo "=== Checking NixOS manuals"
- if ! nix-shell -p nox --run "nox-review pr ${TRAVIS_PULL_REQUEST}"; then
- if sudo dmesg | egrep 'Out of memory|Killed process' > /tmp/oom-log; then
- echo "=== The build failed due to running out of memory:"
- cat /tmp/oom-log
- echo "=== Please disregard the result of this Travis build."
+ nix-build $TRAVIS_BUILD_DIR/nixos/release.nix --attr manual --show-trace
+ ;;
+
+ nixpkgs-manual)
+ echo "=== Checking nixpkgs manuals"
+
+ nix-build $TRAVIS_BUILD_DIR/pkgs/top-level/release.nix --attr manpages --show-trace
+ ;;
+
+ nixpkgs-tarball)
+ echo "=== Checking nixpkgs tarball creation"
+
+ nix-build $TRAVIS_BUILD_DIR/pkgs/top-level/release.nix --attr tarball --show-trace
+ ;;
+
+ nixpkgs-lint)
+ echo "=== Checking nixpkgs lint"
+
+ nix-shell --packages nixpkgs-lint --run "nixpkgs-lint -f $TRAVIS_BUILD_DIR"
+ ;;
+
+ pr)
+ if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
+ echo "=== No pull request found"
+ else
+ echo "=== Building pull request #$TRAVIS_PULL_REQUEST"
+
+ token=""
+ if [ -n "$GITHUB_TOKEN" ]; then
+ token="--token $GITHUB_TOKEN"
+ fi
+
+ nix-shell --packages nox git --run "nox-review pr --slug $TRAVIS_REPO_SLUG $token $TRAVIS_PULL_REQUEST"
fi
- exit 1
- fi
- fi
-else
- echo "$0: Unknown option $1" >&2
- false
-fi
+ ;;
+
+ *)
+ echo "Skipping unknown option $1"
+ ;;
+ esac
+
+ echo -en "travis_fold:end:$1\r"
+ shift
+done
diff --git a/nixos/doc/manual/man-nixos-version.xml b/nixos/doc/manual/man-nixos-version.xml
new file mode 100644
index 00000000000..615d74f9090
--- /dev/null
+++ b/nixos/doc/manual/man-nixos-version.xml
@@ -0,0 +1,97 @@
+
+
+
+ nixos-version
+ 8
+ NixOS
+
+
+
+ nixos-version
+ show the NixOS version
+
+
+
+
+ nixos-version
+
+
+
+
+
+Description
+
+This command shows the version of the currently active NixOS
+configuration. For example:
+
+$ nixos-version
+16.03.1011.6317da4 (Emu)
+
+
+The version consists of the following elements:
+
+
+
+
+ 16.03
+ The NixOS release, indicating the year and month
+ in which it was released (e.g. March 2016).
+
+
+
+ 1011
+ The number of commits in the Nixpkgs Git
+ repository between the start of the release branch and the commit
+ from which this version was built. This ensures that NixOS
+ versions are monotonically increasing. It is
+ git when the current NixOS configuration was
+ built from a checkout of the Nixpkgs Git repository rather than
+ from a NixOS channel.
+
+
+
+ 6317da4
+ The first 7 characters of the commit in the
+ Nixpkgs Git repository from which this version was
+ built.
+
+
+
+ Emu
+ The code name of the NixOS release. The first
+ letter of the code name indicates that this is the N'th stable
+ NixOS release; for example, Emu is the fifth
+ release.
+
+
+
+
+
+
+
+
+
+Options
+
+This command accepts the following options:
+
+
+
+
+
+
+
+ Show the full SHA1 hash of the Git commit from which this
+ configuration was built, e.g.
+$ nixos-version --hash
+6317da40006f6bc2480c6781999c52d88dde2acf
+
+
+
+
+
+
+
+
diff --git a/nixos/doc/manual/man-pages.xml b/nixos/doc/manual/man-pages.xml
index 97a2c16d406..e945e0e6263 100644
--- a/nixos/doc/manual/man-pages.xml
+++ b/nixos/doc/manual/man-pages.xml
@@ -27,5 +27,6 @@
+
diff --git a/nixos/maintainers/scripts/ec2/create-amis.sh b/nixos/maintainers/scripts/ec2/create-amis.sh
index 192f608e138..e26caa19164 100755
--- a/nixos/maintainers/scripts/ec2/create-amis.sh
+++ b/nixos/maintainers/scripts/ec2/create-amis.sh
@@ -13,8 +13,11 @@ echo "NixOS version is $version ($major)"
rm -f ec2-amis.nix
+types="hvm pv"
+stores="ebs s3"
+regions="eu-west-1 eu-central-1 us-east-1 us-west-1 us-west-2 ap-southeast-1 ap-southeast-2 ap-northeast-1 ap-northeast-2 sa-east-1 ap-south-1"
-for type in hvm pv; do
+for type in $types; do
link=$stateDir/$type
imageFile=$link/nixos.qcow2
system=x86_64-linux
@@ -31,7 +34,7 @@ for type in hvm pv; do
--arg configuration "{ imports = [ ]; ec2.hvm = $hvmFlag; }"
fi
- for store in ebs s3; do
+ for store in $stores; do
bucket=nixos-amis
bucketDir="$version-$type-$store"
@@ -39,7 +42,7 @@ for type in hvm pv; do
prevAmi=
prevRegion=
- for region in eu-west-1 eu-central-1 us-east-1 us-west-1 us-west-2 ap-southeast-1 ap-southeast-2 ap-northeast-1 sa-east-1; do
+ for region in $regions; do
name=nixos-$version-$arch-$type-$store
description="NixOS $system $version ($type-$store)"
@@ -51,10 +54,11 @@ for type in hvm pv; do
echo "doing $name in $region..."
if [ -n "$prevAmi" ]; then
- ami=$(ec2-copy-image \
+ ami=$(aws ec2 copy-image \
--region "$region" \
- --source-region "$prevRegion" --source-ami-id "$prevAmi" \
- --name "$name" --description "$description" | cut -f 2)
+ --source-region "$prevRegion" --source-image-id "$prevAmi" \
+ --name "$name" --description "$description" | json -q .ImageId)
+ if [ "$ami" = null ]; then break; fi
else
if [ $store = s3 ]; then
@@ -85,12 +89,12 @@ for type in hvm pv; do
ec2-upload-bundle \
-m $imageDir/$type.raw.manifest.xml \
-b "$bucket/$bucketDir" \
- -a "$EC2_ACCESS_KEY" -s "$EC2_SECRET_KEY" \
+ -a "$AWS_ACCESS_KEY_ID" -s "$AWS_SECRET_ACCESS_KEY" \
--location EU
touch $imageDir/uploaded
fi
- extraFlags="$bucket/$bucketDir/$type.raw.manifest.xml"
+ extraFlags="--image-location $bucket/$bucketDir/$type.raw.manifest.xml"
else
@@ -115,7 +119,8 @@ for type in hvm pv; do
if [ -z "$snapId" -a -z "$volId" -a -z "$taskId" ]; then
echo "importing $vhdFile..."
taskId=$(ec2-import-volume $vhdFile --no-upload -f vhd \
- -o "$EC2_ACCESS_KEY" -w "$EC2_SECRET_KEY" \
+ -O "$AWS_ACCESS_KEY_ID" -W "$AWS_SECRET_ACCESS_KEY" \
+ -o "$AWS_ACCESS_KEY_ID" -w "$AWS_SECRET_ACCESS_KEY" \
--region "$region" -z "${region}a" \
--bucket "$bucket" --prefix "$bucketDir/" \
| tee /dev/stderr \
@@ -125,15 +130,16 @@ for type in hvm pv; do
if [ -z "$snapId" -a -z "$volId" ]; then
ec2-resume-import $vhdFile -t "$taskId" --region "$region" \
- -o "$EC2_ACCESS_KEY" -w "$EC2_SECRET_KEY"
+ -O "$AWS_ACCESS_KEY_ID" -W "$AWS_SECRET_ACCESS_KEY" \
+ -o "$AWS_ACCESS_KEY_ID" -w "$AWS_SECRET_ACCESS_KEY"
fi
# Wait for the volume creation to finish.
if [ -z "$snapId" -a -z "$volId" ]; then
echo "waiting for import to finish..."
while true; do
- volId=$(ec2-describe-conversion-tasks "$taskId" --region "$region" | sed 's/.*VolumeId.*\(vol-[0-9a-f]\+\).*/\1/ ; t ; d')
- if [ -n "$volId" ]; then break; fi
+ volId=$(aws ec2 describe-conversion-tasks --conversion-task-ids "$taskId" --region "$region" | jq -r .ConversionTasks[0].ImportVolume.Volume.Id)
+ if [ "$volId" != null ]; then break; fi
sleep 10
done
@@ -143,22 +149,24 @@ for type in hvm pv; do
# Delete the import task.
if [ -n "$volId" -a -n "$taskId" ]; then
echo "removing import task..."
- ec2-delete-disk-image -t "$taskId" --region "$region" -o "$EC2_ACCESS_KEY" -w "$EC2_SECRET_KEY" || true
+ ec2-delete-disk-image -t "$taskId" --region "$region" \
+ -O "$AWS_ACCESS_KEY_ID" -W "$AWS_SECRET_ACCESS_KEY" \
+ -o "$AWS_ACCESS_KEY_ID" -w "$AWS_SECRET_ACCESS_KEY" || true
rm -f $stateDir/$region.$type.task-id
fi
# Create a snapshot.
if [ -z "$snapId" ]; then
echo "creating snapshot..."
- snapId=$(ec2-create-snapshot "$volId" --region "$region" | cut -f 2)
+ snapId=$(aws ec2 create-snapshot --volume-id "$volId" --region "$region" --description "$description" | jq -r .SnapshotId)
+ if [ "$snapId" = null ]; then exit 1; fi
echo -n "$snapId" > $stateDir/$region.$type.snap-id
- ec2-create-tags "$snapId" -t "Name=$description" --region "$region"
fi
# Wait for the snapshot to finish.
echo "waiting for snapshot to finish..."
while true; do
- status=$(ec2-describe-snapshots "$snapId" --region "$region" | head -n1 | cut -f 4)
+ status=$(aws ec2 describe-snapshots --snapshot-ids "$snapId" --region "$region" | jq -r .Snapshots[0].State)
if [ "$status" = completed ]; then break; fi
sleep 10
done
@@ -166,35 +174,50 @@ for type in hvm pv; do
# Delete the volume.
if [ -n "$volId" ]; then
echo "deleting volume..."
- ec2-delete-volume "$volId" --region "$region" || true
+ aws ec2 delete-volume --volume-id "$volId" --region "$region" || true
rm -f $stateDir/$region.$type.vol-id
fi
- extraFlags="-b /dev/sda1=$snapId:$vhdFileLogicalGigaBytes:true:gp2"
+ blockDeviceMappings="DeviceName=/dev/sda1,Ebs={SnapshotId=$snapId,VolumeSize=$vhdFileLogicalGigaBytes,DeleteOnTermination=true,VolumeType=gp2}"
+ extraFlags=""
if [ $type = pv ]; then
- extraFlags+=" --root-device-name=/dev/sda1"
+ extraFlags+=" --root-device-name /dev/sda1"
+ else
+ extraFlags+=" --root-device-name /dev/sda1"
+ extraFlags+=" --sriov-net-support simple"
+ extraFlags+=" --ena-support"
fi
- extraFlags+=" -b /dev/sdb=ephemeral0 -b /dev/sdc=ephemeral1 -b /dev/sdd=ephemeral2 -b /dev/sde=ephemeral3"
+ blockDeviceMappings+=" DeviceName=/dev/sdb,VirtualName=ephemeral0"
+ blockDeviceMappings+=" DeviceName=/dev/sdc,VirtualName=ephemeral1"
+ blockDeviceMappings+=" DeviceName=/dev/sdd,VirtualName=ephemeral2"
+ blockDeviceMappings+=" DeviceName=/dev/sde,VirtualName=ephemeral3"
+ fi
+
+ if [ $type = hvm ]; then
+ extraFlags+=" --sriov-net-support simple"
+ extraFlags+=" --ena-support"
fi
# Register the AMI.
if [ $type = pv ]; then
- kernel=$(ec2-describe-images -o amazon --filter "manifest-location=*pv-grub-hd0_1.04-$arch*" --region "$region" | cut -f 2)
- [ -n "$kernel" ]
+ kernel=$(aws ec2 describe-images --owner amazon --filters "Name=name,Values=pv-grub-hd0_1.04-$arch.gz" | jq -r .Images[0].ImageId)
+ if [ "$kernel" = null ]; then break; fi
echo "using PV-GRUB kernel $kernel"
extraFlags+=" --virtualization-type paravirtual --kernel $kernel"
else
extraFlags+=" --virtualization-type hvm"
fi
- ami=$(ec2-register \
- -n "$name" \
- -d "$description" \
+ ami=$(aws ec2 register-image \
+ --name "$name" \
+ --description "$description" \
--region "$region" \
--architecture "$arch" \
- $extraFlags | cut -f 2)
+ --block-device-mappings $blockDeviceMappings \
+ $extraFlags | jq -r .ImageId)
+ if [ "$ami" = null ]; then break; fi
fi
echo -n "$ami" > $amiFile
@@ -204,23 +227,45 @@ for type in hvm pv; do
ami=$(cat $amiFile)
fi
- if [ -z "$NO_WAIT" -o -z "$prevAmi" ]; then
- echo "waiting for AMI..."
- while true; do
- status=$(ec2-describe-images "$ami" --region "$region" | head -n1 | cut -f 5)
- if [ "$status" = available ]; then break; fi
- sleep 10
- done
-
- ec2-modify-image-attribute \
- --region "$region" "$ami" -l -a all
- fi
-
echo "region = $region, type = $type, store = $store, ami = $ami"
+
if [ -z "$prevAmi" ]; then
prevAmi="$ami"
prevRegion="$region"
fi
+ done
+
+ done
+
+done
+
+for type in $types; do
+ link=$stateDir/$type
+ system=x86_64-linux
+ arch=x86_64
+
+ for store in $stores; do
+
+ for region in $regions; do
+
+ name=nixos-$version-$arch-$type-$store
+ amiFile=$stateDir/$region.$type.$store.ami-id
+ ami=$(cat $amiFile)
+
+ echo "region = $region, type = $type, store = $store, ami = $ami"
+
+ echo -n "waiting for AMI..."
+ while true; do
+ status=$(aws ec2 describe-images --image-ids "$ami" --region "$region" | jq -r .Images[0].State)
+ if [ "$status" = available ]; then break; fi
+ sleep 10
+ echo -n '.'
+ done
+ echo
+
+ # Make the image public.
+ aws ec2 modify-image-attribute \
+ --image-id "$ami" --region "$region" --launch-permission 'Add={Group=all}'
echo " \"$major\".$region.$type-$store = \"$ami\";" >> ec2-amis.nix
done
diff --git a/nixos/modules/config/i18n.nix b/nixos/modules/config/i18n.nix
index b20fac6ad3e..e341931aacc 100644
--- a/nixos/modules/config/i18n.nix
+++ b/nixos/modules/config/i18n.nix
@@ -41,6 +41,15 @@ in
'';
};
+ consolePackages = mkOption {
+ type = types.listOf types.package;
+ default = with pkgs.kbdKeymaps; [ dvp neo ];
+ description = ''
+ List of additional packages that provide console fonts, keymaps and
+ other resources.
+ '';
+ };
+
consoleFont = mkOption {
type = types.str;
default = "Lat2-Terminus16";
diff --git a/nixos/modules/config/pulseaudio.nix b/nixos/modules/config/pulseaudio.nix
index a964e04531c..6984e85603f 100644
--- a/nixos/modules/config/pulseaudio.nix
+++ b/nixos/modules/config/pulseaudio.nix
@@ -161,6 +161,7 @@ in {
ExecStart = "${getBin cfg.package}/bin/pulseaudio --daemonize=no";
Restart = "on-failure";
};
+ environment = { DISPLAY = ":${toString config.services.xserver.display}"; };
};
sockets.pulseaudio = {
diff --git a/nixos/modules/i18n/input-method/fcitx.nix b/nixos/modules/i18n/input-method/fcitx.nix
index bdefd2d2d59..e97bb9f80eb 100644
--- a/nixos/modules/i18n/input-method/fcitx.nix
+++ b/nixos/modules/i18n/input-method/fcitx.nix
@@ -4,7 +4,7 @@ with lib;
let
cfg = config.i18n.inputMethod.fcitx;
- fcitxPackage = pkgs.fcitx-with-plugins.override { plugins = cfg.engines; };
+ fcitxPackage = pkgs.fcitx.override { plugins = cfg.engines; };
fcitxEngine = types.package // {
name = "fcitx-engine";
check = x: (lib.types.package.check x) && (attrByPath ["meta" "isFcitxEngine"] false x);
diff --git a/nixos/modules/installer/tools/nixos-version.sh b/nixos/modules/installer/tools/nixos-version.sh
index 51aa2dd8232..77a1b458a34 100644
--- a/nixos/modules/installer/tools/nixos-version.sh
+++ b/nixos/modules/installer/tools/nixos-version.sh
@@ -1,6 +1,10 @@
#! @shell@
case "$1" in
+ -h|--help)
+ exec man nixos-version
+ exit 1
+ ;;
--hash|--revision)
echo "@nixosRevision@"
;;
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index 67178e765c8..70963991986 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -249,6 +249,7 @@
./services/misc/nix-ssh-serve.nix
./services/misc/nzbget.nix
./services/misc/octoprint.nix
+ ./services/misc/packagekit.nix
./services/misc/parsoid.nix
./services/misc/phd.nix
./services/misc/plex.nix
@@ -258,6 +259,7 @@
./services/misc/ripple-data-api.nix
./services/misc/rogue.nix
./services/misc/siproxd.nix
+ ./services/misc/sonarr.nix
./services/misc/spice-vdagentd.nix
./services/misc/subsonic.nix
./services/misc/sundtek.nix
@@ -368,6 +370,7 @@
./services/networking/ntopng.nix
./services/networking/ntpd.nix
./services/networking/nylon.nix
+ ./services/networking/offlineimap.nix
./services/networking/oidentd.nix
./services/networking/openfire.nix
./services/networking/openntpd.nix
@@ -474,6 +477,7 @@
./services/web-servers/winstone.nix
./services/web-servers/zope2.nix
./services/x11/colord.nix
+ ./services/x11/compton.nix
./services/x11/unclutter.nix
./services/x11/desktop-managers/default.nix
./services/x11/display-managers/auto.nix
@@ -524,6 +528,7 @@
./system/boot/luksroot.nix
./system/boot/modprobe.nix
./system/boot/networkd.nix
+ ./system/boot/plymouth.nix
./system/boot/resolved.nix
./system/boot/shutdown.nix
./system/boot/stage-1.nix
diff --git a/nixos/modules/security/grsecurity.nix b/nixos/modules/security/grsecurity.nix
index 9d0249820d5..e825679c343 100644
--- a/nixos/modules/security/grsecurity.nix
+++ b/nixos/modules/security/grsecurity.nix
@@ -13,12 +13,16 @@ let
|| elem fs.mountPoint [ "/" "/nix" "/nix/store" "/var" "/var/log" "/var/lib" "/etc" ])
&& fs.fsType == "zfs")
(attrValues config.fileSystems) != [];
+
+ # Ascertain whether NixOS container support is required
+ containerSupportRequired =
+ config.boot.enableContainers && config.containers != {};
in
{
options.security.grsecurity = {
- enable = mkEnableOption "Grsecurity/PaX";
+ enable = mkEnableOption "grsecurity/PaX";
lockTunables = mkOption {
type = types.bool;
@@ -27,9 +31,9 @@ in
description = ''
Whether to automatically lock grsecurity tunables
(). Disable
- this to allow configuration of grsecurity features while the system is
- running. The lock can be manually engaged by activating the
- grsec-lock service unit.
+ this to allow runtime configuration of grsecurity features. Activate
+ the grsec-lock service unit to prevent further
+ configuration until the next reboot.
'';
};
@@ -48,10 +52,6 @@ in
(isYES "GRKERNSEC_SYSCTL_DISTRO")
];
- # Crashing on an overflow in kernel land is user unfriendly and may prevent
- # the system from booting, which is too severe for our use case.
- boot.kernelParams = [ "pax_size_overflow_report_only" ];
-
# Install PaX related utillities into the system profile. Eventually, we
# also want to include gradm here.
environment.systemPackages = with pkgs; [ paxctl pax-utils ];
@@ -59,7 +59,7 @@ in
# Install rules for the grsec device node
services.udev.packages = [ pkgs.gradm ];
- # This service unit is responsible for locking the Grsecurity tunables. The
+ # This service unit is responsible for locking the grsecurity tunables. The
# unit is always defined, but only activated on bootup if lockTunables is
# toggled. When lockTunables is toggled, failure to activate the unit will
# enter emergency mode. The intent is to make it difficult to silently
@@ -105,7 +105,7 @@ in
"kernel.grsecurity.chroot_deny_chroot" = mkForce 0;
"kernel.grsecurity.chroot_deny_mount" = mkForce 0;
"kernel.grsecurity.chroot_deny_pivot" = mkForce 0;
- } // optionalAttrs config.boot.enableContainers {
+ } // optionalAttrs containerSupportRequired {
# chroot(2) restrictions that conflict with NixOS lightweight containers
"kernel.grsecurity.chroot_deny_chmod" = mkForce 0;
"kernel.grsecurity.chroot_deny_mount" = mkForce 0;
diff --git a/nixos/modules/services/continuous-integration/jenkins/default.nix b/nixos/modules/services/continuous-integration/jenkins/default.nix
index ae3f186c1d0..4edbbf59a42 100644
--- a/nixos/modules/services/continuous-integration/jenkins/default.nix
+++ b/nixos/modules/services/continuous-integration/jenkins/default.nix
@@ -154,7 +154,7 @@ in {
'';
script = ''
- ${pkgs.jdk}/bin/java -jar ${pkgs.jenkins} --httpListenAddress=${cfg.listenAddress} \
+ ${pkgs.jdk}/bin/java -jar ${pkgs.jenkins}/webapps/jenkins.war --httpListenAddress=${cfg.listenAddress} \
--httpPort=${toString cfg.port} \
--prefix=${cfg.prefix} \
${concatStringsSep " " cfg.extraOptions}
diff --git a/nixos/modules/services/games/factorio.nix b/nixos/modules/services/games/factorio.nix
index 10f3daea69e..90834c5b260 100644
--- a/nixos/modules/services/games/factorio.nix
+++ b/nixos/modules/services/games/factorio.nix
@@ -78,7 +78,7 @@ in
test -e ${stateDir}/saves/${cfg.saveName}.zip || \
${pkgs.factorio-headless}/bin/factorio \
--config=${cfg.configFile} \
- --create=${cfg.saveName}
+ --create=${stateDir}/saves/${cfg.saveName}.zip
'';
serviceConfig = {
@@ -93,7 +93,7 @@ in
"${pkgs.factorio-headless}/bin/factorio"
"--config=${cfg.configFile}"
"--port=${toString cfg.port}"
- "--start-server=${cfg.saveName}"
+ "--start-server=${stateDir}/saves/${cfg.saveName}.zip"
];
};
};
diff --git a/nixos/modules/services/misc/cgminer.nix b/nixos/modules/services/misc/cgminer.nix
index 868dc87f723..5f97cc03414 100644
--- a/nixos/modules/services/misc/cgminer.nix
+++ b/nixos/modules/services/misc/cgminer.nix
@@ -126,7 +126,7 @@ in
environment = {
LD_LIBRARY_PATH = ''/run/opengl-driver/lib:/run/opengl-driver-32/lib'';
- DISPLAY = ":0";
+ DISPLAY = ":${toString config.services.xserver.display}";
GPU_MAX_ALLOC_PERCENT = "100";
GPU_USE_SYNC_OBJECTS = "1";
};
diff --git a/nixos/modules/services/misc/packagekit.nix b/nixos/modules/services/misc/packagekit.nix
new file mode 100644
index 00000000000..2d1ff7bb411
--- /dev/null
+++ b/nixos/modules/services/misc/packagekit.nix
@@ -0,0 +1,61 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+
+ cfg = config.services.packagekit;
+
+ backend = "nix";
+
+ packagekitConf = ''
+[Daemon]
+DefaultBackend=${backend}
+KeepCache=false
+ '';
+
+ vendorConf = ''
+[PackagesNotFound]
+DefaultUrl=https://github.com/NixOS/nixpkgs
+CodecUrl=https://github.com/NixOS/nixpkgs
+HardwareUrl=https://github.com/NixOS/nixpkgs
+FontUrl=https://github.com/NixOS/nixpkgs
+MimeUrl=https://github.com/NixOS/nixpkgs
+ '';
+
+in
+
+{
+
+ options = {
+
+ services.packagekit = {
+ enable = mkEnableOption
+ ''
+ PackageKit provides a cross-platform D-Bus abstraction layer for
+ installing software. Software utilizing PackageKit can install
+ software regardless of the package manager.
+ '';
+ };
+
+ };
+
+ config = mkIf cfg.enable {
+
+ services.dbus.packages = [ pkgs.packagekit ];
+
+ systemd.services.packagekit = {
+ description = "PackageKit Daemon";
+ wantedBy = [ "multi-user.target" ];
+ serviceConfig.ExecStart = "${pkgs.packagekit}/libexec/packagekitd";
+ serviceConfig.User = "root";
+ serviceConfig.BusName = "org.freedesktop.PackageKit";
+ serviceConfig.Type = "dbus";
+ };
+
+ environment.etc."PackageKit/PackageKit.conf".text = packagekitConf;
+ environment.etc."PackageKit/Vendor.conf".text = vendorConf;
+
+ };
+
+}
diff --git a/nixos/modules/services/misc/sonarr.nix b/nixos/modules/services/misc/sonarr.nix
new file mode 100644
index 00000000000..6d96daa6c3d
--- /dev/null
+++ b/nixos/modules/services/misc/sonarr.nix
@@ -0,0 +1,44 @@
+{ config, pkgs, lib, mono, ... }:
+
+with lib;
+
+let
+ cfg = config.services.sonarr;
+in
+{
+ options = {
+ services.sonarr = {
+ enable = mkEnableOption "Sonarr";
+ };
+ };
+
+ config = mkIf cfg.enable {
+ systemd.services.sonarr = {
+ description = "Sonarr";
+ after = [ "network.target" ];
+ wantedBy = [ "multi-user.target" ];
+ preStart = ''
+ test -d /var/lib/sonarr/ || {
+ echo "Creating sonarr data directory in /var/lib/sonarr/"
+ mkdir -p /var/lib/sonarr/
+ }
+ chown -R sonarr /var/lib/sonarr/
+ chmod 0700 /var/lib/sonarr/
+ '';
+
+ serviceConfig = {
+ Type = "simple";
+ User = "sonarr";
+ Group = "nogroup";
+ PermissionsStartOnly = "true";
+ ExecStart = "${pkgs.sonarr}/bin/NzbDrone --no-browser";
+ Restart = "on-failure";
+ };
+ };
+
+ users.extraUsers.sonarr = {
+ home = "/var/lib/sonarr";
+ };
+
+ };
+}
diff --git a/nixos/modules/services/monitoring/grafana.nix b/nixos/modules/services/monitoring/grafana.nix
index 0b7f3ce0a29..b9e4015c238 100644
--- a/nixos/modules/services/monitoring/grafana.nix
+++ b/nixos/modules/services/monitoring/grafana.nix
@@ -9,6 +9,7 @@ let
envOptions = {
PATHS_DATA = cfg.dataDir;
+ PATHS_PLUGINS = "${cfg.dataDir}/plugins";
PATHS_LOGS = "${cfg.dataDir}/log";
SERVER_PROTOCOL = cfg.protocol;
@@ -37,6 +38,8 @@ let
USERS_AUTO_ASSIGN_ORG_ROLE = cfg.users.autoAssignOrgRole;
AUTH_ANONYMOUS_ENABLED = b2s cfg.auth.anonymous.enable;
+ AUTH_ANONYMOUS_ORG_NAME = cfg.auth.anonymous.org_name;
+ AUTH_ANONYMOUS_ORG_ROLE = cfg.auth.anonymous.org_role;
ANALYTICS_REPORTING_ENABLED = b2s cfg.analytics.reporting.enable;
} // cfg.extraOptions;
@@ -196,6 +199,17 @@ in {
default = false;
type = types.bool;
};
+ org_name = mkOption {
+ description = "Which organization to allow anonymous access to";
+ default = "Main Org.";
+ type = types.str;
+ };
+ org_role = mkOption {
+ description = "Which role anonymous users have in the organization";
+ default = "Viewer";
+ type = types.str;
+ };
+
};
analytics.reporting = {
@@ -222,6 +236,8 @@ in {
"Grafana passwords will be stored as plaintext in the Nix store!"
];
+ environment.systemPackages = [ cfg.package ];
+
systemd.services.grafana = {
description = "Grafana Service Daemon";
wantedBy = ["multi-user.target"];
@@ -234,6 +250,7 @@ in {
};
preStart = ''
ln -fs ${cfg.package}/share/grafana/conf ${cfg.dataDir}
+ ln -fs ${cfg.package}/share/grafana/vendor ${cfg.dataDir}
'';
};
diff --git a/nixos/modules/services/monitoring/sysstat.nix b/nixos/modules/services/monitoring/sysstat.nix
new file mode 100644
index 00000000000..d668faa53cc
--- /dev/null
+++ b/nixos/modules/services/monitoring/sysstat.nix
@@ -0,0 +1,80 @@
+{ config, lib, pkgs, ... }:
+with lib;
+let
+ cfg = config.services.sysstat;
+in {
+ options = {
+ services.sysstat = {
+ enable = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Whether to enable sar system activity collection.
+ '';
+ };
+
+ collect-frequency = mkOption {
+ default = "*:00/10";
+ description = ''
+ OnCalendar specification for sysstat-collect
+ '';
+ };
+
+ collect-args = mkOption {
+ default = "1 1";
+ description = ''
+ Arguments to pass sa1 when collecting statistics
+ '';
+ };
+ };
+ };
+
+ config = mkIf cfg.enable {
+ systemd.services.sysstat = {
+ description = "Resets System Activity Logs";
+ wantedBy = [ "multi-user.target" ];
+ preStart = "test -d /var/log/sa || mkdir -p /var/log/sa";
+
+ serviceConfig = {
+ User = "root";
+ RemainAfterExit = true;
+ Type = "oneshot";
+ ExecStart = "${pkgs.sysstat}/lib/sa/sa1 --boot";
+ };
+ };
+
+ systemd.services.sysstat-collect = {
+ description = "system activity accounting tool";
+ unitConfig.Documentation = "man:sa1(8)";
+
+ serviceConfig = {
+ Type = "oneshot";
+ User = "root";
+ ExecStart = "${pkgs.sysstat}/lib/sa/sa1 ${cfg.collect-args}";
+ };
+ };
+
+ systemd.timers.sysstat-collect = {
+ description = "Run system activity accounting tool on a regular basis";
+ wantedBy = [ "timers.target" ];
+ timerConfig.OnCalendar = cfg.collect-frequency;
+ };
+
+ systemd.services.sysstat-summary = {
+ description = "Generate a daily summary of process accounting";
+ unitConfig.Documentation = "man:sa2(8)";
+
+ serviceConfig = {
+ Type = "oneshot";
+ User = "root";
+ ExecStart = "${pkgs.sysstat}/lib/sa/sa2 -A";
+ };
+ };
+
+ systemd.timers.sysstat-summary = {
+ description = "Generate summary of yesterday's process accounting";
+ wantedBy = [ "timers.target" ];
+ timerConfig.OnCalendar = "00:07:00";
+ };
+ };
+}
diff --git a/nixos/modules/services/networking/ddclient.nix b/nixos/modules/services/networking/ddclient.nix
index 633ceaebfa4..005c57dce7c 100644
--- a/nixos/modules/services/networking/ddclient.nix
+++ b/nixos/modules/services/networking/ddclient.nix
@@ -48,7 +48,7 @@ in
default = "";
type = str;
description = ''
- Password.
+ Password. WARNING: The password becomes world readable in the Nix store.
'';
};
diff --git a/nixos/modules/services/networking/offlineimap.nix b/nixos/modules/services/networking/offlineimap.nix
new file mode 100644
index 00000000000..31ce9280f31
--- /dev/null
+++ b/nixos/modules/services/networking/offlineimap.nix
@@ -0,0 +1,73 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+ cfg = config.services.offlineimap;
+in {
+
+ options.services.offlineimap = {
+ enable = mkEnableOption "Offlineimap, a software to dispose your mailbox(es) as a local Maildir(s).";
+
+ install = mkOption {
+ type = types.bool;
+ default = false;
+ example = true;
+ description = ''
+ Whether to install a user service for Offlineimap. Once
+ the service is started, emails will be fetched automatically.
+
+ The service must be manually started for each user with
+ "systemctl --user start offlineimap" or globally through
+ services.offlineimap.enable.
+ '';
+ };
+
+ package = mkOption {
+ type = types.package;
+ default = pkgs.offlineimap;
+ defaultText = "pkgs.offlineimap";
+ description = "Offlineimap derivation to use.";
+ };
+
+ path = mkOption {
+ type = types.listOf types.path;
+ default = [];
+ example = literalExample "[ pkgs.pass pkgs.bash pkgs.notmuch ]";
+ description = "List of derivations to put in Offlineimap's path.";
+ };
+
+ onCalendar = mkOption {
+ type = types.str;
+ default = "*:0/3"; # every 3 minutes
+ description = "How often is offlineimap started. Default is '*:0/3' meaning every 3 minutes. See systemd.time(7) for more information about the format.";
+ };
+
+ timeoutStartSec = mkOption {
+ type = types.str;
+ default = "120sec"; # Kill if still alive after 2 minutes
+ description = "How long waiting for offlineimap before killing it. Default is '120sec' meaning every 2 minutes. See systemd.time(7) for more information about the format.";
+ };
+ };
+ config = mkIf (cfg.enable || cfg.install) {
+ systemd.user.services.offlineimap = {
+ description = "Offlineimap: a software to dispose your mailbox(es) as a local Maildir(s)";
+ serviceConfig = {
+ Type = "oneshot";
+ ExecStart = "${cfg.package}/bin/offlineimap -u basic -o -1";
+ TimeoutStartSec = cfg.timeoutStartSec;
+ };
+ path = cfg.path;
+ };
+ environment.systemPackages = [ "${cfg.package}" ];
+ systemd.user.timers.offlineimap = {
+ description = "offlineimap timer";
+ timerConfig = {
+ Unit = "offlineimap.service";
+ OnCalendar = cfg.onCalendar;
+ # start immediately after computer is started:
+ Persistent = "true";
+ };
+ } // optionalAttrs cfg.enable { wantedBy = [ "default.target" ]; };
+ };
+}
diff --git a/nixos/modules/services/web-servers/caddy.nix b/nixos/modules/services/web-servers/caddy.nix
index 0d2612aaa66..b84431373bd 100644
--- a/nixos/modules/services/web-servers/caddy.nix
+++ b/nixos/modules/services/web-servers/caddy.nix
@@ -33,7 +33,7 @@ in
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
serviceConfig = {
- ExecStart = "${pkgs.caddy}/bin/caddy -conf=${configFile} -email=${cfg.email}";
+ ExecStart = "${pkgs.caddy.bin}/bin/caddy -conf=${configFile} -email=${cfg.email}";
Type = "simple";
User = "caddy";
Group = "caddy";
diff --git a/nixos/modules/services/x11/compton.nix b/nixos/modules/services/x11/compton.nix
new file mode 100644
index 00000000000..bda4eec0102
--- /dev/null
+++ b/nixos/modules/services/x11/compton.nix
@@ -0,0 +1,225 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+with builtins;
+
+let
+
+ cfg = config.services.compton;
+
+ configFile = pkgs.writeText "compton.conf"
+ (optionalString cfg.fade ''
+ # fading
+ fading = true;
+ fade-delta = ${toString cfg.fadeDelta};
+ fade-in-step = ${elemAt cfg.fadeSteps 0};
+ fade-out-step = ${elemAt cfg.fadeSteps 1};
+ fade-exclude = ${toJSON cfg.fadeExclude};
+ '' +
+ optionalString cfg.shadow ''
+
+ # shadows
+ shadow = true;
+ shadow-offset-x = ${toString (elemAt cfg.shadowOffsets 0)};
+ shadow-offset-y = ${toString (elemAt cfg.shadowOffsets 1)};
+ shadow-opacity = ${cfg.shadowOpacity};
+ shadow-exclude = ${toJSON cfg.shadowExclude};
+ '' + ''
+
+ # opacity
+ active-opacity = ${cfg.activeOpacity};
+ inactive-opacity = ${cfg.inactiveOpacity};
+ menu-opacity = ${cfg.menuOpacity};
+
+ # other options
+ backend = ${toJSON cfg.backend};
+ vsync = ${toJSON cfg.vSync};
+ refresh-rate = ${toString cfg.refreshRate};
+ '' + cfg.extraOptions);
+
+in {
+
+ options.services.compton = {
+ enable = mkOption {
+ type = types.bool;
+ default = false;
+ example = true;
+ description = ''
+ Whether of not to enable Compton as the X.org composite manager.
+ '';
+ };
+
+ fade = mkOption {
+ type = types.bool;
+ default = false;
+ example = true;
+ description = ''
+ Fade windows in and out.
+ '';
+ };
+
+ fadeDelta = mkOption {
+ type = types.int;
+ default = 10;
+ example = 5;
+ description = ''
+ Time between fade animation step (in ms).
+ '';
+ };
+
+ fadeSteps = mkOption {
+ type = types.listOf types.str;
+ default = [ "0.028" "0.03" ];
+ example = [ "0.04" "0.04" ];
+ description = ''
+ Opacity change between fade steps (in and out).
+ '';
+ };
+
+ fadeExclude = mkOption {
+ type = types.listOf types.str;
+ default = [];
+ example = [
+ "window_type *= 'menu'"
+ "name ~= 'Firefox$'"
+ "focused = 1"
+ ];
+ description = ''
+ List of condition of windows that should have no shadow.
+ See compton(1) man page for more examples.
+ '';
+ };
+
+ shadow = mkOption {
+ type = types.bool;
+ default = false;
+ example = true;
+ description = ''
+ Draw window shadows.
+ '';
+ };
+
+ shadowOffsets = mkOption {
+ type = types.listOf types.int;
+ default = [ (-15) (-15) ];
+ example = [ (-10) (-15) ];
+ description = ''
+ Left and right offset for shadows (in pixels).
+ '';
+ };
+
+ shadowOpacity = mkOption {
+ type = types.str;
+ default = "0.75";
+ example = "0.8";
+ description = ''
+ Window shadows opacity (number in range 0 - 1).
+ '';
+ };
+
+ shadowExclude = mkOption {
+ type = types.listOf types.str;
+ default = [];
+ example = [
+ "window_type *= 'menu'"
+ "name ~= 'Firefox$'"
+ "focused = 1"
+ ];
+ description = ''
+ List of condition of windows that should have no shadow.
+ See compton(1) man page for more examples.
+ '';
+ };
+
+ activeOpacity = mkOption {
+ type = types.str;
+ default = "1.0";
+ example = "0.8";
+ description = ''
+ Opacity of active windows.
+ '';
+ };
+
+ inactiveOpacity = mkOption {
+ type = types.str;
+ default = "1.0";
+ example = "0.8";
+ description = ''
+ Opacity of inactive windows.
+ '';
+ };
+
+ menuOpacity = mkOption {
+ type = types.str;
+ default = "1.0";
+ example = "0.8";
+ description = ''
+ Opacity of dropdown and popup menu.
+ '';
+ };
+
+ backend = mkOption {
+ type = types.str;
+ default = "glx";
+ description = ''
+ Backend to use: glx or xrender.
+ '';
+ };
+
+ vSync = mkOption {
+ type = types.str;
+ default = "none";
+ example = "opengl-swc";
+ description = ''
+ Enable vertical synchronization using the specified method.
+ See compton(1) man page available methods.
+ '';
+ };
+
+ refreshRate = mkOption {
+ type = types.int;
+ default = 0;
+ example = 60;
+ description = ''
+ Screen refresh rate (0 = automatically detect).
+ '';
+ };
+
+ package = mkOption {
+ type = types.package;
+ default = pkgs.compton;
+ example = literalExample "pkgs.compton";
+ description = ''
+ Compton derivation to use.
+ '';
+ };
+
+ extraOptions = mkOption {
+ type = types.str;
+ default = "";
+ example = ''
+ unredir-if-possible = true;
+ dbe = true;
+ '';
+ description = ''
+ Additional Compton configuration.
+ '';
+ };
+ };
+
+ config = mkIf cfg.enable {
+ systemd.user.services.compton = {
+ description = "Compton composite manager";
+ wantedBy = [ "default.target" ];
+ serviceConfig = {
+ ExecStart = "${cfg.package}/bin/compton --config ${configFile}";
+ RestartSec = 3;
+ Restart = "always";
+ };
+ environment.DISPLAY = ":0";
+ };
+
+ environment.systemPackages = [ cfg.package ];
+ };
+
+}
diff --git a/nixos/modules/services/x11/desktop-managers/gnome3.nix b/nixos/modules/services/x11/desktop-managers/gnome3.nix
index 27ec65c3d8e..44c87c0760c 100644
--- a/nixos/modules/services/x11/desktop-managers/gnome3.nix
+++ b/nixos/modules/services/x11/desktop-managers/gnome3.nix
@@ -121,7 +121,9 @@ in {
services.upower.enable = config.powerManagement.enable;
services.dbus.packages = mkIf config.services.printing.enable [ pkgs.system-config-printer ];
services.colord.enable = mkDefault true;
+ services.packagekit.enable = mkDefault true;
hardware.bluetooth.enable = mkDefault true;
+ services.xserver.libinput.enable = mkDefault true; # for controlling touchpad settings via gnome control center
fonts.fonts = [ pkgs.dejavu_fonts pkgs.cantarell_fonts ];
diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix
index 060dda1a70a..9f9bbe24623 100644
--- a/nixos/modules/services/x11/desktop-managers/kde5.nix
+++ b/nixos/modules/services/x11/desktop-managers/kde5.nix
@@ -50,13 +50,13 @@ in
security.setuidOwners = [
{
program = "kcheckpass";
- source = "${kde5.plasma-workspace}/lib/libexec/kcheckpass";
+ source = "${kde5.plasma-workspace.out}/lib/libexec/kcheckpass";
owner = "root";
setuid = true;
}
{
- program = "start_kdeinit_wrapper";
- source = "${kde5.plasma-workspace}/lib/libexec/kf5/start_kdeinit_wrapper";
+ program = "start_kdeinit";
+ source = "${kde5.kinit.out}/lib/libexec/kf5/start_kdeinit";
owner = "root";
setuid = true;
}
@@ -65,10 +65,50 @@ in
environment.systemPackages =
[
kde5.frameworkintegration
+ kde5.kactivities
+ kde5.kauth
+ kde5.kcmutils
+ kde5.kconfig
+ kde5.kconfigwidgets
+ kde5.kcoreaddons
+ kde5.kdbusaddons
+ kde5.kdeclarative
+ kde5.kded
+ kde5.kdesu
+ kde5.kdnssd
+ kde5.kemoticons
+ kde5.kfilemetadata
+ kde5.kglobalaccel
+ kde5.kguiaddons
+ kde5.kiconthemes
+ kde5.kidletime
+ kde5.kimageformats
kde5.kinit
+ kde5.kio
+ kde5.kjobwidgets
+ kde5.knewstuff
+ kde5.knotifications
+ kde5.knotifyconfig
+ kde5.kpackage
+ kde5.kparts
+ kde5.kpeople
+ kde5.krunner
+ kde5.kservice
+ kde5.ktextwidgets
+ kde5.kwallet
+ kde5.kwayland
+ kde5.kwidgetsaddons
+ kde5.kxmlgui
+ kde5.kxmlrpcclient
+ kde5.plasma-framework
+ kde5.solid
+ kde5.sonnet
+ kde5.threadweaver
kde5.breeze
+ kde5.kactivitymanagerd
kde5.kde-cli-tools
+ kde5.kdecoration
kde5.kdeplasma-addons
kde5.kgamma5
kde5.khelpcenter
@@ -76,12 +116,16 @@ in
kde5.kinfocenter
kde5.kmenuedit
kde5.kscreen
+ kde5.kscreenlocker
kde5.ksysguard
kde5.kwayland
kde5.kwin
kde5.kwrited
+ kde5.libkscreen
+ kde5.libksysguard
kde5.milou
kde5.oxygen
+ kde5.plasma-integration
kde5.polkit-kde-agent
kde5.systemsettings
diff --git a/nixos/modules/services/x11/display-managers/default.nix b/nixos/modules/services/x11/display-managers/default.nix
index 862ddc1d13f..83d679ebe01 100644
--- a/nixos/modules/services/x11/display-managers/default.nix
+++ b/nixos/modules/services/x11/display-managers/default.nix
@@ -34,7 +34,7 @@ let
${optionalString cfg.displayManager.logToJournal ''
if [ -z "$_DID_SYSTEMD_CAT" ]; then
- _DID_SYSTEMD_CAT=1 exec ${config.systemd.package}/bin/systemd-cat -t xsession -- "$0" "$1"
+ _DID_SYSTEMD_CAT=1 exec ${config.systemd.package}/bin/systemd-cat -t xsession -- "$0" "$@"
fi
''}
diff --git a/nixos/modules/services/x11/display-managers/lightdm.nix b/nixos/modules/services/x11/display-managers/lightdm.nix
index ac7db3d9adc..47786f0a432 100644
--- a/nixos/modules/services/x11/display-managers/lightdm.nix
+++ b/nixos/modules/services/x11/display-managers/lightdm.nix
@@ -4,7 +4,8 @@ with lib;
let
- dmcfg = config.services.xserver.displayManager;
+ xcfg = config.services.xserver;
+ dmcfg = xcfg.displayManager;
xEnv = config.systemd.services."display-manager".environment;
cfg = dmcfg.lightdm;
@@ -36,16 +37,31 @@ let
lightdmConf = writeText "lightdm.conf"
''
[LightDM]
- greeter-user = ${config.users.extraUsers.lightdm.name}
- greeters-directory = ${cfg.greeter.package}
+ ${optionalString cfg.greeter.enable ''
+ greeter-user = ${config.users.extraUsers.lightdm.name}
+ greeters-directory = ${cfg.greeter.package}
+ ''}
sessions-directory = ${dmcfg.session.desktops}
[Seat:*]
xserver-command = ${xserverWrapper}
session-wrapper = ${dmcfg.session.script}
- greeter-session = ${cfg.greeter.name}
+ ${optionalString cfg.greeter.enable ''
+ greeter-session = ${cfg.greeter.name}
+ ''}
+ ${optionalString cfg.autoLogin.enable ''
+ autologin-user = ${cfg.autoLogin.user}
+ autologin-user-timeout = ${toString cfg.autoLogin.timeout}
+ autologin-session = ${defaultSessionName}
+ ''}
${cfg.extraSeatDefaults}
'';
+
+ defaultSessionName =
+ let
+ dm = xcfg.desktopManager.default;
+ wm = xcfg.windowManager.default;
+ in dm + optionalString (wm != "none") (" + " + wm);
in
{
# Note: the order in which lightdm greeter modules are imported
@@ -68,6 +84,14 @@ in
};
greeter = {
+ enable = mkOption {
+ type = types.bool;
+ default = true;
+ description = ''
+ If set to false, run lightdm in greeterless mode. This only works if autologin
+ is enabled and autoLogin.timeout is zero.
+ '';
+ };
package = mkOption {
type = types.package;
description = ''
@@ -102,10 +126,67 @@ in
description = "Extra lines to append to SeatDefaults section.";
};
+ autoLogin = mkOption {
+ default = {};
+ description = ''
+ Configuration for automatic login.
+ '';
+
+ type = types.submodule {
+ options = {
+ enable = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Automatically log in as the specified .
+ '';
+ };
+
+ user = mkOption {
+ type = types.nullOr types.str;
+ default = null;
+ description = ''
+ User to be used for the automatic login.
+ '';
+ };
+
+ timeout = mkOption {
+ type = types.int;
+ default = 0;
+ description = ''
+ Show the greeter for this many seconds before automatic login occurs.
+ '';
+ };
+ };
+ };
+ };
+
};
};
config = mkIf cfg.enable {
+
+ assertions = [
+ { assertion = cfg.autoLogin.enable -> cfg.autoLogin.user != null;
+ message = ''
+ LightDM auto-login requires services.xserver.displayManager.lightdm.autoLogin.user to be set
+ '';
+ }
+ { assertion = cfg.autoLogin.enable -> elem defaultSessionName dmcfg.session.names;
+ message = ''
+ LightDM auto-login requires that services.xserver.desktopManager.default and
+ services.xserver.windowMananger.default are set to valid values. The current
+ default session: ${defaultSessionName} is not valid.
+ '';
+ }
+ { assertion = !cfg.greeter.enable -> (cfg.autoLogin.enable && cfg.autoLogin.timeout == 0);
+ message = ''
+ LightDM can only run without greeter if automatic login is enabled and the timeout for it
+ is set to zero.
+ '';
+ }
+ ];
+
services.xserver.displayManager.slim.enable = false;
services.xserver.displayManager.job = {
@@ -144,6 +225,17 @@ in
session optional ${pkgs.systemd}/lib/security/pam_systemd.so
'';
};
+ security.pam.services.lightdm-autologin.text = ''
+ auth requisite pam_nologin.so
+ auth required pam_succeed_if.so uid >= 1000 quiet
+ auth required pam_permit.so
+
+ account include lightdm
+
+ password include lightdm
+
+ session include lightdm
+ '';
users.extraUsers.lightdm = {
createHome = true;
diff --git a/nixos/modules/services/x11/display-managers/sddm.nix b/nixos/modules/services/x11/display-managers/sddm.nix
index 7a17a222bca..16d1e89e8d9 100644
--- a/nixos/modules/services/x11/display-managers/sddm.nix
+++ b/nixos/modules/services/x11/display-managers/sddm.nix
@@ -27,6 +27,7 @@ let
${cfg.stopScript}
'';
+
cfgFile = pkgs.writeText "sddm.conf" ''
[General]
HaltCommand=${pkgs.systemd}/bin/systemctl poweroff
@@ -154,7 +155,7 @@ in
type = types.bool;
default = false;
description = ''
- Automatically log in as the sepecified .
+ Automatically log in as .
'';
};
@@ -162,7 +163,7 @@ in
type = types.nullOr types.str;
default = null;
description = ''
- User to be used for the autologin.
+ User to be used for the automatic login.
'';
};
@@ -170,8 +171,8 @@ in
type = types.bool;
default = false;
description = ''
- If true automatic login will kick in again on session exit, otherwise it
- will work only the first time.
+ If true automatic login will kick in again on session exit (logout), otherwise it
+ will only log in automatically when the display-manager is started.
'';
};
};
diff --git a/nixos/modules/services/x11/hardware/libinput.nix b/nixos/modules/services/x11/hardware/libinput.nix
index 12cc1e7e646..14c7131e611 100644
--- a/nixos/modules/services/x11/hardware/libinput.nix
+++ b/nixos/modules/services/x11/hardware/libinput.nix
@@ -198,6 +198,8 @@ in {
environment.systemPackages = [ pkgs.xorg.xf86inputlibinput ];
+ services.udev.packages = [ pkgs.libinput ];
+
services.xserver.config =
''
# Automatically enable the libinput driver for all touchpads.
diff --git a/nixos/modules/services/x11/redshift.nix b/nixos/modules/services/x11/redshift.nix
index 8f1e317e52b..63ffa29c199 100644
--- a/nixos/modules/services/x11/redshift.nix
+++ b/nixos/modules/services/x11/redshift.nix
@@ -108,7 +108,7 @@ in {
RestartSec = 3;
Restart = "always";
};
- environment = { DISPLAY = ":0"; };
+ environment = { DISPLAY = ":${toString config.services.xserver.display}"; };
};
};
diff --git a/nixos/modules/services/x11/unclutter.nix b/nixos/modules/services/x11/unclutter.nix
index 3260fdb3d54..ebc195d108d 100644
--- a/nixos/modules/services/x11/unclutter.nix
+++ b/nixos/modules/services/x11/unclutter.nix
@@ -39,12 +39,6 @@ in {
default = 1;
};
- displayName = mkOption {
- description = "Name of the X11 display";
- type = types.str;
- default = ":0";
- };
-
excluded = mkOption {
description = "Names of windows where unclutter should not apply";
type = types.listOf types.str;
@@ -67,7 +61,7 @@ in {
serviceConfig.ExecStart = ''
${cfg.package}/bin/unclutter \
-idle ${toString cfg.timeout} \
- -display ${cfg.displayName} \
+ -display :${toString config.services.xserver.display} \
-jitter ${toString (cfg.threeshold - 1)} \
${optionalString cfg.keystroke "-keystroke"} \
${concatMapStrings (x: " -"+x) cfg.extraOptions} \
diff --git a/nixos/modules/services/x11/window-managers/default.nix b/nixos/modules/services/x11/window-managers/default.nix
index fce71bbda7e..94f1aa3add7 100644
--- a/nixos/modules/services/x11/window-managers/default.nix
+++ b/nixos/modules/services/x11/window-managers/default.nix
@@ -19,6 +19,7 @@ in
./jwm.nix
./metacity.nix
./openbox.nix
+ ./pekwm.nix
./notion.nix
./ratpoison.nix
./sawfish.nix
diff --git a/nixos/modules/services/x11/window-managers/pekwm.nix b/nixos/modules/services/x11/window-managers/pekwm.nix
new file mode 100644
index 00000000000..850335ce7dd
--- /dev/null
+++ b/nixos/modules/services/x11/window-managers/pekwm.nix
@@ -0,0 +1,25 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+ cfg = config.services.xserver.windowManager.pekwm;
+in
+{
+ ###### interface
+ options = {
+ services.xserver.windowManager.pekwm.enable = mkEnableOption "pekwm";
+ };
+
+ ###### implementation
+ config = mkIf cfg.enable {
+ services.xserver.windowManager.session = singleton {
+ name = "pekwm";
+ start = ''
+ ${pkgs.pekwm}/bin/pekwm &
+ waitPID=$!
+ '';
+ };
+ environment.systemPackages = [ pkgs.pekwm ];
+ };
+}
diff --git a/nixos/modules/system/boot/coredump.nix b/nixos/modules/system/boot/coredump.nix
index 793c7515c76..b27a35b6257 100644
--- a/nixos/modules/system/boot/coredump.nix
+++ b/nixos/modules/system/boot/coredump.nix
@@ -36,6 +36,8 @@ with lib;
config = mkMerge [
(mkIf config.systemd.coredump.enable {
+ systemd.additionalUpstreamSystemUnits = [ "systemd-coredump.socket" "systemd-coredump@.service" ];
+
environment.etc."systemd/coredump.conf".text =
''
[Coredump]
@@ -45,7 +47,7 @@ with lib;
# Have the kernel pass core dumps to systemd's coredump helper binary.
# From systemd's 50-coredump.conf file. See:
#
- boot.kernel.sysctl."kernel.core_pattern" = "|${pkgs.systemd}/lib/systemd/systemd-coredump %p %u %g %s %t %e";
+ boot.kernel.sysctl."kernel.core_pattern" = "|${pkgs.systemd}/lib/systemd/systemd-coredump %P %u %g %s %t %c %e";
})
(mkIf (!config.systemd.coredump.enable) {
diff --git a/nixos/modules/system/boot/initrd-ssh.nix b/nixos/modules/system/boot/initrd-ssh.nix
index 3e2805a8c34..d0a4ce51148 100644
--- a/nixos/modules/system/boot/initrd-ssh.nix
+++ b/nixos/modules/system/boot/initrd-ssh.nix
@@ -100,9 +100,6 @@ in
'';
boot.initrd.network.postCommands = ''
- mkdir /dev/pts
- mount -t devpts devpts /dev/pts
-
echo '${cfg.shell}' > /etc/shells
echo 'root:x:0:0:root:/root:${cfg.shell}' > /etc/passwd
echo 'passwd: files' > /etc/nsswitch.conf
diff --git a/nixos/modules/system/boot/plymouth.nix b/nixos/modules/system/boot/plymouth.nix
new file mode 100644
index 00000000000..60a587af8e9
--- /dev/null
+++ b/nixos/modules/system/boot/plymouth.nix
@@ -0,0 +1,139 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+
+ inherit (pkgs) plymouth;
+
+ cfg = config.boot.plymouth;
+
+ themesEnv = pkgs.buildEnv {
+ name = "plymouth-themes";
+ paths = [ plymouth ] ++ cfg.themePackages;
+ };
+
+ configFile = pkgs.writeText "plymouthd.conf" ''
+ [Daemon]
+ ShowDelay=0
+ Theme=${cfg.theme}
+ '';
+
+in
+
+{
+
+ options = {
+
+ boot.plymouth = {
+
+ enable = mkEnableOption "Plymouth boot splash screen";
+
+ themePackages = mkOption {
+ default = [];
+ type = types.listOf types.package;
+ description = ''
+ Extra theme packages for plymouth.
+ '';
+ };
+
+ theme = mkOption {
+ default = "fade-in";
+ type = types.str;
+ description = ''
+ Splash screen theme.
+ '';
+ };
+
+ logo = mkOption {
+ type = types.path;
+ default = pkgs.fetchurl {
+ url = "https://nixos.org/logo/nixos-hires.png";
+ sha256 = "1ivzgd7iz0i06y36p8m5w48fd8pjqwxhdaavc0pxs7w1g7mcy5si";
+ };
+ description = ''
+ Logo which is displayed on the splash screen.
+ '';
+ };
+
+ };
+
+ };
+
+ config = mkIf cfg.enable {
+
+ boot.kernelParams = [ "splash" ];
+
+ # To be discoverable by systemd.
+ environment.systemPackages = [ plymouth ];
+
+ environment.etc."plymouth/plymouthd.conf".source = configFile;
+ environment.etc."plymouth/plymouthd.defaults".source = "${plymouth}/share/plymouth/plymouth.defaults";
+ environment.etc."plymouth/logo.png".source = cfg.logo;
+ environment.etc."plymouth/themes".source = "${themesEnv}/share/plymouth/themes";
+ # XXX: Needed because we supply a different set of plugins in initrd.
+ environment.etc."plymouth/plugins".source = "${plymouth}/lib/plymouth";
+
+ systemd.packages = [ plymouth ];
+
+ systemd.services.plymouth-kexec.wantedBy = [ "kexec.target" ];
+ systemd.services.plymouth-halt.wantedBy = [ "halt.target" ];
+ systemd.services.plymouth-quit = {
+ wantedBy = [ "multi-user.target" ];
+ after = [ "display-manager.service" "multi-user.target" ];
+ };
+ systemd.services.plymouth-poweroff.wantedBy = [ "poweroff.target" ];
+ systemd.services.plymouth-reboot.wantedBy = [ "reboot.target" ];
+ systemd.services.plymouth-read-write.wantedBy = [ "sysinit.target" ];
+
+ boot.initrd.extraUtilsCommands = ''
+ copy_bin_and_libs ${pkgs.plymouth}/bin/plymouthd
+ copy_bin_and_libs ${pkgs.plymouth}/bin/plymouth
+
+ moduleName="$(sed -n 's,ModuleName *= *,,p' ${themesEnv}/share/plymouth/themes/${cfg.theme}/${cfg.theme}.plymouth)"
+
+ mkdir -p $out/lib/plymouth/renderers
+ cp ${plymouth}/lib/plymouth/{text,details,$moduleName}.so $out/lib/plymouth
+ cp ${plymouth}/lib/plymouth/renderers/{drm,frame-buffer}.so $out/lib/plymouth/renderers
+
+ mkdir -p $out/share/plymouth/themes
+ cp ${plymouth}/share/plymouth/plymouthd.defaults $out/share/plymouth
+ cp -r ${themesEnv}/share/plymouth/themes/{text,details,${cfg.theme}} $out/share/plymouth/themes
+ cp ${cfg.logo} $out/share/plymouth/logo.png
+ '';
+
+ boot.initrd.extraUtilsCommandsTest = ''
+ $out/bin/plymouthd --help >/dev/null
+ $out/bin/plymouth --help >/dev/null
+ '';
+
+ boot.initrd.extraUdevRulesCommands = ''
+ cp ${config.systemd.package}/lib/udev/rules.d/{70-uaccess,71-seat}.rules $out
+ sed -i '/loginctl/d' $out/71-seat.rules
+ '';
+
+ # We use `mkAfter` to ensure that LUKS password prompt would be shown earlier than the splash screen.
+ boot.initrd.preLVMCommands = mkAfter ''
+ mkdir -p /etc/plymouth
+ ln -s ${configFile} /etc/plymouth/plymouthd.conf
+ ln -s $extraUtils/share/plymouth/plymouthd.defaults /etc/plymouth/plymouthd.defaults
+ ln -s $extraUtils/share/plymouth/logo.png /etc/plymouth/logo.png
+ ln -s $extraUtils/share/plymouth/themes /etc/plymouth/themes
+ ln -s $extraUtils/lib/plymouth /etc/plymouth/plugins
+
+ plymouthd --mode=boot --pid-file=/run/plymouth/pid --attach-to-session
+ plymouth show-splash
+ '';
+
+ boot.initrd.postMountCommands = ''
+ plymouth update-root-fs --new-root-dir="$targetRoot"
+ '';
+
+ # `mkBefore` to ensure that any custom prompts would be visible.
+ boot.initrd.preFailCommands = mkBefore ''
+ plymouth quit --wait
+ '';
+
+ };
+
+}
diff --git a/nixos/modules/system/boot/stage-1-init.sh b/nixos/modules/system/boot/stage-1-init.sh
index 9bffcd31b9b..7705dcb2d12 100644
--- a/nixos/modules/system/boot/stage-1-init.sh
+++ b/nixos/modules/system/boot/stage-1-init.sh
@@ -3,6 +3,7 @@
targetRoot=/mnt-root
console=tty1
+extraUtils="@extraUtils@"
export LD_LIBRARY_PATH=@extraUtils@/lib
export PATH=@extraUtils@/bin
ln -s @extraUtils@/bin /bin
@@ -13,6 +14,8 @@ export LVM_SUPPRESS_FD_WARNINGS=true
fail() {
if [ -n "$panicOnFail" ]; then exit 1; fi
+ @preFailCommands@
+
# If starting stage 2 failed, allow the user to repair the problem
# in an interactive shell.
cat </dev/null) || "$zpool_cmd" import -d ${cfgZfs.devNodes} -N ${optionalString cfgZfs.forceImportAll "-f"} "${pool}"
'';
};
- in listToAttrs (map createImportService dataPools) // {
+
+ # This forces a sync of any ZFS pools prior to poweroff, even if they're set
+ # to sync=disabled.
+ createSyncService = pool:
+ nameValuePair "zfs-sync-${pool}" {
+ description = "Sync ZFS pool \"${pool}\"";
+ wantedBy = [ "shutdown.target" ];
+ serviceConfig = {
+ Type = "oneshot";
+ RemainAfterExit = true;
+ };
+ script = ''
+ ${zfsUserPkg}/sbin/zfs set nixos:shutdown-time="$(date)" "${pool}"
+ '';
+ };
+
+ in listToAttrs (map createImportService dataPools ++ map createSyncService allPools) // {
"zfs-mount" = { after = [ "systemd-modules-load.service" ]; };
"zfs-share" = { after = [ "systemd-modules-load.service" ]; };
"zed" = { after = [ "systemd-modules-load.service" ]; };
diff --git a/nixos/modules/tasks/kbd.nix b/nixos/modules/tasks/kbd.nix
index 02721bb3bea..8cdd34ef174 100644
--- a/nixos/modules/tasks/kbd.nix
+++ b/nixos/modules/tasks/kbd.nix
@@ -5,14 +5,33 @@ with lib;
let
makeColor = n: value: "COLOR_${toString n}=${value}";
+ makeColorCS =
+ let positions = [ "0" "1" "2" "3" "4" "5" "6" "7" "8" "9" "A" "B" "C" "D" "E" "F" ];
+ in n: value: "\033]P${elemAt position n}${value}";
colors = concatImapStringsSep "\n" makeColor config.i18n.consoleColors;
+ isUnicode = hasSuffix "UTF-8" (toUpper config.i18n.defaultLocale);
+
+ optimizedKeymap = pkgs.runCommand "keymap" {
+ nativeBuildInputs = [ pkgs.kbd ];
+ } ''
+ cd ${kbdEnv}/share/keymaps
+ loadkeys -b ${optionalString isUnicode "-u"} "${config.i18n.consoleKeyMap}" > $out
+ '';
+
+ # Sadly, systemd-vconsole-setup doesn't support binary keymaps.
vconsoleConf = pkgs.writeText "vconsole.conf" ''
KEYMAP=${config.i18n.consoleKeyMap}
FONT=${config.i18n.consoleFont}
${colors}
'';
+ kbdEnv = pkgs.buildEnv {
+ name = "kbd-env";
+ paths = [ pkgs.kbd ] ++ config.i18n.consolePackages;
+ pathsToLink = [ "/share/consolefonts" "/share/consoletrans" "/share/keymaps" "/share/unimaps" ];
+ };
+
setVconsole = !config.boot.isContainer;
in
@@ -38,38 +57,75 @@ in
'';
};
+ boot.earlyVconsoleSetup = mkOption {
+ default = false;
+ type = types.bool;
+ description = ''
+ Enable setting font and keymap as early as possible (in initrd).
+ '';
+ };
+
};
###### implementation
config = mkMerge [
- (mkIf (!setVconsole) {
+ (mkIf (!setVconsole || (setVconsole && config.boot.earlyVconsoleSetup)) {
systemd.services."systemd-vconsole-setup".enable = false;
})
- (mkIf setVconsole {
- environment.systemPackages = [ pkgs.kbd ];
+ (mkIf setVconsole (mkMerge [
+ { environment.systemPackages = [ pkgs.kbd ];
- # Let systemd-vconsole-setup.service do the work of setting up the
- # virtual consoles. FIXME: trigger a restart of
- # systemd-vconsole-setup.service if /etc/vconsole.conf changes.
- environment.etc = [ {
- target = "vconsole.conf";
- source = vconsoleConf;
- } ];
+ # Let systemd-vconsole-setup.service do the work of setting up the
+ # virtual consoles.
+ environment.etc."vconsole.conf".source = vconsoleConf;
+ # Provide kbd with additional packages.
+ environment.etc."kbd".source = "${kbdEnv}/share";
+ }
- # This is identical to the systemd-vconsole-setup.service unit
- # shipped with systemd, except that it uses /dev/tty1 instead of
- # /dev/tty0 to prevent putting the X server in non-raw mode, and
- # it has a restart trigger.
- systemd.services."systemd-vconsole-setup" =
- { wantedBy = [ "multi-user.target" ];
- before = [ "display-manager.service" ];
- after = [ "systemd-udev-settle.service" ];
- restartTriggers = [ vconsoleConf ];
- };
- })
+ (mkIf (!config.boot.earlyVconsoleSetup) {
+ # This is identical to the systemd-vconsole-setup.service unit
+ # shipped with systemd, except that it uses /dev/tty1 instead of
+ # /dev/tty0 to prevent putting the X server in non-raw mode, and
+ # it has a restart trigger.
+ systemd.services."systemd-vconsole-setup" =
+ { wantedBy = [ "sysinit.target" ];
+ before = [ "display-manager.service" ];
+ after = [ "systemd-udev-settle.service" ];
+ restartTriggers = [ vconsoleConf kbdEnv ];
+ };
+ })
+
+ (mkIf config.boot.earlyVconsoleSetup {
+ boot.initrd.extraUtilsCommands = ''
+ mkdir -p $out/share/consolefonts
+ ${if substring 0 1 config.i18n.consoleFont == "/" then ''
+ font="${config.i18n.consoleFont}"
+ '' else ''
+ font="$(echo ${kbdEnv}/share/consolefonts/${config.i18n.consoleFont}.*)"
+ ''}
+ if [[ $font == *.gz ]]; then
+ gzip -cd $font > $out/share/consolefonts/font.psf
+ else
+ cp -L $font $out/share/consolefonts/font.psf
+ fi
+ '';
+
+ boot.initrd.preLVMCommands = mkBefore ''
+ kbd_mode ${if isUnicode then "-u" else "-a"} -C /dev/console
+ printf "\033%%${if isUnicode then "G" else "@"}" >> /dev/console
+ loadkmap < ${optimizedKeymap}
+
+ setfont -C /dev/console $extraUtils/share/consolefonts/font.psf
+
+ ${concatImapStringsSep "\n" (n: color: ''
+ printf "${makeColorCS n color}" >> /dev/console
+ '') config.i18n.consoleColors}
+ '';
+ })
+ ]))
];
}
diff --git a/nixos/modules/virtualisation/amazon-image.nix b/nixos/modules/virtualisation/amazon-image.nix
index da5575f4b6d..ebf398fa266 100644
--- a/nixos/modules/virtualisation/amazon-image.nix
+++ b/nixos/modules/virtualisation/amazon-image.nix
@@ -20,8 +20,12 @@ let cfg = config.ec2; in
autoResize = true;
};
- boot.extraModulePackages = [ config.boot.kernelPackages.ixgbevf ];
- boot.initrd.kernelModules = [ "xen-blkfront" "xen-netfront" "ixgbevf" ];
+ boot.extraModulePackages =
+ [ config.boot.kernelPackages.ixgbevf
+ config.boot.kernelPackages.ena
+ ];
+ boot.initrd.kernelModules = [ "xen-blkfront" "xen-netfront" ];
+ boot.initrd.availableKernelModules = [ "ixgbevf" "ena" ];
boot.kernelParams = mkIf cfg.hvm [ "console=ttyS0" ];
# Prevent the nouveau kernel module from being loaded, as it
diff --git a/nixos/modules/virtualisation/containers.nix b/nixos/modules/virtualisation/containers.nix
index 13ecb8e25ed..b3870caece0 100644
--- a/nixos/modules/virtualisation/containers.nix
+++ b/nixos/modules/virtualisation/containers.nix
@@ -4,22 +4,6 @@ with lib;
let
- nixos-container = pkgs.substituteAll {
- name = "nixos-container";
- dir = "bin";
- isExecutable = true;
- src = ./nixos-container.pl;
- perl = "${pkgs.perl}/bin/perl -I${pkgs.perlPackages.FileSlurp}/lib/perl5/site_perl";
- su = "${pkgs.shadow.su}/bin/su";
- inherit (pkgs) utillinux;
-
- postInstall = ''
- t=$out/etc/bash_completion.d
- mkdir -p $t
- cp ${./nixos-container-completion.sh} $t/nixos-container
- '';
- };
-
# The container's init script, a small wrapper around the regular
# NixOS stage-2 init script.
containerInit = pkgs.writeScript "container-init"
@@ -410,7 +394,7 @@ in
ExecReload = pkgs.writeScript "reload-container"
''
#! ${pkgs.stdenv.shell} -e
- ${nixos-container}/bin/nixos-container run "$INSTANCE" -- \
+ ${pkgs.nixos-container}/bin/nixos-container run "$INSTANCE" -- \
bash --login -c "''${SYSTEM_PATH:-/nix/var/nix/profiles/system}/bin/switch-to-configuration test"
'';
@@ -498,6 +482,6 @@ in
networking.dhcpcd.denyInterfaces = [ "ve-*" ];
- environment.systemPackages = [ nixos-container ];
+ environment.systemPackages = [ pkgs.nixos-container ];
});
}
diff --git a/nixos/modules/virtualisation/ec2-amis.nix b/nixos/modules/virtualisation/ec2-amis.nix
index 5257aaf6202..bdf6ed4dcd2 100644
--- a/nixos/modules/virtualisation/ec2-amis.nix
+++ b/nixos/modules/virtualisation/ec2-amis.nix
@@ -90,40 +90,48 @@
"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-b6edf5d8";
- "16.03".ap-northeast-1.hvm-s3 = "ami-b1e3fbdf";
- "16.03".ap-northeast-1.pv-ebs = "ami-6190880f";
- "16.03".ap-northeast-1.pv-s3 = "ami-908d95fe";
- "16.03".ap-southeast-1.hvm-ebs = "ami-35b16656";
- "16.03".ap-southeast-1.hvm-s3 = "ami-41be6922";
- "16.03".ap-southeast-1.pv-ebs = "ami-4cb96e2f";
- "16.03".ap-southeast-1.pv-s3 = "ami-3bb96e58";
- "16.03".ap-southeast-2.hvm-ebs = "ami-debc91bd";
- "16.03".ap-southeast-2.hvm-s3 = "ami-55bc9136";
- "16.03".ap-southeast-2.pv-ebs = "ami-b38ba6d0";
- "16.03".ap-southeast-2.pv-s3 = "ami-9e8ba6fd";
- "16.03".eu-central-1.hvm-ebs = "ami-7c967413";
- "16.03".eu-central-1.hvm-s3 = "ami-b29072dd";
- "16.03".eu-central-1.pv-ebs = "ami-7a947615";
- "16.03".eu-central-1.pv-s3 = "ami-729b791d";
- "16.03".eu-west-1.hvm-ebs = "ami-ff27a98c";
- "16.03".eu-west-1.hvm-s3 = "ami-6c21af1f";
- "16.03".eu-west-1.pv-ebs = "ami-a33cb2d0";
- "16.03".eu-west-1.pv-s3 = "ami-ec38b69f";
- "16.03".sa-east-1.hvm-ebs = "ami-5bef6637";
- "16.03".sa-east-1.hvm-s3 = "ami-55f87139";
- "16.03".sa-east-1.pv-ebs = "ami-76e56c1a";
- "16.03".sa-east-1.pv-s3 = "ami-e1f8718d";
- "16.03".us-east-1.hvm-ebs = "ami-4bfd1926";
- "16.03".us-east-1.hvm-s3 = "ami-60c5210d";
- "16.03".us-east-1.pv-ebs = "ami-c0c92dad";
- "16.03".us-east-1.pv-s3 = "ami-f9d63294";
- "16.03".us-west-1.hvm-ebs = "ami-13aad473";
- "16.03".us-west-1.hvm-s3 = "ami-e1a8d681";
- "16.03".us-west-1.pv-ebs = "ami-c0a6d8a0";
- "16.03".us-west-1.pv-s3 = "ami-6aa9d70a";
- "16.03".us-west-2.hvm-ebs = "ami-265dad46";
- "16.03".us-west-2.hvm-s3 = "ami-cd40b0ad";
- "16.03".us-west-2.pv-ebs = "ami-7b4aba1b";
- "16.03".us-west-2.pv-s3 = "ami-0849b968";
+ "16.03".ap-northeast-1.hvm-ebs = "ami-40619d21";
+ "16.03".ap-northeast-1.hvm-s3 = "ami-ce629eaf";
+ "16.03".ap-northeast-1.pv-ebs = "ami-ef639f8e";
+ "16.03".ap-northeast-1.pv-s3 = "ami-a1609cc0";
+ "16.03".ap-northeast-2.hvm-ebs = "ami-deca00b0";
+ "16.03".ap-northeast-2.hvm-s3 = "ami-a3b77dcd";
+ "16.03".ap-northeast-2.pv-ebs = "ami-7bcb0115";
+ "16.03".ap-northeast-2.pv-s3 = "ami-a2b77dcc";
+ "16.03".ap-south-1.hvm-ebs = "ami-0dff9562";
+ "16.03".ap-south-1.hvm-s3 = "ami-13f69c7c";
+ "16.03".ap-south-1.pv-ebs = "ami-0ef39961";
+ "16.03".ap-south-1.pv-s3 = "ami-e0c8a28f";
+ "16.03".ap-southeast-1.hvm-ebs = "ami-5e964a3d";
+ "16.03".ap-southeast-1.hvm-s3 = "ami-4d964a2e";
+ "16.03".ap-southeast-1.pv-ebs = "ami-ec9b478f";
+ "16.03".ap-southeast-1.pv-s3 = "ami-999b47fa";
+ "16.03".ap-southeast-2.hvm-ebs = "ami-9f7359fc";
+ "16.03".ap-southeast-2.hvm-s3 = "ami-987359fb";
+ "16.03".ap-southeast-2.pv-ebs = "ami-a2705ac1";
+ "16.03".ap-southeast-2.pv-s3 = "ami-a3705ac0";
+ "16.03".eu-central-1.hvm-ebs = "ami-17a45178";
+ "16.03".eu-central-1.hvm-s3 = "ami-f9a55096";
+ "16.03".eu-central-1.pv-ebs = "ami-c8a550a7";
+ "16.03".eu-central-1.pv-s3 = "ami-6ea45101";
+ "16.03".eu-west-1.hvm-ebs = "ami-b5b3d5c6";
+ "16.03".eu-west-1.hvm-s3 = "ami-c986e0ba";
+ "16.03".eu-west-1.pv-ebs = "ami-b083e5c3";
+ "16.03".eu-west-1.pv-s3 = "ami-3c83e54f";
+ "16.03".sa-east-1.hvm-ebs = "ami-f6eb7f9a";
+ "16.03".sa-east-1.hvm-s3 = "ami-93e773ff";
+ "16.03".sa-east-1.pv-ebs = "ami-cbb82ca7";
+ "16.03".sa-east-1.pv-s3 = "ami-abb82cc7";
+ "16.03".us-east-1.hvm-ebs = "ami-c123a3d6";
+ "16.03".us-east-1.hvm-s3 = "ami-bc25a5ab";
+ "16.03".us-east-1.pv-ebs = "ami-bd25a5aa";
+ "16.03".us-east-1.pv-s3 = "ami-a325a5b4";
+ "16.03".us-west-1.hvm-ebs = "ami-748bcd14";
+ "16.03".us-west-1.hvm-s3 = "ami-a68dcbc6";
+ "16.03".us-west-1.pv-ebs = "ami-048acc64";
+ "16.03".us-west-1.pv-s3 = "ami-208dcb40";
+ "16.03".us-west-2.hvm-ebs = "ami-8263a0e2";
+ "16.03".us-west-2.hvm-s3 = "ami-925c9ff2";
+ "16.03".us-west-2.pv-ebs = "ami-5e61a23e";
+ "16.03".us-west-2.pv-s3 = "ami-734c8f13";
}
diff --git a/nixos/modules/virtualisation/qemu-vm.nix b/nixos/modules/virtualisation/qemu-vm.nix
index 9d9b725a805..b77b319f4a2 100644
--- a/nixos/modules/virtualisation/qemu-vm.nix
+++ b/nixos/modules/virtualisation/qemu-vm.nix
@@ -62,7 +62,9 @@ let
idx=2
extraDisks=""
${flip concatMapStrings cfg.emptyDiskImages (size: ''
- ${pkgs.qemu_kvm}/bin/qemu-img create -f qcow2 "empty$idx.qcow2" "${toString size}M"
+ if ! test -e "empty$idx.qcow2"; then
+ ${pkgs.qemu_kvm}/bin/qemu-img create -f qcow2 "empty$idx.qcow2" "${toString size}M"
+ fi
extraDisks="$extraDisks -drive index=$idx,file=$(pwd)/empty$idx.qcow2,if=${cfg.qemu.diskInterface},werror=report"
idx=$((idx + 1))
'')}
diff --git a/nixos/modules/virtualisation/virtualbox-guest.nix b/nixos/modules/virtualisation/virtualbox-guest.nix
index 59bac24a753..d253e9eab62 100644
--- a/nixos/modules/virtualisation/virtualbox-guest.nix
+++ b/nixos/modules/virtualisation/virtualbox-guest.nix
@@ -49,7 +49,7 @@ in
serviceConfig.ExecStart = "@${kernel.virtualboxGuestAdditions}/bin/VBoxService VBoxService --foreground";
};
- services.xserver.videoDrivers = mkOverride 50 [ "virtualbox" ];
+ services.xserver.videoDrivers = mkOverride 50 [ "virtualbox" "modesetting" ];
services.xserver.config =
''
diff --git a/nixos/release-combined.nix b/nixos/release-combined.nix
index f275291c716..9cc1ee762a8 100644
--- a/nixos/release-combined.nix
+++ b/nixos/release-combined.nix
@@ -68,6 +68,7 @@ in rec {
(all nixos.tests.boot.uefiCdrom)
(all nixos.tests.boot.uefiUsb)
(all nixos.tests.boot-stage1)
+ (all nixos.tests.ecryptfs)
(all nixos.tests.ipv6)
(all nixos.tests.i3wm)
(all nixos.tests.kde4)
diff --git a/nixos/release.nix b/nixos/release.nix
index c8547784bbc..184e340341f 100644
--- a/nixos/release.nix
+++ b/nixos/release.nix
@@ -220,6 +220,7 @@ in rec {
tests.docker = hydraJob (import tests/docker.nix { system = "x86_64-linux"; });
tests.dockerRegistry = hydraJob (import tests/docker-registry.nix { system = "x86_64-linux"; });
tests.dnscrypt-proxy = callTest tests/dnscrypt-proxy.nix { system = "x86_64-linux"; };
+ tests.ecryptfs = callTest tests/ecryptfs.nix {};
tests.etcd = hydraJob (import tests/etcd.nix { system = "x86_64-linux"; });
tests.ec2-nixops = hydraJob (import tests/ec2.nix { system = "x86_64-linux"; }).boot-ec2-nixops;
tests.ec2-config = hydraJob (import tests/ec2.nix { system = "x86_64-linux"; }).boot-ec2-config;
@@ -230,6 +231,7 @@ in rec {
tests.gnome3 = callTest tests/gnome3.nix {};
tests.gnome3-gdm = callTest tests/gnome3-gdm.nix {};
tests.grsecurity = callTest tests/grsecurity.nix {};
+ tests.hibernate = callTest tests/hibernate.nix {};
tests.i3wm = callTest tests/i3wm.nix {};
tests.installer = callSubTests tests/installer.nix {};
tests.influxdb = callTest tests/influxdb.nix {};
diff --git a/nixos/tests/ecryptfs.nix b/nixos/tests/ecryptfs.nix
new file mode 100644
index 00000000000..eceb25a0dea
--- /dev/null
+++ b/nixos/tests/ecryptfs.nix
@@ -0,0 +1,81 @@
+import ./make-test.nix ({ pkgs, ... }:
+{
+ name = "ecryptfs";
+
+ machine = { config, pkgs, ... }: {
+ imports = [ ./common/user-account.nix ];
+ boot.kernelModules = [ "ecryptfs" ];
+ security.pam.enableEcryptfs = true;
+ environment.systemPackages = with pkgs; [ keyutils ];
+ };
+
+ testScript = ''
+ $machine->waitForUnit("default.target");
+
+ # Set alice up with a password and a home
+ $machine->succeed("(echo foobar; echo foobar) | passwd alice");
+ $machine->succeed("chown -R alice.users ~alice");
+
+ # Migrate alice's home
+ my $out = $machine->succeed("echo foobar | ecryptfs-migrate-home -u alice");
+ $machine->log("ecryptfs-migrate-home said: $out");
+
+ # Log alice in (ecryptfs passwhrase is wrapped during first login)
+ $machine->sleep(2); # urgh: wait for username prompt
+ $machine->sendChars("alice\n");
+ $machine->sleep(1);
+ $machine->sendChars("foobar\n");
+ $machine->sleep(2);
+ $machine->sendChars("logout\n");
+ $machine->sleep(2);
+
+ # Why do I need to do this??
+ $machine->succeed("su alice -c ecryptfs-umount-private");
+ $machine->sleep(1);
+ $machine->fail("mount | grep ecryptfs"); # check that encrypted home is not mounted
+
+ # Show contents of the user keyring
+ my $out = $machine->succeed("su - alice -c 'keyctl list \@u'");
+ $machine->log("keyctl unlink said: " . $out);
+
+ # Log alice again
+ $machine->sendChars("alice\n");
+ $machine->sleep(1);
+ $machine->sendChars("foobar\n");
+ $machine->sleep(2);
+
+ # Create some files in encrypted home
+ $machine->succeed("su alice -c 'touch ~alice/a'");
+ $machine->succeed("su alice -c 'echo c > ~alice/b'");
+
+ # Logout
+ $machine->sendChars("logout\n");
+ $machine->sleep(2);
+
+ # Why do I need to do this??
+ $machine->succeed("su alice -c ecryptfs-umount-private");
+ $machine->sleep(1);
+
+ # Check that the filesystem is not accessible
+ $machine->fail("mount | grep ecryptfs");
+ $machine->succeed("su alice -c 'test \! -f ~alice/a'");
+ $machine->succeed("su alice -c 'test \! -f ~alice/b'");
+
+ # Log alice once more
+ $machine->sendChars("alice\n");
+ $machine->sleep(1);
+ $machine->sendChars("foobar\n");
+ $machine->sleep(2);
+
+ # Check that the files are there
+ $machine->sleep(1);
+ $machine->succeed("su alice -c 'test -f ~alice/a'");
+ $machine->succeed("su alice -c 'test -f ~alice/b'");
+ $machine->succeed(qq%test "\$(cat ~alice/b)" = "c"%);
+
+ # Catch https://github.com/NixOS/nixpkgs/issues/16766
+ $machine->succeed("su alice -c 'ls -lh ~alice/'");
+
+ $machine->sendChars("logout\n");
+ '';
+})
diff --git a/nixos/tests/hibernate.nix b/nixos/tests/hibernate.nix
new file mode 100644
index 00000000000..787929f8904
--- /dev/null
+++ b/nixos/tests/hibernate.nix
@@ -0,0 +1,42 @@
+# Test whether hibernation from partition works.
+
+import ./make-test.nix (pkgs: {
+ name = "hibernate";
+
+ nodes = {
+ machine = { config, lib, pkgs, ... }: with lib; {
+ virtualisation.emptyDiskImages = [ config.virtualisation.memorySize ];
+
+ systemd.services.backdoor.conflicts = [ "sleep.target" ];
+
+ swapDevices = mkOverride 0 [ { device = "/dev/vdb"; } ];
+
+ networking.firewall.allowedTCPPorts = [ 4444 ];
+
+ systemd.services.listener.serviceConfig.ExecStart = "${pkgs.netcat}/bin/nc -l -p 4444";
+ };
+
+ probe = { config, lib, pkgs, ...}: {
+ environment.systemPackages = [ pkgs.netcat ];
+ };
+ };
+
+ # 9P doesn't support reconnection to virtio transport after a hibernation.
+ # Therefore, machine just hangs on any Nix store access.
+ # To work around it we run a daemon which listens to a TCP connection and
+ # try to connect to it as a test.
+
+ testScript =
+ ''
+ $machine->waitForUnit("multi-user.target");
+ $machine->succeed("mkswap /dev/vdb");
+ $machine->succeed("swapon -a");
+ $machine->startJob("listener");
+ $machine->succeed("systemctl hibernate &");
+ $machine->waitForShutdown;
+ $machine->start;
+ $probe->waitForUnit("network.target");
+ $probe->waitUntilSucceeds("echo test | nc -c machine 4444");
+ '';
+
+})
diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix
index 4a30cc18b02..e71168a7366 100644
--- a/nixos/tests/installer.nix
+++ b/nixos/tests/installer.nix
@@ -210,6 +210,10 @@ let
pkgs.nixos-artwork
pkgs.perlPackages.XMLLibXML
pkgs.perlPackages.ListCompare
+
+ # add curl so that rather than seeing the test attempt to download
+ # curl's tarball, we see what it's trying to download
+ pkgs.curl
]
++ optional (bootLoader == "grub" && grubVersion == 1) pkgs.grub
++ optionals (bootLoader == "grub" && grubVersion == 2) [ pkgs.grub2 pkgs.grub2_efi ];
diff --git a/pkgs/applications/audio/eq10q/default.nix b/pkgs/applications/audio/eq10q/default.nix
index e2adf9e131c..0ff83a9023e 100644
--- a/pkgs/applications/audio/eq10q/default.nix
+++ b/pkgs/applications/audio/eq10q/default.nix
@@ -1,10 +1,10 @@
{ stdenv, fetchurl, cmake, fftw, gtkmm, libxcb, lv2, pkgconfig, xorg }:
stdenv.mkDerivation rec {
- name = "eq10q-2-${version}";
- version = "beta7.1";
+ name = "eq10q-${version}";
+ version = "2.0";
src = fetchurl {
url = "mirror://sourceforge/project/eq10q/${name}.tar.gz";
- sha256 = "1jmrcx4jlx8kgsy5n4jcxa6qkjqvx7d8l2p7dsmw4hj20s39lgyi";
+ sha256 = "08vlfly0qqrfqiwpn5g5php680icpk97pwnwjadmj5syhgvi0i3h";
};
buildInputs = [ cmake fftw gtkmm libxcb lv2 pkgconfig xorg.libpthreadstubs xorg.libXdmcp xorg.libxshmfence ];
diff --git a/pkgs/applications/audio/i-score/default.nix b/pkgs/applications/audio/i-score/default.nix
index 17fadfe8b1f..97e8f5f1429 100644
--- a/pkgs/applications/audio/i-score/default.nix
+++ b/pkgs/applications/audio/i-score/default.nix
@@ -3,7 +3,7 @@
cln,
cmake,
fetchgit,
- gcc5,
+ gcc,
ginac,
jamomacore,
kde5,
@@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
cln
cmake
ginac
- gcc5
+ gcc
jamomacore
kde5.kdnssd
libsndfile
diff --git a/pkgs/applications/audio/pd-plugins/puremapping/default.nix b/pkgs/applications/audio/pd-plugins/puremapping/default.nix
index 2e9a37a2f0d..4f285552576 100644
--- a/pkgs/applications/audio/pd-plugins/puremapping/default.nix
+++ b/pkgs/applications/audio/pd-plugins/puremapping/default.nix
@@ -1,12 +1,13 @@
{ stdenv, fetchurl, unzip, puredata }:
stdenv.mkDerivation rec {
- name = "puremapping-1.01";
+ name = "puremapping-${version}";
+ version = "20160130";
src = fetchurl {
- url = "http://www.chnry.net/ch/IMG/zip/puremapping-libdir-generic.zip";
+ url = "http://www.chnry.net/data/puremapping-${version}-generic.zip";
name = "puremapping";
- sha256 = "1ygzxsfj3rnzjkpmgi4wch810q8s5vm1gdam6a938hbbvamafgvc";
+ sha256 = "1h7qgqd8srrxw2y1rkdw5js4k6f5vc8x6nlm2mq9mq9vjck7n1j7";
};
buildInputs = [ unzip puredata ];
diff --git a/pkgs/applications/audio/pd-plugins/zexy/default.nix b/pkgs/applications/audio/pd-plugins/zexy/default.nix
index 68996e9e6e4..7cd244c9ea4 100644
--- a/pkgs/applications/audio/pd-plugins/zexy/default.nix
+++ b/pkgs/applications/audio/pd-plugins/zexy/default.nix
@@ -16,7 +16,6 @@ stdenv.mkDerivation rec {
for i in ${puredata}/include/pd/*; do
ln -s $i .
done
- patchShebangs
./bootstrap.sh
./configure --enable-lpt=no --prefix=$out
'';
diff --git a/pkgs/applications/audio/plugin-torture/default.nix b/pkgs/applications/audio/plugin-torture/default.nix
index cca4538422f..e4fb83439e0 100644
--- a/pkgs/applications/audio/plugin-torture/default.nix
+++ b/pkgs/applications/audio/plugin-torture/default.nix
@@ -1,13 +1,14 @@
-{ stdenv, fetchgit, boost, ladspaH, lilv, lv2, pkgconfig, serd, sord, sratom }:
+{ stdenv, fetchFromGitHub, boost, ladspaH, lilv, lv2, pkgconfig, serd, sord, sratom }:
stdenv.mkDerivation rec {
- name = "plugin-torture-git-${version}";
- version = "2013-10-03";
+ name = "plugin-torture-${version}";
+ version = "5";
- src = fetchgit {
- url = "https://github.com/cth103/plugin-torture";
- rev = "9ee06016982bdfbaa215cd0468cc6ada6367462a";
- sha256 = "0ynzfs3z95lbw4l1w276as2a37zxp0cw6pi3lbikr0qk0r7j5j10";
+ src = fetchFromGitHub {
+ owner = "cth103";
+ repo = "plugin-torture";
+ rev = "v${version}";
+ sha256 = "1mlgxjsyaz86wm4k32ll2w5nghjffnsdqlm6kjv02a4dpb2bfrih";
};
buildInputs = [ boost ladspaH lilv lv2 pkgconfig serd sord sratom ];
@@ -15,7 +16,7 @@ stdenv.mkDerivation rec {
installPhase = ''
mkdir -p $out/bin
cp plugin-torture $out/bin/
- cp README $out/bin/
+ cp find-safe-plugins $out/bin/
'';
meta = with stdenv.lib; {
diff --git a/pkgs/applications/audio/puredata/default.nix b/pkgs/applications/audio/puredata/default.nix
index 8fddcccd51c..daa017d1ccb 100644
--- a/pkgs/applications/audio/puredata/default.nix
+++ b/pkgs/applications/audio/puredata/default.nix
@@ -4,11 +4,11 @@
stdenv.mkDerivation rec {
name = "puredata-${version}";
- version = "0.45-4";
+ version = "0.47-1";
src = fetchurl {
- url = "mirror://sourceforge/pure-data/pd-${version}.src.tar.gz";
- sha256 = "1ls2ap5yi2zxvmr247621g4jx0hhfds4j5704a050bn2n3l0va2p";
+ url = "http://msp.ucsd.edu/Software/pd-${version}.src.tar.gz";
+ sha256 = "0k5s949kqd7yw97h3m8z81bjz32bis9m4ih8df1z0ymipnafca67";
};
patchPhase = ''
diff --git a/pkgs/applications/audio/sooperlooper/default.nix b/pkgs/applications/audio/sooperlooper/default.nix
index 372339474a5..a11f37a6d52 100644
--- a/pkgs/applications/audio/sooperlooper/default.nix
+++ b/pkgs/applications/audio/sooperlooper/default.nix
@@ -1,18 +1,21 @@
-{ stdenv, fetchurl, liblo, libxml2, libjack2, libsndfile, wxGTK, libsigcxx
-,libsamplerate, rubberband, pkgconfig, ncurses
+{ stdenv, fetchFromGitHub , liblo, libxml2, libjack2, libsndfile, wxGTK, libsigcxx
+ ,libsamplerate, rubberband, pkgconfig, autoconf, automake, libtool, gettext, ncurses, which
}:
stdenv.mkDerivation rec {
- name = "sooperlooper-${version}";
- version = "1.7.3";
- src = fetchurl {
- url = "http://essej.net/sooperlooper/${name}.tar.gz";
- sha256 = "0n2gdxw1fx8nxxnpzf4sj0kp6k6zi1yq59cbz6qqzcnsnpnvszbs";
+ name = "sooperlooper-git-${version}";
+ version = "19-07-2016";
+
+ src = fetchFromGitHub {
+ owner = "essej";
+ repo = "sooperlooper";
+ rev = "3bdfe184cd59b51c757b8048536abc1146fb0de4";
+ sha256 = "0qz25h4idv79m97ici2kzx72fwzks3lysyksk3p3rx72lsijhf3g";
};
buildInputs = [
- liblo libxml2 libjack2 libsndfile wxGTK libsigcxx
- libsamplerate rubberband pkgconfig ncurses
+ liblo libxml2 libjack2 libsndfile wxGTK libsigcxx
+ libsamplerate rubberband pkgconfig autoconf automake libtool gettext ncurses which
];
meta = {
diff --git a/pkgs/applications/audio/x42-plugins/default.nix b/pkgs/applications/audio/x42-plugins/default.nix
index 1090ee4a61e..f3a72050810 100644
--- a/pkgs/applications/audio/x42-plugins/default.nix
+++ b/pkgs/applications/audio/x42-plugins/default.nix
@@ -3,12 +3,12 @@
, lv2, mesa, gtk2, cairo, pango, fftwFloat, zita-convolver }:
stdenv.mkDerivation rec {
- version = "2015-07-02";
+ version = "20160619";
name = "x42-plugins-${version}";
src = fetchurl {
- url = "http://gareus.org/misc/x42-plugins/x42-plugins-20150702.tar.xz";
- sha256 = "1mq0grabzbl9xsd53v2qajhr8nngk0d4lx9n0n3nwy95y2gmy6sm";
+ url = "http://gareus.org/misc/x42-plugins/${name}.tar.xz";
+ sha256 = "1ald0c5xbfkdq6g5xwyy8wmbi636m3k3gqrq16kbh46g0kld1as9";
};
buildInputs = [ mesa_glu ftgl freefont_ttf libjack2 libltc libsndfile libsamplerate lv2 mesa gtk2 cairo pango fftwFloat pkgconfig zita-convolver];
diff --git a/pkgs/applications/editors/emacs-25/default.nix b/pkgs/applications/editors/emacs-25/default.nix
index e3e5f60dd00..a33cd570550 100644
--- a/pkgs/applications/editors/emacs-25/default.nix
+++ b/pkgs/applications/editors/emacs-25/default.nix
@@ -5,6 +5,7 @@
, autoconf, automake
, withX ? !stdenv.isDarwin
, withGTK3 ? false, gtk3 ? null
+, withXwidgets ? false, webkitgtk24x ? null, wrapGAppsHook ? null, glib_networking ? null
, withGTK2 ? true, gtk2
}:
@@ -14,6 +15,7 @@ assert withGTK2 -> withX || stdenv.isDarwin;
assert withGTK3 -> withX || stdenv.isDarwin;
assert withGTK2 -> !withGTK3 && gtk2 != null;
assert withGTK3 -> !withGTK2 && gtk3 != null;
+assert withXwidgets -> withGTK3 && webkitgtk24x != null;
let
toolkit =
@@ -49,17 +51,19 @@ stdenv.mkDerivation rec {
imagemagick gconf ]
++ stdenv.lib.optional (withX && withGTK2) gtk2
++ stdenv.lib.optional (withX && withGTK3) gtk3
- ++ stdenv.lib.optional (stdenv.isDarwin && withX) cairo;
+ ++ stdenv.lib.optional (stdenv.isDarwin && withX) cairo
+ ++ stdenv.lib.optionals withXwidgets [webkitgtk24x wrapGAppsHook glib_networking];
propagatedBuildInputs = stdenv.lib.optionals stdenv.isDarwin [ AppKit GSS ImageIO ];
configureFlags =
- if stdenv.isDarwin
+ (if stdenv.isDarwin
then [ "--with-ns" "--disable-ns-self-contained" ]
else if withX
then [ "--with-x-toolkit=${toolkit}" "--with-xft" ]
else [ "--with-x=no" "--with-xpm=no" "--with-jpeg=no" "--with-png=no"
- "--with-gif=no" "--with-tiff=no" ];
+ "--with-gif=no" "--with-tiff=no" ])
+ ++ stdenv.lib.optional withXwidgets "--with-xwidgets";
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString (stdenv.isDarwin && withX)
"-I${cairo.dev}/include/cairo";
diff --git a/pkgs/applications/editors/geany/default.nix b/pkgs/applications/editors/geany/default.nix
index b4f6baa9c64..cd93a4ed0e8 100644
--- a/pkgs/applications/editors/geany/default.nix
+++ b/pkgs/applications/editors/geany/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchurl, gtk2, which, pkgconfig, intltool, file }:
let
- version = "1.27";
+ version = "1.28";
in
stdenv.mkDerivation rec {
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "http://download.geany.org/${name}.tar.bz2";
- sha256 = "846ff699a5944c5c3c068ae0199d4c13946a668bfc6d03f8c79765667c20cadf";
+ sha256 = "0nha21rbdhl10vdpaq8d5v5fszvggl1xar555pvrnvm2y443ffpp";
};
buildInputs = [ gtk2 which pkgconfig intltool file ];
diff --git a/pkgs/applications/editors/geany/with-vte.nix b/pkgs/applications/editors/geany/with-vte.nix
index ffffed1b853..679125b5ec4 100644
--- a/pkgs/applications/editors/geany/with-vte.nix
+++ b/pkgs/applications/editors/geany/with-vte.nix
@@ -2,5 +2,7 @@
let name = builtins.replaceStrings ["geany-"] ["geany-with-vte-"] geany.name;
in
runCommand "${name}" { nativeBuildInputs = [ makeWrapper ]; } "
+ mkdir -p $out
+ ln -s ${geany}/share $out
makeWrapper ${geany}/bin/geany $out/bin/geany --prefix LD_LIBRARY_PATH : ${gnome.vte}/lib
"
diff --git a/pkgs/applications/editors/idea/default.nix b/pkgs/applications/editors/idea/default.nix
index 6ef4edb5362..bc6f7fffeb3 100644
--- a/pkgs/applications/editors/idea/default.nix
+++ b/pkgs/applications/editors/idea/default.nix
@@ -189,13 +189,13 @@ in
idea-community = buildIdea rec {
name = "idea-community-${version}";
- version = "2016.1.3";
- build = "IC-145.1617.8";
+ version = "2016.2";
+ build = "IC-162.1121";
description = "Integrated Development Environment (IDE) by Jetbrains, community edition";
license = stdenv.lib.licenses.asl20;
src = fetchurl {
url = "https://download.jetbrains.com/idea/ideaIC-${version}.tar.gz";
- sha256 = "0yd1jqz4arywyjsiakszrr48w2xqnik6vnl1a6l0ph2hssgkzkfi";
+ sha256 = "164x4l0q31zpc1jh3js1xx9y6afrzsshmnkx1mwhmq8qmvzc4w32";
};
wmClass = "jetbrains-idea-ce";
};
@@ -228,13 +228,13 @@ in
idea-ultimate = buildIdea rec {
name = "idea-ultimate-${version}";
- version = "2016.1.3";
- build = "IU-145.1617.8";
+ version = "2016.2";
+ build = "IU-162.1121";
description = "Integrated Development Environment (IDE) by Jetbrains, requires paid license";
license = stdenv.lib.licenses.unfree;
src = fetchurl {
url = "https://download.jetbrains.com/idea/ideaIU-${version}.tar.gz";
- sha256 = "1zzxwdnw2bbnl86kj7fjk5p8c99d0hdn1ki2alw5xm8wp4k0w7rv";
+ sha256 = "10hiqh6ccmai2cnc5p72vqjcz9kzmmcpn0hy5v514h4mq6vs4zk4";
};
wmClass = "jetbrains-idea";
};
diff --git a/pkgs/applications/editors/monodevelop/default.nix b/pkgs/applications/editors/monodevelop/default.nix
index 69d6a3b2789..cdf1daabea7 100644
--- a/pkgs/applications/editors/monodevelop/default.nix
+++ b/pkgs/applications/editors/monodevelop/default.nix
@@ -59,7 +59,7 @@ stdenv.mkDerivation rec {
2a3,5
> export MONO_GAC_PREFIX=${gnome-sharp}:${gtk-sharp}:\$MONO_GAC_PREFIX
> export PATH=${mono}/bin:\$PATH
- > export LD_LIBRARY_PATH=${glib}/lib:${gnome.libgnomeui}/lib:${gnome.gnome_vfs}/lib:${gnome-sharp}/lib:${gtk-sharp}/lib:${gtk-sharp.gtk}/lib:\$LD_LIBRARY_PATH
+ > export LD_LIBRARY_PATH=${stdenv.lib.makeLibraryPath [ glib gnome.libgnomeui gnome.gnome_vfs gnome-sharp gtk-sharp gtk-sharp.gtk ]}:\$LD_LIBRARY_PATH
>
EOF
done
diff --git a/pkgs/applications/editors/uemacs/default.nix b/pkgs/applications/editors/uemacs/default.nix
new file mode 100644
index 00000000000..551fa67d986
--- /dev/null
+++ b/pkgs/applications/editors/uemacs/default.nix
@@ -0,0 +1,38 @@
+{ stdenv, fetchgit, ncurses }:
+
+stdenv.mkDerivation rec {
+ name = "uemacs-${version}";
+ version = "2014-12-08";
+
+ src = fetchgit {
+ url = git://git.kernel.org/pub/scm/editors/uemacs/uemacs.git;
+ rev = "8841922689769960fa074fbb053cb8507f2f3ed9";
+ sha256 = "14yq7kpkax111cg6k7i3mnqk7sq7a65krq6qizzj7vvnm7bsj3sd";
+ };
+
+ postPatch = ''
+ substituteInPlace Makefile \
+ --replace "-lcurses" "-lncurses" \
+ --replace "CFLAGS=-O2" "CFLAGS+=" \
+ --replace "BINDIR=/usr/bin" "BINDIR=$out/bin" \
+ --replace "LIBDIR=/usr/lib" "LIBDIR=$out/share/uemacs"
+ substituteInPlace epath.h \
+ --replace "/usr/global/lib/" "$out/share/uemacs/" \
+ --replace "/usr/local/bin/" "$out/bin/" \
+ --replace "/usr/local/lib/" "$out/share/uemacs/" \
+ --replace "/usr/local/" "$out/bin/" \
+ --replace "/usr/lib/" "$out/share/uemacs/"
+ mkdir -p $out/bin $out/share/uemacs
+ '';
+
+ buildInputs = [ ncurses ];
+
+ meta = with stdenv.lib; {
+ homepage = https://git.kernel.org/cgit/editors/uemacs/uemacs.git;
+ description = "Torvalds Micro-emacs fork";
+ longDescription = ''
+ uEmacs/PK 4.0 is a full screen editor based on MicroEMACS 3.9e
+ '';
+ license = licenses.unfree;
+ };
+}
diff --git a/pkgs/applications/editors/vis/default.nix b/pkgs/applications/editors/vis/default.nix
index 8c7cf73f432..496f04142e1 100644
--- a/pkgs/applications/editors/vis/default.nix
+++ b/pkgs/applications/editors/vis/default.nix
@@ -1,12 +1,18 @@
-{ stdenv, fetchFromGitHub, unzip, pkgconfig, makeWrapper, ncurses, libtermkey, lpeg, lua }:
+{ stdenv, fetchFromGitHub, unzip, pkgconfig, makeWrapper
+, ncurses, libtermkey, lpeg, lua
+, acl ? null, libselinux ? null
+, version ? "2016-07-15"
+, rev ? "5c2cee9461ef1199f2e80ddcda699595b11fdf08"
+, sha256 ? "1jmsv72hq0c2f2rnpllvd70cmxbjwfhynzwaxx24f882zlggwsnd"
+}:
stdenv.mkDerivation rec {
name = "vis-nightly-${version}";
- version = "2016-04-15";
+ inherit version;
src = fetchFromGitHub {
- sha256 = "0a4gpwniy5r9dpfq51fxjxxnxavdjv8x76w9bbjnbnh8n63p3sj7";
- rev = "472c559a273d3c7b0f5ee92260c5544bc3d74576";
+ inherit sha256;
+ inherit rev;
repo = "vis";
owner = "martanne";
};
@@ -14,12 +20,14 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ makeWrapper ];
buildInputs = [
- unzip
- pkgconfig
- ncurses
- libtermkey
- lua
- lpeg
+ unzip pkgconfig
+ ncurses
+ libtermkey
+ lua
+ lpeg
+ ] ++ stdenv.lib.optional stdenv.isLinux [
+ acl
+ libselinux
];
LUA_CPATH="${lpeg}/lib/lua/${lua.luaversion}/?.so;";
@@ -33,11 +41,10 @@ stdenv.mkDerivation rec {
--prefix VIS_PATH : "$out/share/vis"
'';
- meta = {
+ meta = with stdenv.lib; {
description = "A vim like editor";
homepage = http://github.com/martanne/vis;
- license = stdenv.lib.licenses.isc;
- maintainers = [ stdenv.lib.maintainers.vrthra ];
+ license = licenses.isc;
+ maintainers = [ maintainers.vrthra ];
};
}
-
diff --git a/pkgs/applications/graphics/ImageMagick/default.nix b/pkgs/applications/graphics/ImageMagick/default.nix
index e73cc9024c6..793940a8878 100644
--- a/pkgs/applications/graphics/ImageMagick/default.nix
+++ b/pkgs/applications/graphics/ImageMagick/default.nix
@@ -11,8 +11,8 @@ let
else throw "ImageMagick is not supported on this platform.";
cfg = {
- version = "6.9.3-9";
- sha256 = "0q19jgn1iv7zqrw8ibxp4z57iihrc9kyb09k2wnspcacs6vrvinf";
+ version = "6.9.5-2";
+ sha256 = "09h3rpr1jnzd7ipy5d16r2gi0bwg4hk5khwzv4cyhv1xzs8pk7pj";
patches = [];
}
# Freeze version on mingw so we don't need to port the patch too often.
diff --git a/pkgs/applications/graphics/ImageMagick/imagetragick.patch b/pkgs/applications/graphics/ImageMagick/imagetragick.patch
index bdb152dd23a..1b2de5e7350 100644
--- a/pkgs/applications/graphics/ImageMagick/imagetragick.patch
+++ b/pkgs/applications/graphics/ImageMagick/imagetragick.patch
@@ -1,15 +1,8 @@
-diff --git a/config/policy.xml b/config/policy.xml
-index ca3b022..b058c05 100644
--- a/config/policy.xml
+++ b/config/policy.xml
-@@ -58,4 +58,10 @@
-
-
-
-+
-+
-+
-+
-+
-+
-
+67a68,72
+>
+>
+>
+>
+>
diff --git a/pkgs/applications/graphics/darktable/default.nix b/pkgs/applications/graphics/darktable/default.nix
index 52a123a7fb9..609d88cea3a 100644
--- a/pkgs/applications/graphics/darktable/default.nix
+++ b/pkgs/applications/graphics/darktable/default.nix
@@ -3,7 +3,7 @@
, libgnome_keyring, gtk3, ilmbase, intltool, lcms, lcms2
, lensfun, libXau, libXdmcp, libexif, libglade, libgphoto2, libjpeg
, libpng, libpthreadstubs, librsvg, libtiff, libxcb
-, openexr, pixman, pkgconfig, sqlite, bash, libxslt, openjpeg
+, openexr, osm-gps-map, pixman, pkgconfig, sqlite, bash, libxslt, openjpeg
, mesa, lua, pugixml, colord, colord-gtk, libxshmfence, libxkbcommon
, epoxy, at_spi2_core, libwebp, libsecret, wrapGAppsHook, gnome3
}:
@@ -27,6 +27,7 @@ stdenv.mkDerivation rec {
libsoup graphicsmagick SDL json_glib openjpeg mesa lua pugixml
colord colord-gtk libxshmfence libxkbcommon epoxy at_spi2_core
libwebp libsecret wrapGAppsHook gnome3.adwaita-icon-theme
+ osm-gps-map
];
cmakeFlags = [
diff --git a/pkgs/applications/graphics/feh/default.nix b/pkgs/applications/graphics/feh/default.nix
index 2d7b8874246..a20a1be77f8 100644
--- a/pkgs/applications/graphics/feh/default.nix
+++ b/pkgs/applications/graphics/feh/default.nix
@@ -2,11 +2,11 @@
, libXinerama, curl, libexif, perlPackages }:
stdenv.mkDerivation rec {
- name = "feh-2.15.4";
+ name = "feh-2.16.1";
src = fetchurl {
url = "http://feh.finalrewind.org/${name}.tar.bz2";
- sha256 = "b8a9c29f37b1349228b19866f712b677e2a150837bc46be8c5d6348dd4850758";
+ sha256 = "1cxnc8dxyl7s4qnkvdjaqx7gdvc6brxpq0qbg91mljg47fd2hmbf";
};
outputs = [ "out" "doc" ];
diff --git a/pkgs/applications/graphics/gimp/2.8.nix b/pkgs/applications/graphics/gimp/2.8.nix
index 5943cb9cdac..27d7376fe52 100644
--- a/pkgs/applications/graphics/gimp/2.8.nix
+++ b/pkgs/applications/graphics/gimp/2.8.nix
@@ -5,7 +5,7 @@
stdenv.mkDerivation rec {
name = "gimp-${version}";
- version = "2.8.16";
+ version = "2.8.18";
# This declarations for `gimp-with-plugins` wrapper,
# (used for determining $out/lib/gimp/${majorVersion}/ paths)
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "http://download.gimp.org/pub/gimp/v2.8/${name}.tar.bz2";
- sha256 = "1dsgazia9hmab8cw3iis7s69dvqyfj5wga7ds7w2q5mms1xqbqwm";
+ sha256 = "0halh6sl3d2j9gahyabj6h6r3yyldcy7sfb4qrfazpkqqr3j5p9r";
};
buildInputs =
diff --git a/pkgs/applications/graphics/pencil/default.nix b/pkgs/applications/graphics/pencil/default.nix
index 80774fba5ff..7d9b77e9661 100644
--- a/pkgs/applications/graphics/pencil/default.nix
+++ b/pkgs/applications/graphics/pencil/default.nix
@@ -32,5 +32,8 @@ stdenv.mkDerivation rec {
license = licenses.gpl2; # Commercial license is also available
maintainers = with maintainers; [ bjornfor prikhi ];
platforms = platforms.linux;
+ # See https://github.com/prikhi/pencil/issues/840
+ # ("Error: Platform version '47.0' is not compatible with minVersion >= 36.0 maxVersion <= 46.*")
+ broken = true;
};
}
diff --git a/pkgs/applications/graphics/shotwell/default.nix b/pkgs/applications/graphics/shotwell/default.nix
index 513b1a49198..e52eb045ffb 100644
--- a/pkgs/applications/graphics/shotwell/default.nix
+++ b/pkgs/applications/graphics/shotwell/default.nix
@@ -1,17 +1,19 @@
{ fetchurl, stdenv, m4, glibc, gtk3, libexif, libgphoto2, libsoup, libxml2, vala, sqlite
-, webkitgtk24x, pkgconfig, gnome3, gst_all_1, which, udev, libgudev, libraw, glib, json_glib
+, webkitgtk, pkgconfig, gnome3, gst_all_1, which, udev, libgudev, libraw, glib, json_glib
, gettext, desktop_file_utils, lcms2, gdk_pixbuf, librsvg, makeWrapper
, gnome_doc_utils, hicolor_icon_theme }:
# for dependencies see http://www.yorba.org/projects/shotwell/install/
stdenv.mkDerivation rec {
- version = "0.22.0";
+ version = "${major}.${minor}";
+ major = "0.23";
+ minor = "2";
name = "shotwell-${version}";
src = fetchurl {
- url = "mirror://gnome/sources/shotwell/0.22/${name}.tar.xz";
- sha256 = "0cgqaaikrb10plhf6zxbgqy32zqpiwyi9dpx3g8yr261q72r5c81";
+ url = "mirror://gnome/sources/shotwell/${major}/${name}.tar.xz";
+ sha256 = "d52caae4e3204f2f78e2eb828d955848ea6fef5c91d3ac6e9eb0b185c0490b39";
};
NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/glib-2.0 -I${glib.out}/lib/glib-2.0/include";
@@ -35,7 +37,7 @@ stdenv.mkDerivation rec {
'';
- buildInputs = [ m4 glibc gtk3 libexif libgphoto2 libsoup libxml2 vala sqlite webkitgtk24x
+ buildInputs = [ m4 glibc gtk3 libexif libgphoto2 libsoup libxml2 vala sqlite webkitgtk
pkgconfig gst_all_1.gstreamer gst_all_1.gst-plugins-base gnome3.libgee
which udev libgudev gnome3.gexiv2 hicolor_icon_theme
libraw json_glib gettext desktop_file_utils glib lcms2 gdk_pixbuf librsvg
diff --git a/pkgs/applications/misc/emem/default.nix b/pkgs/applications/misc/emem/default.nix
index b2855e5a287..b1ba9831c63 100644
--- a/pkgs/applications/misc/emem/default.nix
+++ b/pkgs/applications/misc/emem/default.nix
@@ -2,14 +2,14 @@
stdenv.mkDerivation rec {
pname = "emem";
- version = "0.2.15";
+ version = "0.2.18";
name = "${pname}-${version}";
inherit jdk;
src = fetchurl {
url = "https://github.com/ebzzry/${pname}/releases/download/v${version}/${pname}.jar";
- sha256 = "0jj990syd9biq2awnjydi4x3p4hivigc522ds59hdf5wg4y2gg6c";
+ sha256 = "090sd1q345xlari267j4k27lglnch26dkwa9pibb1q70hdygv0w8";
};
buildInputs = [ ];
diff --git a/pkgs/applications/misc/gpg-mdp/default.nix b/pkgs/applications/misc/gpg-mdp/default.nix
new file mode 100644
index 00000000000..fe58fa92d07
--- /dev/null
+++ b/pkgs/applications/misc/gpg-mdp/default.nix
@@ -0,0 +1,34 @@
+{ fetchurl, stdenv, ncurses, gnupg }:
+
+let version = "0.7.4";
+in stdenv.mkDerivation {
+ # mdp renamed to gpg-mdp because there is a mdp package already.
+ name = "gpg-mdp-${version}";
+ meta = {
+ homepage = https://tamentis.com/projects/mdp/;
+ license = [stdenv.lib.licenses.isc];
+ description = "Manage your passwords with GnuPG and a text editor";
+ };
+ src = fetchurl {
+ url = "https://tamentis.com/projects/mdp/files/mdp-${version}.tar.gz";
+ sha256 = "04mdnx4ccpxf9m2myy9nvpl9ma4jgzmv9bkrzv2b9affzss3r34g";
+ };
+ buildInputs = [ ncurses ];
+ prePatch = ''
+ substituteInPlace ./configure \
+ --replace "alias echo=/bin/echo" ""
+
+ substituteInPlace ./src/config.c \
+ --replace "/usr/bin/gpg" "${gnupg}/bin/gpg2" \
+ --replace "/usr/bin/vi" "vi"
+
+ substituteInPlace ./mdp.1 \
+ --replace "/usr/bin/gpg" "${gnupg}/bin/gpg2"
+ '';
+ # we add symlinks to the binary and man page with the name 'gpg-mdp', in case
+ # the completely unrelated program also named 'mdp' is already installed.
+ postFixup = ''
+ ln -s $out/bin/mdp $out/bin/gpg-mdp
+ ln -s $out/share/man/man1/mdp.1.gz $out/share/man/man1/gpg-mdp.1.gz
+ '';
+}
diff --git a/pkgs/applications/misc/hugo/default.nix b/pkgs/applications/misc/hugo/default.nix
new file mode 100644
index 00000000000..c183f70a289
--- /dev/null
+++ b/pkgs/applications/misc/hugo/default.nix
@@ -0,0 +1,18 @@
+{ stdenv, buildGoPackage, fetchFromGitHub }:
+
+buildGoPackage rec {
+ name = "hugo-${version}";
+ version = "v0.16";
+ rev = "8b54843a0db694facbaf368af4e777d0ae5fb992";
+
+ goPackagePath = "github.com/spf13/hugo";
+
+ src = fetchFromGitHub {
+ inherit rev;
+ owner = "spf13";
+ repo = "hugo";
+ sha256 = "135mrdi8i56z9m2sihjrdfab6lrczbfgavwvfrngvi1zxnx7scmv";
+ };
+
+ goDeps = ./deps.json;
+}
diff --git a/pkgs/applications/misc/hugo/deps.json b/pkgs/applications/misc/hugo/deps.json
new file mode 100644
index 00000000000..47f67d4269c
--- /dev/null
+++ b/pkgs/applications/misc/hugo/deps.json
@@ -0,0 +1,44 @@
+[
+ {
+ "include": "../../libs.json",
+ "packages": [
+ "gopkg.in/yaml.v2",
+ "github.com/hashicorp/hcl",
+ "github.com/pkg/sftp",
+ "golang.org/x/sys",
+ "github.com/hashicorp/go-multierror",
+ "golang.org/x/crypto",
+ "github.com/pkg/errors",
+ "github.com/kr/fs",
+ "github.com/kyokomi/emoji",
+ "github.com/bep/inflect",
+ "github.com/BurntSushi/toml",
+ "github.com/PuerkitoBio/purell",
+ "github.com/PuerkitoBio/urlesc",
+ "github.com/dchest/cssmin",
+ "github.com/eknkc/amber",
+ "github.com/gorilla/websocket",
+ "github.com/kardianos/osext",
+ "github.com/miekg/mmark",
+ "github.com/mitchellh/mapstructure",
+ "github.com/russross/blackfriday",
+ "github.com/shurcooL/sanitized_anchor_name",
+ "github.com/spf13/afero",
+ "github.com/spf13/cast",
+ "github.com/spf13/jwalterweatherman",
+ "github.com/spf13/cobra",
+ "github.com/cpuguy83/go-md2man",
+ "github.com/inconshreveable/mousetrap",
+ "github.com/spf13/pflag",
+ "github.com/spf13/fsync",
+ "github.com/spf13/viper",
+ "github.com/kr/pretty",
+ "github.com/kr/text",
+ "github.com/magiconair/properties",
+ "golang.org/x/text",
+ "github.com/yosssi/ace",
+ "github.com/spf13/nitro",
+ "github.com/fsnotify/fsnotify"
+ ]
+ }
+]
diff --git a/pkgs/applications/misc/lenmus/default.nix b/pkgs/applications/misc/lenmus/default.nix
new file mode 100644
index 00000000000..976563d1185
--- /dev/null
+++ b/pkgs/applications/misc/lenmus/default.nix
@@ -0,0 +1,50 @@
+{ stdenv, pkgconfig, fetchFromGitHub
+, cmake, boost
+, portmidi, sqlite
+, freetype, libpng, pngpp, zlib
+, wxGTK30, wxsqlite3
+}:
+
+stdenv.mkDerivation rec {
+ name = "lenmus-${version}";
+ version = "5.4.1";
+
+ src = fetchFromGitHub {
+ owner = "lenmus";
+ repo = "lenmus";
+ rev = "Release_${version}";
+ sha256 = "03xar8x38x20cns2gnv34jp0hw0k16sa62kkfhka9iiiw90wfyrp";
+ };
+
+ postPatch = ''
+ substituteInPlace CMakeLists.txt \
+ --replace "DESTINATION \"/usr/share" "DESTINATION \"$out/share"
+ '';
+
+ cmakeFlags = [
+ "-DCMAKE_INSALL_PREFIX=$out"
+ ];
+
+ enableParallelBuilding = true;
+
+ buildInputs = [
+ pkgconfig
+ cmake boost
+ portmidi sqlite
+ freetype libpng pngpp zlib
+ wxGTK30 wxsqlite3
+ ];
+
+ meta = with stdenv.lib; {
+ description = "LenMus Phonascus is a program for learning music";
+ longDescription = ''
+ LenMus Phonascus is a free open source program (GPL v3) for learning music.
+ It allows you to focus on specific skills and exercises, on both theory and aural training.
+ The different activities can be customized to meet your needs
+ '';
+ homepage = "http://www.lenmus.org/";
+ license = licenses.gpl3Plus;
+ maintainers = with maintainers; [ ramkromberg ];
+ platforms = with platforms; linux;
+ };
+}
diff --git a/pkgs/applications/misc/lighthouse/Makefile.patch b/pkgs/applications/misc/lighthouse/Makefile.patch
new file mode 100644
index 00000000000..0207299cc2c
--- /dev/null
+++ b/pkgs/applications/misc/lighthouse/Makefile.patch
@@ -0,0 +1,31 @@
+# Description: Fix lighthouse Makefile
+Index: Makefile
+===================================================================
+--- ./Makefile 1970-01-01 02:00:01.000000000 +0200
++++ ./Makefile 1970-01-01 02:00:01.000000000 +0200
+@@ -19,21 +19,10 @@
+ endif
+
+ # Library specific
+-HAS_GDK := $(shell pkg-config --exists gdk-2.0 echo $?)
+-ifdef $(HAS_GDK)
+- CFLAGS+=`pkg-config --cflags gdk-2.0`
+- LDFLAGS+=`pkg-config --libs gdk-2.0`
+-else
+- CFLAGS+=-DNO_GDK
+-endif
+-HAS_PANGO := $(shell pkg-config --exists pango echo $?)
+-ifdef $(HAS_PANGO)
+- CFLAGS+=`pkg-config --cflags pango`
+- LDFLAGS+=`pkg-config --libs pango`
+-else
+- CFLAGS+=-DNO_PANGO
+-endif
+-
++CFLAGS+=$(shell pkg-config --cflags gdk-2.0)
++LDFLAGS+=$(shell pkg-config --libs gdk-2.0)
++CFLAGS+=$(shell pkg-config --cflags pango)
++LDFLAGS+=$(shell pkg-config --libs pango)
+
+ all: lighthouse
+
diff --git a/pkgs/applications/misc/lighthouse/default.nix b/pkgs/applications/misc/lighthouse/default.nix
new file mode 100644
index 00000000000..8400c01665e
--- /dev/null
+++ b/pkgs/applications/misc/lighthouse/default.nix
@@ -0,0 +1,49 @@
+{ stdenv, fetchFromGitHub, pkgconfig
+, libX11, libxcb, cairo, gtk, pango, python27, python3
+}:
+
+stdenv.mkDerivation rec {
+ name = "lighthouse-${date}";
+ date = "2016-01-26";
+
+ src = fetchFromGitHub {
+ owner = "emgram769";
+ repo = "lighthouse";
+ rev = "bf11f111572475e855b0329202a14c9e128c7e57";
+ sha256 = "1ppika61vg4sc9mczbkjqy2mhgxqg57xrnsmmq0h2lyvj0yhg3qn";
+ };
+
+ buildInputs = [
+ pkgconfig libX11 libxcb cairo gtk pango python27 python3
+ ];
+
+ patches = [ ./Makefile.patch ];
+
+ lighthouseInstaller = ''
+ #!${stdenv.shell}
+ cp -r $out/share/lighthouse/.config/lighthouse \$HOME/.config
+ chmod -R +w \$HOME/.config/lighthouse
+ '';
+
+ installPhase = ''
+ mkdir -p $out/bin
+ cp lighthouse $out/bin
+ chmod +x config/lighthouse/cmd*
+ chmod +x config/lighthouse/google.py
+ patchShebangs config/lighthouse/
+ patchShebangs config/lighthouse/scripts/
+ mkdir -p $out/share/lighthouse/.config
+ cp -r config/lighthouse $out/share/lighthouse/.config
+ echo "${lighthouseInstaller}" > $out/bin/lighthouse-install
+ chmod +x $out/bin/lighthouse-install
+ '';
+
+ meta = with stdenv.lib; {
+ description = "A simple flexible popup dialog to run on X";
+ homepage = https://github.com/emgram769/lighthouse;
+ license = licenses.mit;
+ maintainers = with maintainers; [ ramkromberg ];
+ platforms = platforms.linux;
+ };
+
+}
diff --git a/pkgs/applications/misc/mediainfo-gui/default.nix b/pkgs/applications/misc/mediainfo-gui/default.nix
index 73dc8433b88..2fe806649c2 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.86";
+ version = "0.7.87";
name = "mediainfo-gui-${version}";
src = fetchurl {
url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz";
- sha256 = "15w6m75bk6rsxxdrdibi330ch1x0cw131gynbhmhbsppsg0v5vb5";
+ sha256 = "1ws4hyfcw289hax0bq8y3bbw5y321xmh0va1x4zv5rjwfzcd51pv";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
diff --git a/pkgs/applications/misc/mediainfo/default.nix b/pkgs/applications/misc/mediainfo/default.nix
index c512f6a249e..77c1badbf40 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.86";
+ version = "0.7.87";
name = "mediainfo-${version}";
src = fetchurl {
url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz";
- sha256 = "15w6m75bk6rsxxdrdibi330ch1x0cw131gynbhmhbsppsg0v5vb5";
+ sha256 = "1ws4hyfcw289hax0bq8y3bbw5y321xmh0va1x4zv5rjwfzcd51pv";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
diff --git a/pkgs/applications/misc/multimon-ng/default.nix b/pkgs/applications/misc/multimon-ng/default.nix
index a9f0cb2511a..8e39c258333 100644
--- a/pkgs/applications/misc/multimon-ng/default.nix
+++ b/pkgs/applications/misc/multimon-ng/default.nix
@@ -16,6 +16,8 @@ stdenv.mkDerivation {
nativeBuildInputs = [ qmake4Hook ];
+ qmakeFlags = [ "multimon-ng.pro" ];
+
installPhase = ''
mkdir -p $out/bin
cp multimon-ng $out/bin
diff --git a/pkgs/applications/misc/procmail/default.nix b/pkgs/applications/misc/procmail/default.nix
index f4980cb2c6b..0bdc771e2bd 100644
--- a/pkgs/applications/misc/procmail/default.nix
+++ b/pkgs/applications/misc/procmail/default.nix
@@ -3,26 +3,26 @@
stdenv.mkDerivation {
name = "procmail-3.22";
- buildInputs = [ stdenv.cc.libc ];
+ patches = [ ./CVE-2014-3618.patch ];
# getline is defined differently in glibc now. So rename it.
- installPhase = "
- mkdir -p \$out/bin
- sed -e \"s%^RM.*$%RM=`type -f rm | awk '{print $3;}'` -f%\" -i Makefile
- sed -e \"s%^BASENAME.*%\BASENAME=$out%\" -i Makefile
- sed -e \"s%^LIBS=.*%LIBS=-lm%\" -i Makefile
- sed -e \"s%getline%thisgetline%g\" -i src/*.c src/*.h
- make DESTDIR=\$out install
- ";
-
- phases = "unpackPhase patchPhase installPhase";
-
- patches = [ ./CVE-2014-3618.patch ];
+ postPatch = ''
+ sed -e "s%^RM.*$%#%" -i Makefile
+ sed -e "s%^BASENAME.*%\BASENAME=$out%" -i Makefile
+ sed -e "s%^LIBS=.*%LIBS=-lm%" -i Makefile
+ sed -e "s%getline%thisgetline%g" -i src/*.c src/*.h
+ '';
src = fetchurl {
url = ftp://ftp.fu-berlin.de/pub/unix/mail/procmail/procmail-3.22.tar.gz;
sha256 = "05z1c803n5cppkcq99vkyd5myff904lf9sdgynfqngfk9nrpaz08";
};
- meta.homepage = "http://www.procmail.org/";
+ meta = with stdenv.lib; {
+ description = "Mail processing and filtering utility";
+ homepage = http://www.procmail.org/;
+ license = licenses.gpl2;
+ platforms = platforms.unix;
+ maintainers = with maintainers; [ gebner ];
+ };
}
diff --git a/pkgs/applications/misc/rxvt_unicode-plugins/urxvt-font-size/default.nix b/pkgs/applications/misc/rxvt_unicode-plugins/urxvt-font-size/default.nix
index eafa0d6d18b..bca87b12b9f 100644
--- a/pkgs/applications/misc/rxvt_unicode-plugins/urxvt-font-size/default.nix
+++ b/pkgs/applications/misc/rxvt_unicode-plugins/urxvt-font-size/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, xrdb }:
+{ stdenv, fetchFromGitHub, xrdb, xlsfonts }:
stdenv.mkDerivation {
name = "urxvt-font-size-2015-05-22";
@@ -13,7 +13,8 @@ stdenv.mkDerivation {
installPhase = ''
substituteInPlace font-size \
- --replace "xrdb -merge" "${xrdb}/bin/xrdb -merge"
+ --replace "xrdb -merge" "${xrdb}/bin/xrdb -merge" \
+ --replace "xlsfonts" "${xlsfonts}/bin/xlsfonts"
mkdir -p $out/lib/urxvt/perl
cp font-size $out/lib/urxvt/perl
diff --git a/pkgs/applications/misc/slic3r/default.nix b/pkgs/applications/misc/slic3r/default.nix
index 6d7ec762e77..64bcb0e1921 100644
--- a/pkgs/applications/misc/slic3r/default.nix
+++ b/pkgs/applications/misc/slic3r/default.nix
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
EncodeLocale MathClipper ExtUtilsXSpp threads
MathConvexHullMonotoneChain MathGeometryVoronoi MathPlanePath Moo
IOStringy ClassXSAccessor Wx GrowlGNTP NetDBus ImportInto XMLSAX
- ExtUtilsMakeMaker OpenGL WxGLCanvas ModuleBuild
+ ExtUtilsMakeMaker OpenGL WxGLCanvas ModuleBuild LWP
];
desktopItem = makeDesktopItem {
diff --git a/pkgs/applications/misc/vifm/default.nix b/pkgs/applications/misc/vifm/default.nix
index e5f3011e6ba..2e8f747e724 100644
--- a/pkgs/applications/misc/vifm/default.nix
+++ b/pkgs/applications/misc/vifm/default.nix
@@ -6,11 +6,11 @@
stdenv.mkDerivation rec {
name = "vifm-${version}";
- version = "0.8.1";
+ version = "0.8.2";
src = fetchurl {
url = "mirror://sourceforge/project/vifm/vifm/${name}.tar.bz2";
- sha256 = "0yf3xc4czdrcbvmhq7d4xkck5phrmxwybmnv1zdb56qg56baq64r";
+ sha256 = "07r15kq7kjl3a41sd11ncpsii866xxps4f90zh3lv8jqcrv6silb";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/applications/misc/wikicurses/default.nix b/pkgs/applications/misc/wikicurses/default.nix
new file mode 100644
index 00000000000..54e56785071
--- /dev/null
+++ b/pkgs/applications/misc/wikicurses/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchurl, pythonPackages }:
+
+pythonPackages.buildPythonApplication rec {
+ version = "1.3";
+ name = "wikicurses-${version}";
+
+ src = fetchurl {
+ url = "http://github.com/ids1024/wikicurses/archive/v${version}.tar.gz";
+ sha256 = "1yxgafk1sczg1xi2p6nhrvr3hchp7ydw98n48lp3qzwnryn1kxv8";
+ };
+
+ propagatedBuildInputs = with pythonPackages; [ urwid beautifulsoup4 lxml ];
+
+ meta = {
+ description = "A simple curses interface for MediaWiki sites such as Wikipedia";
+ homepage = "https://github.com/ids1024/wikicurses/";
+ license = stdenv.lib.licenses.mit;
+ platforms = stdenv.lib.platforms.unix;
+ };
+
+}
+
diff --git a/pkgs/applications/misc/zscroll/default.nix b/pkgs/applications/misc/zscroll/default.nix
index 4d9197c8fd4..92d173807f9 100644
--- a/pkgs/applications/misc/zscroll/default.nix
+++ b/pkgs/applications/misc/zscroll/default.nix
@@ -16,7 +16,7 @@ python3Packages.buildPythonApplication {
doCheck = false;
- propogatedBuildInputs = [ python3 ];
+ propagatedBuildInputs = [ python3 ];
meta = with stdenv.lib; {
description = "A text scroller for use with panels and shells";
diff --git a/pkgs/applications/networking/bittorrentsync/2.0.x.nix b/pkgs/applications/networking/bittorrentsync/2.0.x.nix
index f8ba6a5c5f6..d2db3eec26e 100644
--- a/pkgs/applications/networking/bittorrentsync/2.0.x.nix
+++ b/pkgs/applications/networking/bittorrentsync/2.0.x.nix
@@ -1,9 +1,9 @@
{ stdenv, fetchurl, ... } @ args:
import ./generic.nix (args // {
- version = "2.3.7";
+ version = "2.3.8";
sha256s = {
- "x86_64-linux" = "1hnw6bv60xrnc733gm1ilywc0y93k2g6bmwgnww9qk7ivbvi6pd1";
- "i686-linux" = "0hj8nbq6mava15m1hxaqq371fqk0whdx5iqsbnppyci0jjnr4qv1";
+ "x86_64-linux" = "02n5s561cz3mprg682mrbmh3qai42dh64jgi05rqy9s6wgbn66ly";
+ "i686-linux" = "118qrnxc7gvm30rsz0xfx6dlxmrr0dk5ajrvszhy06ww7xvqhzji";
};
})
diff --git a/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix
index ad26ab6e950..19f130bcdc6 100644
--- a/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix
+++ b/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix
@@ -4,189 +4,189 @@
# ruby generate_sources.rb 46.0.1 > sources.nix
{
- version = "48.0b1";
+ version = "48.0b7";
sources = [
- { locale = "ach"; arch = "linux-i686"; sha512 = "464c3b19ab7bda118d962da2699dd40482e1742887bcd9d72b8b7d211c7ab085aaf4c31fdea3c4e195af9030276118431ed7c2e6a917b354c5bf9f55cc8111a9"; }
- { locale = "ach"; arch = "linux-x86_64"; sha512 = "d9f9844fb06637ca7449bc00c54c02abf8660c42207c0671fffd53e2415df7b0fc3df782c4a2ccde807b4c2e477b0cf3a74c36acb7cce3f75e4ce267a3575e5c"; }
- { locale = "af"; arch = "linux-i686"; sha512 = "77bca1f05627ed9ace120eee7a7cd24fc354e9bf23a7709e38879241ad87c5d39a8cfcf2aed12881b6f9d6d611c334a864c20c9dee877952990c47c631c6a61b"; }
- { locale = "af"; arch = "linux-x86_64"; sha512 = "bf4d5353a46778d93627c232c404c768e643420b17d490c932848d126846e4ca3a185df671dcf72b1c1d3fe75606c212e6b0dadd2169b52c4fe73f5088e87b94"; }
- { locale = "an"; arch = "linux-i686"; sha512 = "2882258205866c93a4b808b7397ff62efd629b74b5233154190ce72ddd0be5d1eb8153d686d921ddb72049dfae0f11c3eb46128413e578c0f9f6323636a0e378"; }
- { locale = "an"; arch = "linux-x86_64"; sha512 = "543b1d66dc37e1843f370ff071adb050af16e5777bc0042c2d25579a7d99b5b1d176ea099a0b3afc19f270ad5f191fec65e544634e2bbc2223ccc6afcb1869e0"; }
- { locale = "ar"; arch = "linux-i686"; sha512 = "855fc1c71b50ba5b8354ee7ce2ea59664b40b77d007d99ea6b658873de729e22ca9018e475a669992b2e2bea9388fe0966e06f1e2b0d334df4ffbff2be147949"; }
- { locale = "ar"; arch = "linux-x86_64"; sha512 = "8ff272dd30cc66460a617dd80678b68917067b87d63d6b307f6d60e61deda092f46bca9e890d08b69a0738f4c204cd2c5896201b362df68aa9abbe7dd0fcc96d"; }
- { locale = "as"; arch = "linux-i686"; sha512 = "607039866932e6ec0692c534aa2e4ddcb3725d81f2908e7e905edafdbafb3221161f5ae4a5b6eb2ba065e9bd66e1f63c008015b17040033ed90ffa0576b1d08b"; }
- { locale = "as"; arch = "linux-x86_64"; sha512 = "59f3c28bcbc50a9ffe780025e03edafbbf82a213f28ba8e0f62a04a0e052038c24e1a5928ad4a730455bd358fc3cd0f1188e785dd13f79b377d86e5c55360735"; }
- { locale = "ast"; arch = "linux-i686"; sha512 = "c9767d9b73ec2dd411e16b1fab503e97b7960c315533ca529c4898dd10a6e0f809104588ac33f440e1026d026d114ec080cfc312b1902601958656607cdd4ad1"; }
- { locale = "ast"; arch = "linux-x86_64"; sha512 = "f4c7ab66af5e7fca460999b3d68793f8099b177809e70f682fcd7b0a50a3d5ad2a1c15bc5df5a63c37437fce9d70e08e963119755626c357bce6eb17bfb229ee"; }
- { locale = "az"; arch = "linux-i686"; sha512 = "58bb0eb057caf6af113debeb8d9d7eeb3b2fbd2c52c9dac04c527a67da45b3a4ebac4debfea1704639cdf20ec116876e140f4b55ea5f2b90f3afb9db6b2641b6"; }
- { locale = "az"; arch = "linux-x86_64"; sha512 = "a82fdc532e4d9fee9ffab9ab8aa58074c4ed174c131d56b4ed48b1ebce1f8950371fa7c7e174c4f35150b752cdeccc2a553b416e94fb3eec22c0c4467c0b1f20"; }
- { locale = "be"; arch = "linux-i686"; sha512 = "55a96ff3fe9e54ec09a828f740899118504848c82b9c842ed27b9c1e1179f8efcbb2fae5e25f01dd1440f9d2ad896e37056fe8240979cf2c60f536870590cac3"; }
- { locale = "be"; arch = "linux-x86_64"; sha512 = "6fe1b00f8a03160a5131a52aba5b31401bf18913eb5b6018d1dccb0456ee09154c76220bb94b1ee20bf5b8e63535a888abf895af570e9a668395b497bbdf90b1"; }
- { locale = "bg"; arch = "linux-i686"; sha512 = "e21d3a2234b533b9d5904be3c1ee4f489bfdea747ff2b45828c40712f70d631ca824375c7a232989741bfceb8a7eb1ca341a4709285056cea2cf3689326a9c35"; }
- { locale = "bg"; arch = "linux-x86_64"; sha512 = "160600a553d452c30d533e4d9a4ccc4c4d0cbbadf7875856f9be0fc81dbb7a686aa79f47ae8ea1c1e3746d150db31c7ce0dc18f1d271a47abb6d9bc35f478bf0"; }
- { locale = "bn-BD"; arch = "linux-i686"; sha512 = "6a4267ce4e0d474779f16a7bb31fb873c0d2ba4af993428330bef8c93a24c1f9121b68d50956beb3df549fccf233fa2ce851c69950bf93cf6cdf34debae0cfce"; }
- { locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "31100d78f0b2fcca2643c822f930ffcf01da9ad3c026d8e05e88b659afddb9d55a000dfe043a87d6e4008d40fced109c134a3bb2c8183a1044d462fdc050989d"; }
- { locale = "bn-IN"; arch = "linux-i686"; sha512 = "cb0efc8151949b33c23cb9d4fe41168830e215d4361963ec9399e43c97aa4504b4539a202f2c43283e63ea0a4afbdffb9bbfa1340a256483c3b848ef24660734"; }
- { locale = "bn-IN"; arch = "linux-x86_64"; sha512 = "37e8311e0126da80740b9f97b4b69eb2285716b309e1986daaec5becf88ee5624343ca3b208fa84eb63477f47234c8d5958e394bf750da32e02d777ee94437f1"; }
- { locale = "br"; arch = "linux-i686"; sha512 = "be6cb0e7b1ceb0be27a7203620b19341c16061ce0d4632f9ce135b2559db2ca31adac2e40ef95f98db903fd151a1b5d411232361631272f2d6200dbcc45464be"; }
- { locale = "br"; arch = "linux-x86_64"; sha512 = "aa71bd069902a921b2a61ebbcbb604972104ba5f4274788da261e1e527dc7ce10c6a9aa0652773f0d0499d53c2916dd1e2d862b900fb87d678a9bcb401948cba"; }
- { locale = "bs"; arch = "linux-i686"; sha512 = "5282780a9f35577498b95ded38f86423d043429a0fb4b9ded956716381a3343ebe653508e8929bd8ac7475a2fa0d6c4c67e84482cae0d40a681338eba09f4c96"; }
- { locale = "bs"; arch = "linux-x86_64"; sha512 = "1056be9971338d821025a5d272321ea4b1704f3103c02014cde711516e9da5303dbc5753f0c2c1cf236096a53b3b067261b628f17d6d45e6c713f5b5cdee69b1"; }
- { locale = "ca"; arch = "linux-i686"; sha512 = "15c98207cb051466bc89dc15fb2dc1da95490306030fb318f3e3bb184d23590df7213e183af2e5178969099a4edf9752e5872a9d4a091958d7a9ab6087ff6bdf"; }
- { locale = "ca"; arch = "linux-x86_64"; sha512 = "f7fc94c6c358dff1336938ff2d28c4fb9b0d391c22acefa7e286004978570e18cc1fd1a41a101a8bee27cbec1d750e04ba43cb409886f2b72e8e16a9aed6c835"; }
- { locale = "cak"; arch = "linux-i686"; sha512 = "96da63ceb6d4382abd8d1e343fdc4b72ead5e5ed2e3d451e768c6b092186287dcbaf239c389d29bc23e5641495a3f2a05512377300f45402428647ab77550b17"; }
- { locale = "cak"; arch = "linux-x86_64"; sha512 = "8584d4d82c79a56657a01a9cff211fa99e0fbcf0a42103a6cd9688713e7c11b77f35535fe31ed7e48855e055897b2c5fd84c2b1796c313401d8f01ed889ac7cf"; }
- { locale = "cs"; arch = "linux-i686"; sha512 = "2dff956f8df85bd007b68eeb8b809ddf7d99a6185f6946d2f4fd371f17e4dbf46bf2aad1799b6a1c84bd983935fa2ade5acd3b062f3eee48f7a160f37f3e8e6e"; }
- { locale = "cs"; arch = "linux-x86_64"; sha512 = "725a2e1272722cdce125b5dea7e61525a43ddda6a45cb003f397ec8d1c9334f11adcd7fb6dd2c901de1cd9a0d07eae54304e5f95ecc6c529c80070b9d6af1b47"; }
- { locale = "cy"; arch = "linux-i686"; sha512 = "5eeacbc1cd803687235927a91923895930e135a39de62574c79499fe56accb5278da3efc4d151f0f93ec482ad44099481960dd6e3102afa94cce3c30db67b133"; }
- { locale = "cy"; arch = "linux-x86_64"; sha512 = "49fc8136b3900b96fcea850a9549812b1cf1e9b1058cf99ee7e2e135cf49827e46ef4361badcc4efbd5dd09600d5269e68392f8df03c2e039d6b3d04b244aa71"; }
- { locale = "da"; arch = "linux-i686"; sha512 = "f806a36960cbec3624be8ebf6e7f8116635c7fff63ca890a886bd16fe73ec8a311d1e8b3c34ca680425d4634c91f8b96b0617cd175eef69e701d7c72e8917872"; }
- { locale = "da"; arch = "linux-x86_64"; sha512 = "22a274b9a5a1e670369009f2e48a4b7d2f63f18baf435d001506dd590b59115d43619fa824e2156b468b17739aea420621148ca47cd46bc3ace31bc5be4533f8"; }
- { locale = "de"; arch = "linux-i686"; sha512 = "6d64a77f420d1f87b7dac151eec75d4d42ec1f904b882b970d88b0e20a38ed5ebf8cbb2180abbdb8fb00dd60621e538fecaf77e09c4aee51f71a38a14f81b9b8"; }
- { locale = "de"; arch = "linux-x86_64"; sha512 = "897918d57691fb1a3f93273da48c128cf8a91e9bc5dd12d0ce2b4a085ff4df01db3ee28a378f36b7e7944c23f71df8a6dbf3481ec207cf85b73f3bac95bde054"; }
- { locale = "dsb"; arch = "linux-i686"; sha512 = "d5fa1438b71fcd3507175619090840cf983de9efb003f537eb28b9dba66f1cb3518e1410c4918187eb25766634464aaa796ebe0020f8fc110361008751e1c359"; }
- { locale = "dsb"; arch = "linux-x86_64"; sha512 = "30cb3759bd1f6ba91dfa847703326a57901782ebf397adaa1a403afe894f9b8cdeba80fc910f50037bae003e61956845f605b0e62c364c1c415b12a5abb87080"; }
- { locale = "el"; arch = "linux-i686"; sha512 = "991dfd0870e38ee4a8887a61ce87a4c5af1c21206442a0602197caafae0be2c3c5aa4c7b25fd92fd9968bdf25c780ac342dd0203c3df8d729034ba20a459d120"; }
- { locale = "el"; arch = "linux-x86_64"; sha512 = "d62b4f1eb5feeb30e4d2d7b8cb7391f374a209d14b70cdd77acb56106b6df36f54c67a3c5fa1ab4286fd7c46b5d0a42efc52d140b8e5cbe08b17c6d7bd14b498"; }
- { locale = "en-GB"; arch = "linux-i686"; sha512 = "2cddfb3d4472bfda882a3e3a054d5826a596bfd6b9b4399d7f45c6ad9f157599206f5e149f6c4fb35845ae291320520bf7a76c891713f1951c6e9a9450e92d23"; }
- { locale = "en-GB"; arch = "linux-x86_64"; sha512 = "d6bda8496f96448b9b046822547167c9c631dbf35c8bba07226634fc9aa1058009200d10e4e586fe059ab1e7b558d6cfa2c0040a33220d46dba5ca742bfe6f5c"; }
- { locale = "en-US"; arch = "linux-i686"; sha512 = "a9025b8d66c9294ede71ed37b7df256476cc640f7b7ce74cc4998c0b4b5741b5f869c486f1eaf4793fb4b2f347ba069f859e1c5318fa8df18c52377c83f8a09d"; }
- { locale = "en-US"; arch = "linux-x86_64"; sha512 = "a551550037fe762d6d06a4f046ff4e2f37cd2607aace13df5ba2e28d643ddcef01210367555fb2fc66c6fe45d83f0306f61f4139001d1059ea5e913fbd43cd69"; }
- { locale = "en-ZA"; arch = "linux-i686"; sha512 = "3e4721593a69bc289c7299b64e91af0ff121d59ded0167bfdd6692dc6d7a0ce0b0a7e8e89a591cee9fb90dc8b9eac26c5d978e4443b1d3462a0f4030ec8c5a50"; }
- { locale = "en-ZA"; arch = "linux-x86_64"; sha512 = "76e069c8938cc133576c934e4049fd4d8920d8a823122f1961d4ab69802e9e52e920873fc1406dbab01edebd0cc576ccb12df0ebbf5487ddd49c339111bf7101"; }
- { locale = "eo"; arch = "linux-i686"; sha512 = "ff071fd2545a8dfe0fbb1b1dae57d3fc4b0743698e54746da1f774b568b2b9ad9b0e14e2cd27f56031e1d159a05ae7d54060509532a7503b3dcc7fffa442a514"; }
- { locale = "eo"; arch = "linux-x86_64"; sha512 = "7705efee2c65de30a0efc6ea0c372061f47c4266ab7faeb6feb01bfde4324ac92ed99a9eab81d8c4e2e6972245953a200c4331b26845eb7a2f9e048fb3023840"; }
- { locale = "es-AR"; arch = "linux-i686"; sha512 = "3c08ab10d76650fd11ecd9616af1d4646fabdc55b63c7625940630f8aa25427482a3ff04052b91e6aceac708ca187552f7c87343d08c01cc1b4940e341e1672b"; }
- { locale = "es-AR"; arch = "linux-x86_64"; sha512 = "b6d700123f612b93b952f05bfa92dceed8878ad20a84214f8daab63e4eb669f1f69a9a5d6d28896b16b19d3dbd710b98a4851d7f611bea0fd79e41930c3d838e"; }
- { locale = "es-CL"; arch = "linux-i686"; sha512 = "7c64c7f7058b1cb3bd5f55b1afa0bc2e779d46d05e5dd354fac7573ad6245ba31aa126301d827ffd17f197b460be24c98ad7c2a9a3d4c66cb6189618a4e38ebe"; }
- { locale = "es-CL"; arch = "linux-x86_64"; sha512 = "dcc4b4085fd4e480e79ca85b862c421f6e85d200d46b40178ce27177c1ac00f0d19d0c71ae3d7c12e15bf570cd0234743d080d06dae1e9e3c0c2f0eccf4bdf86"; }
- { locale = "es-ES"; arch = "linux-i686"; sha512 = "d049bada399fbc723ceb14aa116b9218d14729cca6a2297d852782e4d3a0cc7e278aecc62ec4b7f1e1c5af10f65d0cd0bd39e6fbf95d989ce4d2ea5b0e2f7901"; }
- { locale = "es-ES"; arch = "linux-x86_64"; sha512 = "a77978f8af7f932151468c9e002731c8b6b3e9d3d8d8dfdcf28cc545b63f1d859b99c6dd25c547201b050f58bde9a55fc67b8134ecb0c893ce50f7788774fe99"; }
- { locale = "es-MX"; arch = "linux-i686"; sha512 = "46a7bc0f112f99ffc218e0161116b373c5b496e8d73744f9ed341fcd0fece5bc4618bcaebd68cb0aa80bf86078163d92205d322464dd8a918463507e4a9bde9d"; }
- { locale = "es-MX"; arch = "linux-x86_64"; sha512 = "412f52d4eaf3f85cd452d18164d2ce13d3057b45bd4f81ef2255a3580bb5b7e68f23dfc8622dbe3c4d69291b1fbb4a3312a429713b940b081415157fe5dc849c"; }
- { locale = "et"; arch = "linux-i686"; sha512 = "34d56c20cd06f224d1a3916a12bfd3f076a1659d9bf21aacacd5bea59e789ff496600b712a12f0b67410da97e0500d2f28f1f916872bd223f9f3b913ac648552"; }
- { locale = "et"; arch = "linux-x86_64"; sha512 = "383a4e2b28217651e76a06dd84eed5f058bf53c25847a6ef0ad1ea9e6a3c98f6a94ef05999a92f03f669e7cea0df11654b201c4e21fc595fcf99bc91b90c05df"; }
- { locale = "eu"; arch = "linux-i686"; sha512 = "cae20dc1b9880dcd9ecf4331bf1b6c6208a63ee3490ac8b827c9e338916a9d07e447f93be4108db78ce3cc96b8d3828f1882c28aaf28f198fa4f875035ca5835"; }
- { locale = "eu"; arch = "linux-x86_64"; sha512 = "38ff3155783328b685c72f1ada0e01ab8a8fb75b191455dd43de590207f9b3a258da7cca6ecd3538a7d8319c8d1372e174fea0a22baecb497ca33aaff80a33d2"; }
- { locale = "fa"; arch = "linux-i686"; sha512 = "6d4d15e4897568d32128f193fa7bb413e63cb2bca23b81a16cb5b9ae7a558b768193461a182552da1153dfb708f834434a1fb63478cb5fe7984b91d00415ea34"; }
- { locale = "fa"; arch = "linux-x86_64"; sha512 = "6439f27cec2a8af66a4e68406c88b536c5f8e2b0202ce82aa46e75f840cb3977ddb041d8ee315d95505ebaa0e37b36afbf26ea0f39310cda09f6e765eb7bb120"; }
- { locale = "ff"; arch = "linux-i686"; sha512 = "ee9114fe358d9a6dcb7e404f13fc594de9339fc7ad126063b52548d42aaedac7abbce9e647766462de2716c3ad248b6992dc04e96ea3816068e884c30a3bcf84"; }
- { locale = "ff"; arch = "linux-x86_64"; sha512 = "beae2223a6b3aa555c071b51a46d3b0758efa53b6002f2486554f5bec154cfc1a1598f0175af654fc47a60a170eda916152e959a5ce2f799b779e5040ae15c5e"; }
- { locale = "fi"; arch = "linux-i686"; sha512 = "d8414f63f04a5a9c916487f93c67d2368bb4d8c8fb757c1d58233e6c6e6bde139f323b1c77dda57730173c6005b2647c688f7072ac09c1962b04a2493cdfa18b"; }
- { locale = "fi"; arch = "linux-x86_64"; sha512 = "7e0fce63b69653fa5d0d0ffa9598d10976a1f49aeeb48bcd8eee26b51ca1f6d1d898c84944a442d530abcab700dcfdf89c48ca23db9d835c877388a8f694b7ea"; }
- { locale = "fr"; arch = "linux-i686"; sha512 = "c3bfda75397d644bc4392ef87f1d24faa033f4c5672adc4d5d0007d5fbd63efd7f46a2febd0bfdf95d8f06152d274daf39ef6355e049e7fd5e53e2d750d03ae0"; }
- { locale = "fr"; arch = "linux-x86_64"; sha512 = "81c8091c9d8cc1ede738bb1d9b4fe72580d13de7e3f89410d1c684ca017ee197837788e63243c9722b30e23b2c910cb54fc7985f4936bc6068643a504d9a4ebd"; }
- { locale = "fy-NL"; arch = "linux-i686"; sha512 = "59797af1d76fb2afceb06de28c6fd13bdbc14d42c61f87f1f71d8273e03aa691e2ade3ba0361d19721862878c911ec46ffbfd0431d19d6ec0a92ebac05cfb4c4"; }
- { locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "19d0cfb01374bf2842a17ef4e9f5ab85280c1090723c1657459a230262d22aeb14c2faee1b86ac0b342c5926cbbf0479f2e1ec315117c06ad3272a3362d02f8c"; }
- { locale = "ga-IE"; arch = "linux-i686"; sha512 = "c1a4fe00a36e95fcd33d21544ee6b4fa5a6eae0628a37c27057cc801a641fbe5519818ccc157b87b64f24f4886dd6dd629809c89b9c89dc4878de794e48b107d"; }
- { locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "8d9654ecf7b6cb43b4794f345105c779809b9bd39a9dd46a0fbb1920139e9234e7433fd9a8d7dd57192c738d187f97ab82c8dd3f3a2460e3a34cdc9e9a5c5089"; }
- { locale = "gd"; arch = "linux-i686"; sha512 = "0d48b2886c431a9237293f24fa5f8cc7104a3373b24c98e23bbf93f66aeeb5b8b9e737712bdd1c777db19bbd6b01f9a33f0c388b6af023d852cce6543d486973"; }
- { locale = "gd"; arch = "linux-x86_64"; sha512 = "0339b6952f993d38686d92ac9a664cfa558f2827b92ae3464188f12e28e2676c8c4718cff62a840dba14de687434cf13902a621094f63e1bca1ebce321800d15"; }
- { locale = "gl"; arch = "linux-i686"; sha512 = "5cecaede8ebdfb58951b3f839388b81dccaaaa5d3b4fb5cbf26978b23cd962905191fa91d961037fa15000af47ab48042d272fd18a73e5ed4dcc2bb0ff4416ca"; }
- { locale = "gl"; arch = "linux-x86_64"; sha512 = "d1a0447ce592e7d2a8564d9c27fbce5f9378a4e21db3fa501782e57b6e13ede6f42b612fffea32e8891d47010509ac8e3ed1f63c5a81878008f9bead68b6b750"; }
- { locale = "gn"; arch = "linux-i686"; sha512 = "aff2f407e4c947d3e34447b43e844135562d79bf937a05dad5ce4dd1853dd479f35b4f6af1b2d8b52deeb9786a4fc67980cbf58ad82a747a7e55ea753a50ad43"; }
- { locale = "gn"; arch = "linux-x86_64"; sha512 = "78645796fffe364fcd28b80cde591d88db91a756318f645610f6823b616222c0c53faf8d55aaf1703d4bbcec1e8381cee566bb5739ccfa181e1d1224408463de"; }
- { locale = "gu-IN"; arch = "linux-i686"; sha512 = "331bc227d138a49d74cca37f8d7ba4e6eb891064357aa5b0606761f9af8cc4a029816a3a96cc3ac4dfb71b1d010c569940ebd70375fdd06af7b6b487bd90dafe"; }
- { locale = "gu-IN"; arch = "linux-x86_64"; sha512 = "d1f6c5af9e75e76683d39281eb559ac688436eae65d6bc486763028744af030a6c311d1f0358ead5e88ead60357261032dd739251352cde097986251dfdff325"; }
- { locale = "he"; arch = "linux-i686"; sha512 = "7a49d8cabab6aa8480026de6b77e1b6d60333c580d2b9591cf3fdc8c491d269f6a7a7f93118594de8c87576dda868f12de5a88f494736f721ee3ddc16a9afea9"; }
- { locale = "he"; arch = "linux-x86_64"; sha512 = "0eed4301d7949415d21426d9e52825710a0f48a1a0a3546f62d757059091bf12b3b53091f2c3102de0682162e3982a9fb58c111c9a6b8245d84825892e1d6844"; }
- { locale = "hi-IN"; arch = "linux-i686"; sha512 = "70ecabcdfee807b1a7e0b6a167bab07d3df798672a61bb7b80d1d6c3ace9385c472e08dd31f2c4c684cd5e723e7024016728df7b22943d3adec3d770ba7abd1b"; }
- { locale = "hi-IN"; arch = "linux-x86_64"; sha512 = "11e8be059afa8298a23857bd68b2f895bb60f73378c513d2aae0395b5faed68123631d9ee44b5608263334269e33b76b4563c063b2feec486e7a2dac1be42275"; }
- { locale = "hr"; arch = "linux-i686"; sha512 = "2c99b81cb0c8413aa98dcbac2cbd45d59a440c173a9cd744b78ee0d60b82ec4fe4894fe5e313d51b81caf6b86f40effdb36f5fd90c73cab82acf97c20fb5b152"; }
- { locale = "hr"; arch = "linux-x86_64"; sha512 = "fc209d82cbc24eea777a4318f5555d2cea4828bb7f305f868b8fca18014ea7c930f778c716eb0b9c1a7e29d9a4353b4c537900f9d659c432d6a75b1eebf30963"; }
- { locale = "hsb"; arch = "linux-i686"; sha512 = "3232380f15a33f31f8e3755707231ba0725b9afdae1d2a0d4fb2eb883ab4dcb5c8aee75549e41e7e2cdf445b6f39331b2be4d7e417604987c7ced46d2dd5dc51"; }
- { locale = "hsb"; arch = "linux-x86_64"; sha512 = "11bb460c404316c322e2498986ac6e7cb976a196de7208ee54dcd4ec61b8f05fa8f7782d6cf462cd5531f3137b1688b7797da2d78437e3c4d4f95867c781953c"; }
- { locale = "hu"; arch = "linux-i686"; sha512 = "40c3837c7ca4e0dc9e97e4c4422e54cc3ef157933ce9969abf71fd422fbcad517a6f6da3bcada83d3567323e83248a060fccc8a23a7f6fb55568a5b7ee0ff464"; }
- { locale = "hu"; arch = "linux-x86_64"; sha512 = "d05bdf14ed9c72031a29e7e9b39afe79bd2ccdc69bafaf8c6196081d462b0aa57a220a8a2105812b215067494c53de8adc994fbbb3549ccfcadfc15f99c710ac"; }
- { locale = "hy-AM"; arch = "linux-i686"; sha512 = "a9da495cc3e7a1e89ca8dd7a3db6c83529e0b7ba6562e7f0542f8b9c93bee8e4c219973b0b6fda1abd046d933fca718fab1f6bd4350ee960ddd89144dd321ed6"; }
- { locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "53db4843e0c9e99188e28bbe46b09239d998a3bae35ab79954bc6eedc5e73c0f3010c500dbb93f8a6ee2d5b22fb3ee9fef9ef6eef2dbbadf4b83f948282a8bc3"; }
- { locale = "id"; arch = "linux-i686"; sha512 = "05e7450a164c940e43ce34f6b7c9ad610d1652f11b0f030dfea7c9d8539961b2f3e69ab0d3b8d714725cf3e8bb256f18f4ac3613bc86bbf6223d9914e4eb77f3"; }
- { locale = "id"; arch = "linux-x86_64"; sha512 = "7ce0b880406dfbef90ca6ae6f121eaf72bd289e7b57f7686ea83fc182cb9b54a3e0bd8b23bffbcfb3c9e82a6b13c7afa16ce56d426f33f66072db4b5f466db04"; }
- { locale = "is"; arch = "linux-i686"; sha512 = "71446911d5142ab19308aca456dcc1d4d087db07898e331604230faa58c2146b980212880c7f88b6e3770b303a8450cff9e447638b5a063daf50ec25d29de738"; }
- { locale = "is"; arch = "linux-x86_64"; sha512 = "2542f214cb2474eab97d18a1daffb1181fff569058b91c1c9d7d6400b8401020b69ea9492fca55153c904289be45215b37ed0846d563f8f06ba401c482d59762"; }
- { locale = "it"; arch = "linux-i686"; sha512 = "bdf0da50be211492e2acdd9de223ef741fa916c54e94bf9c8eb20685006b68b5f430949161199a915c368d11143caf828c25b2e82c33fd5a61bfcd05de53966e"; }
- { locale = "it"; arch = "linux-x86_64"; sha512 = "a4562fdcac6d9ba96fc840498bbb381de6190158fea65c4809ea1ff3518181ed47b7c33bb772077975fd07c23a1e8700403cb6cc67c5fcb1c24e72563214f4bc"; }
- { locale = "ja"; arch = "linux-i686"; sha512 = "cc81a02282474928e7d2efc694761168db022ffcbf5ff32d92c21b90edfb194187dfb78f2eca4c42e60cfbba8ab6614c1c7b0359aaecafa47b1c9d3918327cee"; }
- { locale = "ja"; arch = "linux-x86_64"; sha512 = "07cd92b7f9647f774b080cfcef828899144cb03472d70394be197c43732b164978e1d9ebc9212a47b58fdcc61f5009328e766f4c6f799f35d73a4dcd2b31fdd4"; }
- { locale = "kk"; arch = "linux-i686"; sha512 = "1bef31c35180ad7fd49ab695a6985d8be301a6802225d319e979b8c716e78a5687753b6f63516f4b4221c402a2d2c8c0a0e22aec9023cdee98d71a4335728e7a"; }
- { locale = "kk"; arch = "linux-x86_64"; sha512 = "dff599278a27fe2b4efbcc99b7ad3b211ef5debbf1b95d765a36fdbdbaebff69936c250018f237843481244e2b02cb8de4e3090d9422adcbb3d8af4239759269"; }
- { locale = "km"; arch = "linux-i686"; sha512 = "0080783187b80019cb4c56e2b30a1a403c632defc375adab7d613489fbf7f217a22a779f0119e2810ee9f0bd024418ffc654df146873a06f59bc7f1de5fbf244"; }
- { locale = "km"; arch = "linux-x86_64"; sha512 = "84d1ca7fd0a4d6a39aff375e922dcdcbe51fb2b497c6eebc312abe6cb5b29bd049e648197f0181bb2ee1b47b43275c14eb13233958c0bd4f7cf7b28e5725de97"; }
- { locale = "kn"; arch = "linux-i686"; sha512 = "2dac35157e3264547726ad33f786bd86e52a4db8aa8d1449cdfa9993e5bc16556c6005e06cee915e427e74b3eb4eed665a4a6deed7bf3800a95319346fda3690"; }
- { locale = "kn"; arch = "linux-x86_64"; sha512 = "175b3edf58286a229ab4045ca2d75f8a00e8ddcac532fbfc8aee5a048e0ae0cd5044155a8619d6dc53756150bce2d46b910e1abe216bf537d259435199cb42cd"; }
- { locale = "ko"; arch = "linux-i686"; sha512 = "1db17eaf47e7916366d05021d683c2b4d8f26316abc057a450d24a5d19fa1ed9aaad2f7a45cee63c0f021d93214b62a032d17312cdb123289b31dd2e5bd43808"; }
- { locale = "ko"; arch = "linux-x86_64"; sha512 = "4bc673e54fb0c30b7c8389c2a66b322bd4b19e8635cb3d633754214c0726fb95d3194d09435bb4afca17e6cb3f03f028408d13f9ed44d8c2b9c323eabe5101e9"; }
- { locale = "lij"; arch = "linux-i686"; sha512 = "8349ba8cf921d73f0c3bd54c9a30df9c0232d7686724a0d635435d65a6bc8baa1915e25702b930cbefe954b5aedd1d3faeaf54ffa9b5dc494e465a635a57369e"; }
- { locale = "lij"; arch = "linux-x86_64"; sha512 = "e12597062c060dabaff08c251f82ad63f534c341d1afa94e567c763b7ac290cbb03a27726e03b449ff89fe8b86b25211e807ef7ba34e876d902705f9361d5cdc"; }
- { locale = "lt"; arch = "linux-i686"; sha512 = "f67ff28a20ae0580aa537797928bf84cdc088cc0df586071a460eda6ea7b96337a5004b2689688a487ed246b5d83a14bf77a5002f39fe7ccc46e92f65b565cf1"; }
- { locale = "lt"; arch = "linux-x86_64"; sha512 = "f4ffb37c69b9c69e9ea54d691bfa3c069b28d5b1b0b48b917f4c6f10c1434bb451b7c17e777b5daf3c869eeefb2a064264bba7591f681d319fcab00335b37384"; }
- { locale = "lv"; arch = "linux-i686"; sha512 = "7efe759ef2f0e585a8887e829e2bdf917209efd5b3d5235f5765c0995206c25941abed9b11f9241da565a919f94890682a944d2bb7dd1d1360f67f173dcf2852"; }
- { locale = "lv"; arch = "linux-x86_64"; sha512 = "63cdba3ea94fb1847913a42ba70193ebfbbf1235a28881c7d671b20dc8272c5989dcb8290087a0862cea7a4c8ff448ee61b42a13d6c03c8787be1dbd957769f1"; }
- { locale = "mai"; arch = "linux-i686"; sha512 = "0619cde7ad13590d2da001fdf87e2fe9772d65d1ce468ea2b1f3085d8c6c157f48d23b343e6886969dde5827d12a368e208242dd16df4e498893d53f030665d7"; }
- { locale = "mai"; arch = "linux-x86_64"; sha512 = "f65ab5c51b7dd0f127a4b9f65a0280002af3387b12e8730f8efd79f4700f6c5f5842e3f634dd738571995dfa52ef58ec0d68255ceb52c6a7df0332797dfab253"; }
- { locale = "mk"; arch = "linux-i686"; sha512 = "e6d2bf183fc1fa88d0bbccbf058344e8dada0271694ba3bfc149e965ff16ec05ba6f7a04cc39f3657524555e84f25d072d7922fb2c075b0bbb8cd933336f1d94"; }
- { locale = "mk"; arch = "linux-x86_64"; sha512 = "68a96a11e38944d654d1aa720b5a099fd0789520b8681f15cf33d972956e7dd2c44d940ea0b2840c48db79615aed8c83d3f19769908752f960f84a7bdcf3a2ab"; }
- { locale = "ml"; arch = "linux-i686"; sha512 = "32c8e00f71a7fa609c3b99799f64362962d245d75865ce54fcd72e8cefc45f5cec7a99ed343a7bd92614569e62a02ac0e712b4ca3fce3d5d0f2f7ad52767c209"; }
- { locale = "ml"; arch = "linux-x86_64"; sha512 = "c641244006a11de3b6ae947f2d5bf8b40fd4bcde8e7b71d2fa2a8258087bf3d6382f21b10b05b2554f031ee95a579d31d0e0d8f1b72a5e1101acb31075aee02c"; }
- { locale = "mr"; arch = "linux-i686"; sha512 = "3949d3e4d9fa507c50f5ca92ee9cb041dc9d034f78d44343139a1576f128a06d8ef3aa2b1fcfe11d77a7489b0f7dd18e14f0ec0fff595dbefc219f6b1eadd969"; }
- { locale = "mr"; arch = "linux-x86_64"; sha512 = "c323cf8842f695e47f3c91d356ff63bb0ce7a5cf47cbe874dc6956d90fd84f6330e6e1f5f0bbf61e2cfda66a2dd0e81a756f3b464108e7ad84450722562e5906"; }
- { locale = "ms"; arch = "linux-i686"; sha512 = "f5ded01c47ac91d506a10774b198b3c2fdcff35a10ced17cd0cd94a1e367d489f2afe7ae22d59beb420f771684cefe3724c88313249a4c6072ce68f36bb16cbf"; }
- { locale = "ms"; arch = "linux-x86_64"; sha512 = "39d4a052c21fe9ee876f8b8a7fabeae9a6a30d959e1a7b27b0a1fd08658cac5959aa4879e3056675e2b7de83f588cf82f5d138f2ee5d9b0bbd135b51de109f7b"; }
- { locale = "nb-NO"; arch = "linux-i686"; sha512 = "6cc34cda3cccb3ce92f44244e291dc94238292ef6e91172d73659ca5b4b46fd004483680a7a45ad3643d59c57c7fe7bf4286f4cf7c903301eb39712db9bd3583"; }
- { locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "da645c69d2675bdd1d2808f0d7446ded4414311bffe5f1a37a685f6f4338a56e831349a1a7904c0332266e909e4e82085585afb14b3fda7925698d66e9912a65"; }
- { locale = "nl"; arch = "linux-i686"; sha512 = "a2d906caf6b4c36305cbcd2840915000c53db2ac03122aca162e672014b217237363bc309cdee5ec19d21106073044fe8668fd044805161bf4916cdd938565ed"; }
- { locale = "nl"; arch = "linux-x86_64"; sha512 = "6288c2f0306aacd87a82a3a6262b514f32a177674e6b96eeb5a8f937ee36b6573d8a3e6925be87609e4d7dabd1e6367eb0e730d87148cd50c1572756bb098a5a"; }
- { locale = "nn-NO"; arch = "linux-i686"; sha512 = "04454f9f5dd2611cc76575a41d56f6819c5b97e213f82ebf0aa5e8393d9cd4a99a9df5291d3e3c3985396a99559f39fe5dc6a85141ac1d2f4919b731d7539a89"; }
- { locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "fb55685275d0b6c9e47b0356bd4249feeb3005b338d2a2caea4bb7b86edc6991752af9276db91f448032ba7d9e01209d92706f7612531232f87c05cbcb13f337"; }
- { locale = "or"; arch = "linux-i686"; sha512 = "16639bc10229e171577abfeab841bd7b5dc411f4e314335787727803a486b8f04e8730a7be9321172fdd60791fce7363d5ce5aa28628cc4d2b7769357737cd0a"; }
- { locale = "or"; arch = "linux-x86_64"; sha512 = "041f3a63a4cd9c0f287132252df7aa6d7eedc72650244729e01eb52a93a9ca8206a11cd7783e7778d4cad9a525ce2aef1c423840ea5c54fa202600a0b5805e31"; }
- { locale = "pa-IN"; arch = "linux-i686"; sha512 = "7c9cda0d9dd9d1196ca33a58b6f5f3c3f09896bf65e8fbeed67fd9811cb1bdc12b7ca8966b7612cad524a3bcc9dd1e2678627f6cfe172b1bfc2d9b64eaac17cc"; }
- { locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "56507e7e1e93ae880de5410b4ad8c1302f58b43ade2ee4dc70c1290334edf2ea05f7ddf2ca00317ee33662de29c635caad8f73332935fd5bd4ff6a37758bd195"; }
- { locale = "pl"; arch = "linux-i686"; sha512 = "52cb7e700e541a82328c935a0a99313dad6b7699c09a1386697c77544284d53653705ec6d57f3cc1bec632962217c090ee39687a81b19f3a3af2178eba9a1eae"; }
- { locale = "pl"; arch = "linux-x86_64"; sha512 = "77a99740ad99808a31df3e71038944901fc0d5339f919cce40389de67baeecf2b9c34608194ea1f0e4a25bbaed0ba06159d10ac8816735b34a2e28ab041ae97b"; }
- { locale = "pt-BR"; arch = "linux-i686"; sha512 = "e39d9b22f8b7226ff2908b34847fb77cbe0c834f51985712024de83ece7549c8a89c3ab3d81abb6bfe6a7b21f18dee2d87926abf3d2edf9f8a8976242a4dcb26"; }
- { locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "a03a0e37ecc2d903715b70eec0a4b2808a913a8e27398dd96206295e1e765283e97b76ba278b394f9629e352c10cdb2011f3184b903d0e6de784a13abfcf9668"; }
- { locale = "pt-PT"; arch = "linux-i686"; sha512 = "2d511400948ce05358b9400752bba41cbd947d1a4a5a5a92f982830db92507e257c28ae319f411717253dd53a1a7e73607f9f62fb7b7c8666aa339fdc73ce728"; }
- { locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "71e2a000333ae8565de6fc9d01e871c2e894f96a9a2544a21aac08ccea0399da37d74c3230c4b3cb7ba0231fcdddaa417f78e48848fda8f063179766cb675038"; }
- { locale = "rm"; arch = "linux-i686"; sha512 = "4337964e6daa7bc799f01aa52a33f04c060288bbb881c2321ef938658b57f05b632f734ea0564cddd0078f4b38d1c8cb2c2e6221849ca4aa80579f308fdc2056"; }
- { locale = "rm"; arch = "linux-x86_64"; sha512 = "a55e250de5e11ef808243ef974fac8938c70269a36bcf9db898a11997722b8d96d60d76ca28e41e023b4c7e6614e323479d3d4d2831b83655ad3ae3eb5ed774c"; }
- { locale = "ro"; arch = "linux-i686"; sha512 = "17171889ac7647e525783c96afa5a5de796d603c8fa6a7ad8d12205ad510f869b35f0df79aaa04e4b980c86ceb923f89936499df7e55539393e40ac92c23bb1d"; }
- { locale = "ro"; arch = "linux-x86_64"; sha512 = "721912e5ad4b0ad0727f0185f660351b3c59291b3a22aa394f01c26ee87366b43b5aa08cdfc164c16117e1650837bc2007e42c34756dc26466edbb113f11fc09"; }
- { locale = "ru"; arch = "linux-i686"; sha512 = "28dafdbe6ae4fdabc061c68ca82dc6ab8fc463da11c712500378d90dfb662d6e0991f35a918315ce138603283befcee182092ac4f8d348815bef27431252874b"; }
- { locale = "ru"; arch = "linux-x86_64"; sha512 = "27bbd48859f5ed6053a2062778537f4952a0847ff74d2dd407766ef4b4f144903167b4fe80b98a5b2b80e42d6b730bdfed36fe9a958d247a335bf31f091b8c70"; }
- { locale = "si"; arch = "linux-i686"; sha512 = "0f50616131a3b80499885ed5fb8573fd3ebe522cc893496d03e48ac6eafbc2a5224240971b66c393323d2583512dacb73f3201eef1a495298badad605cc76bb3"; }
- { locale = "si"; arch = "linux-x86_64"; sha512 = "37996cbc994a7527c2ffc5143dfe970ae2fe0e098f0bcbf9fd4643e8297bddbe7fc0f4af2f2ee15b0807c339c25d780040e2f9f03975ba9f49359052a2be271e"; }
- { locale = "sk"; arch = "linux-i686"; sha512 = "db95ce3b68fdfdfc9916cfbfa6a797370ddf58f5aa234d59bde6e76cf7fc0e821e9954cd0ce090404f5f718b9ede9c1ae6b9c7e37db9e64eb9d9dcfd975c6a79"; }
- { locale = "sk"; arch = "linux-x86_64"; sha512 = "f9e28572c83e70c7658fd67abce93d021600fcf6b8daa7861cb6eff315a28c0e531f1082f6c25f5779371b2884c975fbc22cb953aaf589ba6b050bc736d25d9f"; }
- { locale = "sl"; arch = "linux-i686"; sha512 = "e40c201c5e892a83a23ac9f1af22e9274bf6d964b39bae2e191bdac100170685376fa81210ddca38c76e5277978772c693563e55871318777cca7ac7e47fd1f3"; }
- { locale = "sl"; arch = "linux-x86_64"; sha512 = "ea4a198b300e2fbb23fdf863659b683b772624cf4f6c2c3e5e07af9a3f991a8fdf7113f852646f36f697c705c3a6f24485dcb8e2d615a3a358bfdfca406254a0"; }
- { locale = "son"; arch = "linux-i686"; sha512 = "b510efeafff8c32ef3b7f88e81d4c1a1c1b2bb435c2ed4ad69adbef8f5d374677e2231f94700cdbff9e5f747c712d8f58245a4c8f0d38ac3eebb5adcdc42c7ae"; }
- { locale = "son"; arch = "linux-x86_64"; sha512 = "8c8d583e7e5ef1363096c905535c8e6dd63900ee50684d9cd36b4e55100930b8fc8ee9a3ae770128cfc71a30a73f331cc508555ecdfd3fbbf359ad08d5cc9519"; }
- { locale = "sq"; arch = "linux-i686"; sha512 = "809ec8706df6f3538e3c53765a1f1834cee3d2d9cffbfb1f3e991faeedaca28a2dc3d4e037ed9e00d58ac6cdb27f5575bdafdc454828d9fa988d7764bca88c0c"; }
- { locale = "sq"; arch = "linux-x86_64"; sha512 = "6f2c5778d40e9bc5bb558ac626becfcbe33c42e2a2e588ee59065f60643708ff83be55a082b383f7747241ad8d59c0e3e13bc8556967f5fce034ee23d7f054f8"; }
- { locale = "sr"; arch = "linux-i686"; sha512 = "cc0e0c039af32611d489bf082dba5ba971b54b22937d4b8fa80150a560a3c452851e67d02f7cb27e1a63229c9a42da449f932cdb88af342e0146022586de109c"; }
- { locale = "sr"; arch = "linux-x86_64"; sha512 = "21928411981e8d3fac5e44f02173a08ad4c3135ec874998d6ddf5ef2821226ffee260023e5bb45848a40db19537b1d6cc0b127d9524c0d0616d80618ab1d9228"; }
- { locale = "sv-SE"; arch = "linux-i686"; sha512 = "cddd222328f1099c25591b03abe23692fdccc82405df127ff920818fb7952fe384fc1373b1330b971d196e98acd62b3754711b38876050ec3cce7de20f183b79"; }
- { locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "06c819436de292d531a9d3df34b76bad36bb627e0e45ca042f2dafb06db14cc23e956dc2e00904d5147bf7d0b39c16f712f2b8acb1d9bc4daa210d56d8058e22"; }
- { locale = "ta"; arch = "linux-i686"; sha512 = "5e8560e423aa88c1fc5b61cf91c558a861a58d09d7e560790ba835f0bbae85cc82c61e1eb9e1a92e632d2fe24419d3eecec4a15bb083bf0c1568a441a5586a50"; }
- { locale = "ta"; arch = "linux-x86_64"; sha512 = "6ba48474d930036d77d23b717fd2e592b19d0ab2b4399f7a6f7bd36da48cc0a2dea9c25442928c507cdfe8a8f37a8d0e4ddb94da42a7a3d6c2ecba26d4f7dd2f"; }
- { locale = "te"; arch = "linux-i686"; sha512 = "2df2a46677c979b8702700c69f687e8bfa49e879ccd9204a1ca876b7a5f8925abfe6f81f42e6d6576aff6cea264cced854ae536a3cc01ed04b7a536396e9ff33"; }
- { locale = "te"; arch = "linux-x86_64"; sha512 = "d6c7bdb7a823be0cbe8286b977cc265e80ae290ae8fc4002a7dc71eddb3b80a3796e66ad1e00fe2e797ae83272422f460defa86322dea8e33ad0d7dfb50491de"; }
- { locale = "th"; arch = "linux-i686"; sha512 = "eb017475d187ef4f1329d303bde84a17995ed84458923330c2ef61940c86674c03f06de2e3655885df49cdc384d1b8e952dfe8ce960cec738f99b8853af1e018"; }
- { locale = "th"; arch = "linux-x86_64"; sha512 = "cca6fe63bf24ca1db9d736305dff312f334cbe0a836cb181fdde85c4b2e383e1a19135f441a1f07c69cce716a4c2d3fe42a07fe3c91146aa6598d651890ff049"; }
- { locale = "tr"; arch = "linux-i686"; sha512 = "98aa598f348be7705c11834f6d174fa19a8408b87193a93f641c4fe92898f3175f79a1bef9c66dc93c3cc19a372930725025d7ff1bf178e951c9d5dfd675ff36"; }
- { locale = "tr"; arch = "linux-x86_64"; sha512 = "a4c2d82f7e56e413526cbe40eb24df79ea264b37dc09b470ccf3416c922730d714ad166507f06b6a68fc85ff73df73309da936ff56499cdf81b78fc973675c86"; }
- { locale = "uk"; arch = "linux-i686"; sha512 = "cc04ead20aa1f6d3a8ac470ed3fc69ac0d348ab0523308ae56b49734785fd63bae4ac6fcc32bcac3f2e9350ebfefe76fa39efc2a7a7f5d7c2309b6999f490e90"; }
- { locale = "uk"; arch = "linux-x86_64"; sha512 = "1f29246b8bd1a4e07af7b30c2ffcb5239ee5f870e529227e96c0ef091cf9d9d8783891b2e60b0a5dee10e80893ddc6a5cb972d27e70ae4cd0f820ba9f60a2165"; }
- { locale = "uz"; arch = "linux-i686"; sha512 = "d144626529e57e93ea12ddca25184903b78b878563302c7f14a396435187791d2a14482a7d10bb569890d9483253474634574f105b9c79763ad6a85fb10de73d"; }
- { locale = "uz"; arch = "linux-x86_64"; sha512 = "4e6b7706c6f529739a18748f35d7e31071c6818c0f83261e1d31e66306fb40ac94573f7ebe3b811f4c70f88a2bbca29528b868821962e88ba30dbf84039c5ea1"; }
- { locale = "vi"; arch = "linux-i686"; sha512 = "fc7144a73551e09196b7c79e4fcf1ecf5ad92b3e54e8a203e213627133df0260dc53f0cc9bb9e03ccae0953de5f2752e303a35e0fdb720a40637e5b31edd3544"; }
- { locale = "vi"; arch = "linux-x86_64"; sha512 = "7a38b4814418516c8971825616874782512bf91d51a798fbdb1b8d8a817d30e72d9fde45238602a6de9cb9c53cd0512acb07f6e16a819ce24fba6467ab1cc8b2"; }
- { locale = "xh"; arch = "linux-i686"; sha512 = "0fe791a3270343598417b093476fc7eb50628a7557c56294b3222e657c62a2b5ce7988243d75ae08f7a11c2b9e437d01d47258b1ac93c2579638ac67e12c4d78"; }
- { locale = "xh"; arch = "linux-x86_64"; sha512 = "f797c52d88b62aaff15419baf5d7c5b2a44909674602ca82c295120b4b0fcb7182a36952f7adeaf7e9878b3d21031e990d22e5f8dcbc5421a3d587ba37f63906"; }
- { locale = "zh-CN"; arch = "linux-i686"; sha512 = "970c14e1f105d6092fd542d73db57260836bf249aee99ab53f43882cb6327520905b7a452e96a6c142676794bf22e13c80e86291bb5b6dcaa09d0d9bb376d4be"; }
- { locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "b811f9d359fb61674781443d71e961ba687fecbe4904622b6ac410e435e31b6118f30726896021d28ae51628ab95092b28181ca0ae471374c0cbc5a740fea496"; }
- { locale = "zh-TW"; arch = "linux-i686"; sha512 = "43f8d6e9cdf5815365e0eb1516ccb5f6c7ac7e19c10d1ee45ee367d721bf1944321879d9966f7000f50d324f14c36f9f8fcd9bb43ef20c780ba39d3c138f2192"; }
- { locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "02f4910b3c5b6f75e2f19c03452ce0534980be7ff18abed8be2a2f9af19c6eee5928c493e618b00d167bb3b2d7e60724741a2f4de1df9b1e48a05923a7649cef"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ach/firefox-48.0b7.tar.bz2"; locale = "ach"; arch = "linux-i686"; sha512 = "9fa8e2fe59c149abf5b1f4fad168717aa68c9e3e9acb219aaf257aff953a719c2df1dfd55081c6c4398732c9bb16690e4481b7c3c9f1fc9ba20468ca38d7b9fa"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ach/firefox-48.0b7.tar.bz2"; locale = "ach"; arch = "linux-x86_64"; sha512 = "b4115232ee0cfa6062fb9c06743d31edc444f9e5481b84cae4c1ec275c55500a16fe7478ee79caa269b669e566701be225c45729946ca950a492b36038d208fa"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/af/firefox-48.0b7.tar.bz2"; locale = "af"; arch = "linux-i686"; sha512 = "03dde31a027765e7003c89188cfdbd87f57447c8d7f6542e11e01ac4242866f6db98943d8d50188b1e0c41d740f3ee95b5f9ead01e9df5ad9beeb066c0b1e54b"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/af/firefox-48.0b7.tar.bz2"; locale = "af"; arch = "linux-x86_64"; sha512 = "e9973af0cc52e2126ea682067fd7aa11bf071ae2aafab935d704122480a46658139043a29df30c038af85c1fde836ff7725bed21ea4c4778e176adbab704c6ed"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/an/firefox-48.0b7.tar.bz2"; locale = "an"; arch = "linux-i686"; sha512 = "1e23956adc055188e4342cfaa0e38d062bcacaf0fb99895fd2fe3535f4e528890a75a18e0620e881e1fc87d11ce8b21c280c88ed11b2444d037990a11fb8e9af"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/an/firefox-48.0b7.tar.bz2"; locale = "an"; arch = "linux-x86_64"; sha512 = "e75ea9a5ca4860f228d4b2aba3c9ba4d104a7cc24fa138102d80b595e29a391d15fb82d749ff7a03193dccfccc7bbd106dfbffe5ae7152afc4b62f4d05d58ad2"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ar/firefox-48.0b7.tar.bz2"; locale = "ar"; arch = "linux-i686"; sha512 = "df97f1f2414d9f2c1d5ddc50e901167fe3535ac0f71ef99e08552ff9a5f4b7e6162f258c41d1024e2f886969e7ae80b741c271b551a51ae05a48a3e7987a52b3"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ar/firefox-48.0b7.tar.bz2"; locale = "ar"; arch = "linux-x86_64"; sha512 = "79da3baef8806966891b803137f2b9610b3562f0a806ab2fe3234f3320cb0efe11ff523373e933d5d230a6959ca68ab013d64dded47e6043e9fee90202c8bbc7"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/as/firefox-48.0b7.tar.bz2"; locale = "as"; arch = "linux-i686"; sha512 = "ab18bd3f015cddf2dfe337556d29a20576dda5879a56242955476f50b0978808d3ec63812666ce73a58904a70edf251e3773ea34a38b955510ad331e5f66751a"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/as/firefox-48.0b7.tar.bz2"; locale = "as"; arch = "linux-x86_64"; sha512 = "26be5b409c5e4acd6a09482d1380f902cbc9948fce33ff5e33c22a8573b5ccd05f10a4b6f84dae8ed9280f5b6568a411837ec7bd1b64bfaf18670e2a45c475cf"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ast/firefox-48.0b7.tar.bz2"; locale = "ast"; arch = "linux-i686"; sha512 = "30d23a4012caa6faa02871be312ebf867321b5cddf1e74d7680e426af4a6670b34aa48f237ac8801c696d0cd2551f90ab5fe482b4a9bd03bd7d4521e204bba65"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ast/firefox-48.0b7.tar.bz2"; locale = "ast"; arch = "linux-x86_64"; sha512 = "cb0ff48d6cefe69c4f05a83d7b9247b5bccc31db8efa708a7de3ffa67459f8427ac255bb6645e59f7ff6047f0370d24d2668954837aed7d71eae88df6824cced"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/az/firefox-48.0b7.tar.bz2"; locale = "az"; arch = "linux-i686"; sha512 = "00685bee899c7a083fbe2a4dbdbe32df1f291c619e1ca681164a3c88782f6898a11add06a17f13aeb912c635d0fb2ea2c30c0e3bd5ff7cceb63b1134901ecab8"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/az/firefox-48.0b7.tar.bz2"; locale = "az"; arch = "linux-x86_64"; sha512 = "e4133e1a9fb103652037caf21bc18815d89bf5e1a0d7b34abe115715e8e5060de8b00d35326bd3cfb9d5edb7cbe286456748953742e4cb5d5c76c7314a344720"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/be/firefox-48.0b7.tar.bz2"; locale = "be"; arch = "linux-i686"; sha512 = "9444970e5cc3f3359b02b8bc58f13edfd64ae6f99d306ae7d9baa084658c75b85120354614fe2655b600e0005de1b128df1e2967f93dd0fd1c31ee721e0ac306"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/be/firefox-48.0b7.tar.bz2"; locale = "be"; arch = "linux-x86_64"; sha512 = "08bf09e7b8f8911e42f5e88852f705c1f7263d1b6a0981c07f7ff651e620bd31c1a6baebd8a8a9353e49f9ed50d1c0d55bb88c97faaade0d415cba482ddc6f73"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/bg/firefox-48.0b7.tar.bz2"; locale = "bg"; arch = "linux-i686"; sha512 = "1708e547f2ea234537a0dcf40163ac18c641bb4860e74f054325db8ddf4960ee0649348b458a8fad1f5bfbe1fa4308c9fb13d84fb941c2928ea42f6ea77cccff"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/bg/firefox-48.0b7.tar.bz2"; locale = "bg"; arch = "linux-x86_64"; sha512 = "26540e48ce864590cc40a45d4124250674a1977778d3251b5f46701d3fa3b0f6d8a602b5bbe1449040ff943a2ed12bce7758037fe8ab753d0b43eb815e905ffb"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/bn-BD/firefox-48.0b7.tar.bz2"; locale = "bn-BD"; arch = "linux-i686"; sha512 = "6e37580672455a717be37061c4d3135e72cd6aacaceef20957cafe9fc95ff40a6781dd92a8425e4023f75f4d027c5961d7a3b0b6373501790ec5057da519baec"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/bn-BD/firefox-48.0b7.tar.bz2"; locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "1498ed777a7e3aec18945ab01aec80a51e7cf6a202ca38b333ed6aa9517170bf9ec4a3c9e638acb60cac5b01ca16963b41489cdf71cf40655cd87d2ef161d4ad"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/bn-IN/firefox-48.0b7.tar.bz2"; locale = "bn-IN"; arch = "linux-i686"; sha512 = "1d9335e8b1268fc163bc31d1afe58613738f08e4ca8a429da63e59e4b862e326cd62d82a686e5710304a5b86e9d2981885ce52aca9913d4cbbcd4c1e0a88e782"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/bn-IN/firefox-48.0b7.tar.bz2"; locale = "bn-IN"; arch = "linux-x86_64"; sha512 = "e686e0a9f8d5078d2a728add3085d0d11fcec9ce8b1a05f242769532ede411f41d8385b2199e2a27edbe8a58648d3e4b91df2d730e6bb17b7cb69c4a22630fb6"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/br/firefox-48.0b7.tar.bz2"; locale = "br"; arch = "linux-i686"; sha512 = "19f012125431f7c56ecf9ac12bb44a52aa041a97a0b2c1db3656d6229b4215d5bf492730c2bf08244e38ff120ad9003d4ee0842f834cfef8536b8f40d8e2217d"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/br/firefox-48.0b7.tar.bz2"; locale = "br"; arch = "linux-x86_64"; sha512 = "250c9dc52e661c91163ece0fc195ed29d621508ab5666ae97d74ffeabd0dac1effddcc4d0ad9573c5c44ba9aa746330b5a6dd40693491f52609b1c47e9fe97a0"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/bs/firefox-48.0b7.tar.bz2"; locale = "bs"; arch = "linux-i686"; sha512 = "fa946cf9eba376ddccae25b44c31cb41dec16c016c678c155d0fb6f235c2932fc59eac0df292940acceaa7f463979495de17c86863450a1a771a277440d2033d"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/bs/firefox-48.0b7.tar.bz2"; locale = "bs"; arch = "linux-x86_64"; sha512 = "eaf3e8c8706a6005f6f78645c709cfa2463e47f678baa395db6c562506b872d9d110e973186b4408022cb1d4a8b343d7c84e2e0f1a3c18e3d5c04b72c23243b4"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ca/firefox-48.0b7.tar.bz2"; locale = "ca"; arch = "linux-i686"; sha512 = "c4fefe7ea67edda4cf5ff7dccf6639246fb73eae683ef72bb7c75e25d630cea78fad38d11d690d9786e43e506cff548df3c867fe91d7570048759933f2ec0523"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ca/firefox-48.0b7.tar.bz2"; locale = "ca"; arch = "linux-x86_64"; sha512 = "9bcad65fcbfdc85892fc552809da740fd28094bf6be32ddf783a6d011c901f3a17d8ba8d33649111978cfd75274641f6e0aa3513b2d05ed100f2d2d9a8cf9057"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/cak/firefox-48.0b7.tar.bz2"; locale = "cak"; arch = "linux-i686"; sha512 = "430b4f156d4130d2a689349c172c40c635ebb4e41d8dff65f7e3971b92ce7682661de763a1ccd706c9fcd11d3590d53193502c01964b703a7a304313c94e710b"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/cak/firefox-48.0b7.tar.bz2"; locale = "cak"; arch = "linux-x86_64"; sha512 = "46f3fd5a750618f8bfbc8015748e12df62b1f3db470abd3e7b0edba01ffe4dae1909cdbda5dd5cdd78a0d62845eebaf8e6223cc11e4b88b3710e1ce62e3ebd39"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/cs/firefox-48.0b7.tar.bz2"; locale = "cs"; arch = "linux-i686"; sha512 = "d8b8eed71db048dbcd25f116e70040d5105dc3ea9ea69a77064807862f19229cc215ef1482c94609276b914ed7fe55250889b986ac1d11ed086e4de3bb15b9b3"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/cs/firefox-48.0b7.tar.bz2"; locale = "cs"; arch = "linux-x86_64"; sha512 = "01e23193ad0bb1c0cd218bf22e301fa79da810ec79f4d68afdbb6d7f3da5871de3f15f38abb5cb5440fe29a3781600dce4733fef67d0410ffc6e63b0c29fb9e4"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/cy/firefox-48.0b7.tar.bz2"; locale = "cy"; arch = "linux-i686"; sha512 = "451f4eaae757e9474e905135caa2718d75551f2893a6343256b8c8595dd312e0c5416a7d7488b6670cd361db81d44097fb3c54c3cfa27a7efe6386652addb472"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/cy/firefox-48.0b7.tar.bz2"; locale = "cy"; arch = "linux-x86_64"; sha512 = "c260f1090ffe09cc714ade4105c74bf234ab03f032cb066cecbc0308866c33169c9b3c7b37f3acd70d17794878d9e7e9f928a29c5e8aa2172d8475ca7460fb15"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/da/firefox-48.0b7.tar.bz2"; locale = "da"; arch = "linux-i686"; sha512 = "a449772de22183399c34d91b2c747253e7e32bd388e37b6f7194d68b87faf74df805886bc75230b19766ffb40e312c76d439754902b6d3c8b2057a654e656f33"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/da/firefox-48.0b7.tar.bz2"; locale = "da"; arch = "linux-x86_64"; sha512 = "990bf989ce48afd5261c7a6d6a4e3ada0c40acaaa5cc8c369724ff7eb73f5800009ea2c4584e8afe926f77d4b18af95510558bd99ff564754625e1c1dfe0d5ef"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/de/firefox-48.0b7.tar.bz2"; locale = "de"; arch = "linux-i686"; sha512 = "5c6cc3a65a31043ba0143d9609ad006b6cb4f9af4cbc57efb4d2012ec08438b63045dca06c93b7d9c657f7cab9e19e01ed2b5dc78b79f2d9f59ff85836a89009"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/de/firefox-48.0b7.tar.bz2"; locale = "de"; arch = "linux-x86_64"; sha512 = "1dcee925aa75eb0acdf3e21a0578dc7f747dbef8cecfe5024dba66461e03420ce9a9211b2c69a35861cdc75facb956f576cfe3664f91f4085aba1585d976fccd"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/dsb/firefox-48.0b7.tar.bz2"; locale = "dsb"; arch = "linux-i686"; sha512 = "c327582db0a1f78b1d4ec56115220c4bd5751eb46d16f26bd589b4b64291a66845d0277c4eb099cf197225771414ad1bd16a56d41587befd3fa1c766095c697d"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/dsb/firefox-48.0b7.tar.bz2"; locale = "dsb"; arch = "linux-x86_64"; sha512 = "eb049a000e908e5d46726d09ad8a219e1c60ff2f29959f5cfa416a788e5c747f50ff5e6b807fe30f7e013a7f5587f607834ff0faad6e060a33db55d04dc6cfb4"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/el/firefox-48.0b7.tar.bz2"; locale = "el"; arch = "linux-i686"; sha512 = "634320e4103b0ce72a6c132afc8e33ff4a234669f835a23e526c227e94f62be62075cb69d6883831d72d13d309d4e1ecf9947d850c8079efe0c880f7b7b79aed"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/el/firefox-48.0b7.tar.bz2"; locale = "el"; arch = "linux-x86_64"; sha512 = "85c4a47f5d3c65a6ee623f89420141f0cf7e02d8c7338d39c8c672cb0aae2364afd37c66fa740bbfb88c52aa37da6b9d106a824845c881e4de6c2d2604477d47"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/en-GB/firefox-48.0b7.tar.bz2"; locale = "en-GB"; arch = "linux-i686"; sha512 = "1ea0aafb65140f9c09aa4557d7460cfa9f206bd963137ec72a86d237be9cc3ca131b616c198e330d6328f48ae713cd5ac9f53159477b131e55e3ceef8e2ed7b9"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/en-GB/firefox-48.0b7.tar.bz2"; locale = "en-GB"; arch = "linux-x86_64"; sha512 = "1a726088d2843ce835154675c6dca3e877af6281bac63aada1e4969782350e985428971b216e9225646c8daf523907394a21080e7f4e40225b9ff62d24df4295"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/en-US/firefox-48.0b7.tar.bz2"; locale = "en-US"; arch = "linux-i686"; sha512 = "ded034cd43b45d73539a3c3f8a196f26d5e80c3cba84e3d2ccb925815b661b4c9a3eaad1d35bc363ecee70e3ccec953bb03795c6fad33debd1a81ce8dc71669c"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/en-US/firefox-48.0b7.tar.bz2"; locale = "en-US"; arch = "linux-x86_64"; sha512 = "0bdb77bee7fb8720f1154ffa486a8f6564ca592c56ce07b823800bd54218bc01c57bc27cddc73524c8f8fa1944c869523880a02fc698e44c5c71f4c800dd7208"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/en-ZA/firefox-48.0b7.tar.bz2"; locale = "en-ZA"; arch = "linux-i686"; sha512 = "9557d2b57e09c390cd706673c6b2203f2a1beec8952a63e2d891d00b975c67ba3b5f0f6da622e81572d090aecee42ea8ff398df61845f7564ddfd42818bdaf4f"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/en-ZA/firefox-48.0b7.tar.bz2"; locale = "en-ZA"; arch = "linux-x86_64"; sha512 = "0617a7b1117fe47bec89b86f89248cef981812a2126e64779d2f7b9c81fc11b38cb3ffe8f039aec72d4904cbb95505519e7ce64c115c1613e96adf90ee72f5d3"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/eo/firefox-48.0b7.tar.bz2"; locale = "eo"; arch = "linux-i686"; sha512 = "3e4ffa7728382e6862f224be0f576953120b563e0b68599df545ffb46483ae470d12280556a97b238aba0427651be744e9e93e7ba19be3d0764698367b4ab5ac"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/eo/firefox-48.0b7.tar.bz2"; locale = "eo"; arch = "linux-x86_64"; sha512 = "acf8527148b42e9ed50d027dd9c9a6de11975d40556b2ceb27bbb2fbe0e37a4f2839ca643972b55de52f95619eb432e16b12f0cfb501a5be3824e977315ef89d"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/es-AR/firefox-48.0b7.tar.bz2"; locale = "es-AR"; arch = "linux-i686"; sha512 = "ed70d0cf72acbcac71e0684ef755d987702412103bab21510daa7107b369186569e848586009fb3e654f54ca657e7cb259ad5574d5ca1e16c517100946135466"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/es-AR/firefox-48.0b7.tar.bz2"; locale = "es-AR"; arch = "linux-x86_64"; sha512 = "541f5579e3889413b6cfb1be40f5630ab401b7b0b3054cef1a633d89e36b59b1d83c86e44ccbb3acc8fbb13f2851b16e0b43f9aece4f98b0713b377606e742af"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/es-CL/firefox-48.0b7.tar.bz2"; locale = "es-CL"; arch = "linux-i686"; sha512 = "a44839ac7686b1d252cb04fe17ef5c2790d30214e5fa34a3cbd11f12dfbd9168acf7b33ef9dc22a06edd624726511e718691a973c5b70665eff78d0a18287413"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/es-CL/firefox-48.0b7.tar.bz2"; locale = "es-CL"; arch = "linux-x86_64"; sha512 = "84b768876fcbd95dd1f9734368c73b51b82ff445df975bfe913eb74c139e35d069acb1428b9afc51357c4567dba0d03950d7199b3fb43017df4987aa69247450"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/es-ES/firefox-48.0b7.tar.bz2"; locale = "es-ES"; arch = "linux-i686"; sha512 = "727f670438db45203d403746b7396b3b754b888b4a1d104b2bd0599790ef12b0a16db9a32b51617ea05bdff4f2ac696566970e83029e7e3d25434ddda8c4e88f"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/es-ES/firefox-48.0b7.tar.bz2"; locale = "es-ES"; arch = "linux-x86_64"; sha512 = "638ebd73556eacf0f2b38ef2d71db5922299d10c0d5b72b6bc7e935d814e300c17dd835f94517b8d0e62ba6e54d5bf5059dcaf57eb03a03bb7068161440f7c22"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/es-MX/firefox-48.0b7.tar.bz2"; locale = "es-MX"; arch = "linux-i686"; sha512 = "da88b8c3d5c9aeb33cbd637b00f4790225b7b46f4b8a1edfc6c49edeb1e29929c4690bd66de0afd31492b213a67eb617355adfe5a7d7b5ded09208eb3a861e36"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/es-MX/firefox-48.0b7.tar.bz2"; locale = "es-MX"; arch = "linux-x86_64"; sha512 = "0581028fea7610b44f27a6e5b25203020768d87e83e665aca24e753bbc0f0d49e2935c8f12755e6d4911e5f79052b4362447d1dfdc37838bfe9976e0d218e49e"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/et/firefox-48.0b7.tar.bz2"; locale = "et"; arch = "linux-i686"; sha512 = "6d150372dff1113d14cb32003fcbbfc11f9aff6ed8a0fc8f5f8e2d5d3119b34a8471469d69e8fe48161297e69f95185c414680b3c59bb95d7e483ab2805b5729"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/et/firefox-48.0b7.tar.bz2"; locale = "et"; arch = "linux-x86_64"; sha512 = "72d784c90c054d29420582a9a71d96c9a7270b1ac5592d8b920f8148542f17181d9cd71d019c0294c60112dde94191a686ad105993d7bd8340142ca849b5c150"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/eu/firefox-48.0b7.tar.bz2"; locale = "eu"; arch = "linux-i686"; sha512 = "0c2b1f0f886436c8d9fe6eead6718ee47e72fd988e1e4d83a70200f6d085419636058d6767a66d273842cb44573d39f58f72181ddfce01ca60f392c6c18df22c"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/eu/firefox-48.0b7.tar.bz2"; locale = "eu"; arch = "linux-x86_64"; sha512 = "7c03846d49cf1dba85202b2f7b6ed722898da5185a956ffde1c88df454560eb682ee562f782c3e21bf62b41ab156048ba1c63efacf7fd46f8fd7adf0536cff5d"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/fa/firefox-48.0b7.tar.bz2"; locale = "fa"; arch = "linux-i686"; sha512 = "3a21d3ecb88827de7094aa4ccf29005ffbf3f88681c459aa9f159d6dd6b04affda08661b1b77986b73a19de1fd2fdba2ceb91036ecc718a69cc5cb16e8c8bbe9"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/fa/firefox-48.0b7.tar.bz2"; locale = "fa"; arch = "linux-x86_64"; sha512 = "4750663d5eae7ba9fa282b0dd97e05cbcf3ace8b0715983525ae207de57d352b45495e0dcc46381979997532a8e20c85567a9de18056181f5d408d57cefddaa4"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ff/firefox-48.0b7.tar.bz2"; locale = "ff"; arch = "linux-i686"; sha512 = "e9f452656328e3c5a2dd7dde23b84ae535551bcba16b14cc58fbf8aa33f2eb8655cb4ff524a15b0a2db2d4af9ef5da4ca853fedb5c0d05b877fb0a8656833311"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ff/firefox-48.0b7.tar.bz2"; locale = "ff"; arch = "linux-x86_64"; sha512 = "f43daeec8c0647a8ee984d3541172516d1d8822596ab66a1a9651cd31d447a35f078725f1eb4b30a3f01c02b8573fb0ad268ada70ce013cf1932602f22119e4e"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/fi/firefox-48.0b7.tar.bz2"; locale = "fi"; arch = "linux-i686"; sha512 = "477e5594a9821864db879ebf04b74852c711c5f0a43e00c02bf17754817c20279c56705aa3e3b51bccd52f9380bc242b12bf58cf40a2b64d9697c8ea76270771"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/fi/firefox-48.0b7.tar.bz2"; locale = "fi"; arch = "linux-x86_64"; sha512 = "aeef4b397c9972c055392faf64947d16173a903c290e4d710067c5cbe6c422acb2172f17c8b72bd5b80ae883f4d22c905ca0581c11822975a42031f2621852b3"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/fr/firefox-48.0b7.tar.bz2"; locale = "fr"; arch = "linux-i686"; sha512 = "363bd189e7988393a97c7fd9544537068cb541e762427115bde4a3f05297302a30604a5e6a34c97b037c8f2e9c25ddcdee0ebbd8c292ba007362b6de858643c6"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/fr/firefox-48.0b7.tar.bz2"; locale = "fr"; arch = "linux-x86_64"; sha512 = "4da717be716a1c16440be76d988ed2ac2ff73bf5a8734d1025ff190cb6d3b9072bd613d973e65207102e4e54479c32e8101aef59de533487b60a1cf10e7ed9ae"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/fy-NL/firefox-48.0b7.tar.bz2"; locale = "fy-NL"; arch = "linux-i686"; sha512 = "49e343a363afb94a8b7f7d2aca557127af4743a97678d123fe2a4355d542497da1f5c43a9c83ec974586ca707c3988d416c9e55090c9bae10923bc5aae785bd9"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/fy-NL/firefox-48.0b7.tar.bz2"; locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "1c53d25d464e36d7dcdda0ba6dbe5bfc85c03309dd22edc916c97aac4ef7f4bdf6329349fe66d27e1e885b7ad76359e27c6fa885302905e6c6e785da1535b53e"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ga-IE/firefox-48.0b7.tar.bz2"; locale = "ga-IE"; arch = "linux-i686"; sha512 = "bfa9b70d5b2c891a82b92ad78e5f7b71df005ec142a1fe60e6bbc5717152f1b5325499fa5baca6a9f4e01be104b0dcddc11994a510e7cb41a5f1709dbe00c895"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ga-IE/firefox-48.0b7.tar.bz2"; locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "3d6bc3254bcffeda6260168bc43e58e1ea517543831579892b784cb43f51d9cf0b598f6acf1b56f51b72b7946f1904eb96168f046a80a76923ba52f265ef6d12"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/gd/firefox-48.0b7.tar.bz2"; locale = "gd"; arch = "linux-i686"; sha512 = "4c12d70a50e8d1b5bb2a912f3d070b30783757ea339eefa87e63c46f8e47646e69acaf975f3a565dff67bb65933bcf070bb823c195a5df9ba8968ac9a7fd82ea"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/gd/firefox-48.0b7.tar.bz2"; locale = "gd"; arch = "linux-x86_64"; sha512 = "fdb748f6914902308d074262d4a1816d8a0a26a3e7f159d013d321875297b7c46eb266473361567c92c5011234ddc66a89f0a88b7ec6435c39e7488167d0b63c"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/gl/firefox-48.0b7.tar.bz2"; locale = "gl"; arch = "linux-i686"; sha512 = "e450407c27de08ed93b088222fda97daea6cd69ec93a75f267ec67a510f3ea6a657eb4eed67844990f8815be28fa1af8fd722f208c3b6193fba38188eb03b134"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/gl/firefox-48.0b7.tar.bz2"; locale = "gl"; arch = "linux-x86_64"; sha512 = "be63e8e8dc2daa586fccfcf4e41979cc6746ab2797962a86b6644c9ed14d0f228a0a83aeea7ca115e4a13f33bd5048075ceff9c0ee7516ba1fc50dcece31d88d"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/gn/firefox-48.0b7.tar.bz2"; locale = "gn"; arch = "linux-i686"; sha512 = "545a5c29789b626e47db56d0b962989f8a73244d865ef03bbff57272f463706cc5de1cc5e346b0188d4dbd7caa3fb67f6c0ea6064320d6c81a7db678b8eac86c"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/gn/firefox-48.0b7.tar.bz2"; locale = "gn"; arch = "linux-x86_64"; sha512 = "4dff9aad6938c17f3b97b1901831cdf1f993f0c8c03c3d03881680e1a5d82a10c414f85d5d6ef8791ea5c352eeede94036075b8a14046b87b19caf6cb917f950"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/gu-IN/firefox-48.0b7.tar.bz2"; locale = "gu-IN"; arch = "linux-i686"; sha512 = "a63a9c54fd2e3db1c161d33b6c725711bbe43d5e915f6bfe50ebe9f667a47299989e9096ac8b8caf80c7f69f0fb276fce33873dc77b930d0cc228d0472ae81af"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/gu-IN/firefox-48.0b7.tar.bz2"; locale = "gu-IN"; arch = "linux-x86_64"; sha512 = "a9dd610aefc900d712bc68075d32ebe0e87a1de05af9b8592533db8cb65a1a6f56db5a566cd3c013a84d72802eac917fafd42517c0ce53b4701f58711ef0b7d8"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/he/firefox-48.0b7.tar.bz2"; locale = "he"; arch = "linux-i686"; sha512 = "5b0b46f00e3c61ea8c00b849b5605357979c7ec4276f9f490b6e75efee28fd4ba2aa285ebf689bacf58a40f03c2336e77a7b19c7fb518f95d900150c3c70d62e"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/he/firefox-48.0b7.tar.bz2"; locale = "he"; arch = "linux-x86_64"; sha512 = "d67ef81f2c539718ff6916349f9ecfff42983c2e28b02b64e8ac71c54ef2dbfe5e9a4da6ec6f1b4361e458940bfde6f4da7f22bc19515cbdb98cc0166bdb1c27"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/hi-IN/firefox-48.0b7.tar.bz2"; locale = "hi-IN"; arch = "linux-i686"; sha512 = "a15ac725626fdc4f9bfe02e31da4385af32c57c407dce7dc321e259fb29d4c46a254bd484dce8ea7d3e322fcdeef07d62f64a874d45f0460bd2b17007f688b71"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/hi-IN/firefox-48.0b7.tar.bz2"; locale = "hi-IN"; arch = "linux-x86_64"; sha512 = "2ded18a44554ddfe73721a35af71b77c600b362dce138ee78a633fa8d4d91a5fd55921654ff9c2eae05d0ebd9ede1de8b5c9bc07f761e068339474bb8622732e"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/hr/firefox-48.0b7.tar.bz2"; locale = "hr"; arch = "linux-i686"; sha512 = "797fa8e8ea628b9855f42bc3f77e1928743f9b96566ce886cf2897dbed920a6f83089f518bd07f5f820374e0968de848b46d8a6777d8c77ca581a1b172fd25c1"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/hr/firefox-48.0b7.tar.bz2"; locale = "hr"; arch = "linux-x86_64"; sha512 = "623eb40846a769825300177ffcde2f18721474605e6bbf7cacc0f26f2d7e3e68f0699a173fd0154bdbc6f56c13befe2bf45caa76dd3de7ba2249cb153b8624f2"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/hsb/firefox-48.0b7.tar.bz2"; locale = "hsb"; arch = "linux-i686"; sha512 = "58b1f83e123fbd32ca6d824aa87e0834d92f8c148db086fba5414519aa77a1469f5010077b119dd6758bf58165afdc1bcb0fe5b0b664a68fb73951047082ec07"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/hsb/firefox-48.0b7.tar.bz2"; locale = "hsb"; arch = "linux-x86_64"; sha512 = "853b6fa276e7e6c1ba0a30b95f8fde73e4bd4fb7e745c3722fed9de00bdae0d1739b78570a0108d2ff9efb73e8052e5d5192151ae789c5b336946039ece560d0"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/hu/firefox-48.0b7.tar.bz2"; locale = "hu"; arch = "linux-i686"; sha512 = "984d3ab191091e9956bd28a2112715d0c27a24e5345b9c515e2b0521030200d2742041340db0d916915c87071c70b3d60762ca278dbffb88ab35611f30337468"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/hu/firefox-48.0b7.tar.bz2"; locale = "hu"; arch = "linux-x86_64"; sha512 = "cae180b050bd956bca474b187648dc969c2ca8ca3816ebe46d379681bbd470029d93e6518e7fe6170864c2466e6b3752aa3f372df34b672f93687704a26f0b83"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/hy-AM/firefox-48.0b7.tar.bz2"; locale = "hy-AM"; arch = "linux-i686"; sha512 = "f26993353fab3bbae965b7d7cdef57bee60839e4a726c75c966ff2e99cf6edd3e249bb3e3adc7791b1095869fe6f5b43861337f8cc6d3017600e61fe436497a8"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/hy-AM/firefox-48.0b7.tar.bz2"; locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "b7c228256d16587720f186c1a257cd157d8302e597dfa6cb72fd984c05105cfbe6e33578addce044a88ae11b11e4e6703aea432d5823526caffb08e81b1b300d"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/id/firefox-48.0b7.tar.bz2"; locale = "id"; arch = "linux-i686"; sha512 = "324de4444814ec0e57c57fc4ca07dca20e10bb0a80df33ee01dcb8908caf6e5310563bfd66b62ea4eb5f595ed81edd9c504a8b6f81317bf85c4acdf9da2181af"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/id/firefox-48.0b7.tar.bz2"; locale = "id"; arch = "linux-x86_64"; sha512 = "8b199bf64955d23fdbf47c92c57022e7742dce10c02242cd3cecfb662303402dce4a6c784c141a63007f4ea92b78e0ea0fa74fb6bddf157a848b2e85f50acde9"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/is/firefox-48.0b7.tar.bz2"; locale = "is"; arch = "linux-i686"; sha512 = "4addbf9e9626f6f81a276e506b5974232da161e108c194ea34f755efa40e5f5b4df6e4feedc90309740b4e8c04b946a8da74cebc28867f2d23ca71d9c0dc4cf0"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/is/firefox-48.0b7.tar.bz2"; locale = "is"; arch = "linux-x86_64"; sha512 = "843bcdaf5855dba929b4e12ba88388e3dbe3372051a3d789ac5951a66ff4c044af563e2c04e005788bf087590444d390ccdc0646ed37571e95cfa5225976cd36"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/it/firefox-48.0b7.tar.bz2"; locale = "it"; arch = "linux-i686"; sha512 = "e637a52c2d365835de33b8e3f3dae7beac254169ac65671282252c3ce33816c3af3cd696c73d15a3f3a3827c72376245ead9b0f655d2bdc857156bab353ddf69"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/it/firefox-48.0b7.tar.bz2"; locale = "it"; arch = "linux-x86_64"; sha512 = "f62acc4a2d2e8fee43f3744e3adf6b2850de9b7ada59a9d985b5ea0051a2f00c2fb0ce14bffefe679c0359897e1920e071aacd177bc140719f47d64dccf799c6"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ja/firefox-48.0b7.tar.bz2"; locale = "ja"; arch = "linux-i686"; sha512 = "081aa992d79d9a07e82a3027294752fc338e715e0b26edd6dfbb80fad3fab78fc4c0ab5082cf8880912c3a3249d7d35b0ae99c2152bb87a025219e7ecf16f330"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ja/firefox-48.0b7.tar.bz2"; locale = "ja"; arch = "linux-x86_64"; sha512 = "3ffd093818c2fadc5d6e6a3ad9891b84352d522686ff1c23a9574c981a2421974d6346284db686a382193078ef3ad4ea8eaa081d9ecf59e4d07c396e1a1b223a"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/kk/firefox-48.0b7.tar.bz2"; locale = "kk"; arch = "linux-i686"; sha512 = "492e2165c88e5e2a1fcce1bfc2c994f7daddc1ded69d6b486f21d0655c6ccf112b1202080cc989bed68a1c35502c078025135af13ddcb0548b17d6f830c09b66"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/kk/firefox-48.0b7.tar.bz2"; locale = "kk"; arch = "linux-x86_64"; sha512 = "f5e7a56849dd1aafc13b3b0772fdb482cf6e283ad98cbf2aa655c016d443242d9b760cf133c130813f04cc572de3f5ccf5cd4beeac98d07cdd4d9441838b1f34"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/km/firefox-48.0b7.tar.bz2"; locale = "km"; arch = "linux-i686"; sha512 = "d21d401e1505bdea1dda8fcd65622547ff919e0fe2c3ef402c1a5a67a5c61d6c082730ae21286def66699a994f0196202ba03956e9f5ba42a166d8dbff2a1aa6"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/km/firefox-48.0b7.tar.bz2"; locale = "km"; arch = "linux-x86_64"; sha512 = "c0e08b44b09c3f8c0e17335c0d287285e3f6cd5e308688da36647ba226ecb10c98f87f92ca6b2d50e0718e39757bcace7132390ffc4d2a339db5d3cfbc37b85b"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/kn/firefox-48.0b7.tar.bz2"; locale = "kn"; arch = "linux-i686"; sha512 = "71d3dbd2fffbf51c64fe7af008e27a2d9ff3dba3417bd9c0f1106fcfd445f88c2865ba03799b8fbbb00c13242c1cc7995b5aeed3d20c19b95448a7597378023d"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/kn/firefox-48.0b7.tar.bz2"; locale = "kn"; arch = "linux-x86_64"; sha512 = "dda7d698c760ef750575f5978599bb964cc008a18ec048e744aecd17cf41d6eb2b9a69ea13efedf5a5d5a46da990c1df817027b7762cd169ca2f30a0920ebf98"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ko/firefox-48.0b7.tar.bz2"; locale = "ko"; arch = "linux-i686"; sha512 = "f427847b0a4d3e8c52f59a75e4b1971ae96998d202b44ed360f5781775d3cb1c705923a4acb96a365925fa1f27af7e7292d3e4f0af6c22af9803600d7a64a9ee"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ko/firefox-48.0b7.tar.bz2"; locale = "ko"; arch = "linux-x86_64"; sha512 = "fda5463fb43253a392616ea7f0e287464e83bc9f4c9b3a88ae40f0e2bb1b18b5873ebe7304d27b76b2016312d9a2ff416f3006f5a75f315e2be5f8ea16be82a5"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/lij/firefox-48.0b7.tar.bz2"; locale = "lij"; arch = "linux-i686"; sha512 = "38d539b3b0ad87b557aa9c75212c64978fe1397c797247d94ac6b2fec33723d6d05de80f1d79b84989424fe5074204eda4af3f23d163dbcfcd035e5f7f568ce8"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/lij/firefox-48.0b7.tar.bz2"; locale = "lij"; arch = "linux-x86_64"; sha512 = "a03e8261420d0b336545bf140916fea9cdf6cf2ba5bb55de6f039141011bccec49e88fddf7664e7a574c6da525f2f6646793b9d505135a311710a4d4014fde5d"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/lt/firefox-48.0b7.tar.bz2"; locale = "lt"; arch = "linux-i686"; sha512 = "ca11b61ed252863b6efcdab2438fca21bf837f29bcc7b719e5a99065aedb8f75bcae8beaec1a273624ea3c2a7a57db4386f52096777755297183691498f33c62"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/lt/firefox-48.0b7.tar.bz2"; locale = "lt"; arch = "linux-x86_64"; sha512 = "7d6af8577ce9c9e3ab13ee3313b4c35bdbeef802bb5a5a15fd991d4fcf063b49ea1292718a4d74ed57b7c6f00889c96c9261bba442476d6aa090623afccebd9b"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/lv/firefox-48.0b7.tar.bz2"; locale = "lv"; arch = "linux-i686"; sha512 = "19024158acd59afccdbe39430e463e9b441cf1950aadc713ff8a74d9da97cc11d9437d86d0542306a8fa4a29a69547b4d59aa28be2bbec8a434425f20ca0d1dd"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/lv/firefox-48.0b7.tar.bz2"; locale = "lv"; arch = "linux-x86_64"; sha512 = "73c81902a047a13c01fddc07eeab9886c0c55e2a3ebd30fee0a036878e52580f50c47a1dd4050cf39587b63432cc9c2947c88200fb2c95b143379a21ea60c400"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/mai/firefox-48.0b7.tar.bz2"; locale = "mai"; arch = "linux-i686"; sha512 = "d6a2d0b8821872b4f78f2fc9ec6ab9e602673bfff2d1b6339a37532f883b61134719d0e4e9caba53d3198107b895b3ce193839de2a374391c3fd58e595be1eca"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/mai/firefox-48.0b7.tar.bz2"; locale = "mai"; arch = "linux-x86_64"; sha512 = "bdb1e2e97b736b70a7d11538e3fc16be55889b14397709094c2efea1faa3c57b0c272cacca0fb0b307a3cba656145df3f7945cba4e9f762f3f9ee4f389e3ab50"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/mk/firefox-48.0b7.tar.bz2"; locale = "mk"; arch = "linux-i686"; sha512 = "0c52c93a00e1b82b5569787a624806f1c3175d40813da3da0833b23006cb377dd1b693120f96c1a6c172093393ad08321efc52262c5260e80fe037e709c94ae4"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/mk/firefox-48.0b7.tar.bz2"; locale = "mk"; arch = "linux-x86_64"; sha512 = "bc2c513eb37a667195180ba3933407c7f90cb1e815f2c646a5410fb942e562c3659eaf3200ec6397a12987267ea26be1c71dd4467f80045c79bb793f2144cd89"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ml/firefox-48.0b7.tar.bz2"; locale = "ml"; arch = "linux-i686"; sha512 = "7336e98002f71f6ff9b51d94b5c2ca2b5ff412d9069837053a63e3819013b36ad6587b9675089243f19474eda2906767e98b2cb3e96ace266ea29f5142c2533d"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ml/firefox-48.0b7.tar.bz2"; locale = "ml"; arch = "linux-x86_64"; sha512 = "fe70de56fa9d3bf56d355058c4412427f967f69467dd7b49cd1fa26c6abc898ae061b49bf259eaba7073fd926c1e8e5901a0979a88007ef3ba3d5caf07329203"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/mr/firefox-48.0b7.tar.bz2"; locale = "mr"; arch = "linux-i686"; sha512 = "180072a70d38d4607b8c2105dbfae2647900796208f6f5a6111419c4712e6ea959a6f5ca5068f1f7653ece073087e2f3c5dff177d92da4d92aba4ac1b4b7971e"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/mr/firefox-48.0b7.tar.bz2"; locale = "mr"; arch = "linux-x86_64"; sha512 = "08bd093d657ae4e6b6136d1627ebd355ea2794c2e2824ca4d4121a5a506b0682a65e1416aa2cab49fd00db4c3736ce09101225b0333385032a958309cd7e4edb"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ms/firefox-48.0b7.tar.bz2"; locale = "ms"; arch = "linux-i686"; sha512 = "a3bdac7effbb5a29f2ff1385da3de4a2c16a914d1d3306cee22b379779b1eb9d45f6a6c6bf10ef1e1a11ab52834a08c5510a38303c10cc6e4cfb96b32ce2769a"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ms/firefox-48.0b7.tar.bz2"; locale = "ms"; arch = "linux-x86_64"; sha512 = "08f2fe47c14ff5432f8944312e3d45d26dd3fa56bf4b0d350b4504cdc639eab147e3da9edc25b8551ab5156dc214101831c2c1c0f1b159201e5a061461e51285"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/nb-NO/firefox-48.0b7.tar.bz2"; locale = "nb-NO"; arch = "linux-i686"; sha512 = "cfbb14897df334df5f11305ec44f8e4b736a8320b6ed39e5581be413cc4daf92908ed54215e24e35e34e0904a1a500f295ebe64871e53438658d0340f7e708ad"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/nb-NO/firefox-48.0b7.tar.bz2"; locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "19403a121e9e86447f3265ef72bda4e3a7fca55dfa76e8a25381ff97412329705f8b8a79031fd0116ac7e0fdc29fb9afa0c1de14287399f28e95d181fc933470"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/nl/firefox-48.0b7.tar.bz2"; locale = "nl"; arch = "linux-i686"; sha512 = "73789e769bcf2bd710f5234cc9c0f046abd5aed5d66b4e900b19f87a3c23a7daccfd086d9fb80fc6ced3742ccec90e96aba785330a2dc9cc79d76780fdf56cf3"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/nl/firefox-48.0b7.tar.bz2"; locale = "nl"; arch = "linux-x86_64"; sha512 = "07a842dbcde5fa7c5623fe5e8bd8dec04b33b300f52a1ffa8fe604ddf93df9879b9179bf8363cca4aa62a1c878ed77fb5e0b5db85355b4a2d1405888a9a6268d"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/nn-NO/firefox-48.0b7.tar.bz2"; locale = "nn-NO"; arch = "linux-i686"; sha512 = "b82f14f66dee3036dd62d0af2889137d51521ff51494584fd8f50f380e8ead3d8290a73843a0aaa7dfc7e38c3f69c28b661185841c3f71f11eec686336c7f36b"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/nn-NO/firefox-48.0b7.tar.bz2"; locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "9b627e063644d138c5b9b5bfce48431f8926fb3b13caa01547aebf007a002c75f8ae3818d5643f212c2e6d1e6203c49a24412aaadcc2dc5539824c168ecea52e"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/or/firefox-48.0b7.tar.bz2"; locale = "or"; arch = "linux-i686"; sha512 = "7e36e94c90cd2ce6116a56a5f1ae2772eabfb19bfbe0a5bb616173f0e3cfc6d9f3cf77db07c767fe2673b29437ea8cdd70584e2b65752660d6c4878d598e0998"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/or/firefox-48.0b7.tar.bz2"; locale = "or"; arch = "linux-x86_64"; sha512 = "cfb9989b2ff2e2a81c3453dc7b03113e251d57b1925ba1fe60bcff4bca9fa16fe8ce6409cda6f90d7afde832b370a731d86c999df08e77a7c69ad6e72181f6e8"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/pa-IN/firefox-48.0b7.tar.bz2"; locale = "pa-IN"; arch = "linux-i686"; sha512 = "63e4f8e6e5d6360914073a1a8b9dfd9d1936ad3efef6994a880bde075468cd37809294d3cd80dbb693b429dd82426e06632b6ea87f776da509bfb1ed1cdc1848"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/pa-IN/firefox-48.0b7.tar.bz2"; locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "49a065634297b37532882cad5b13687fb6abfe0fdb577a4ea1bf86568abe2ef5b29bec7d786a47b8a12ad06d4fa78faffdea1f531245488efc42b14da24d2f52"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/pl/firefox-48.0b7.tar.bz2"; locale = "pl"; arch = "linux-i686"; sha512 = "06ff4df2f58d8c39ded84915d5f4ea2137f1692b7955c205a738fe65adc8c324c9e4e1f46963e40dfb74c483a33028d6157609e9f99819683008e0e5f992e52e"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/pl/firefox-48.0b7.tar.bz2"; locale = "pl"; arch = "linux-x86_64"; sha512 = "b07fc75e55b860ac8ce03262dfbe77ec558842baef037f0e390245f3bffab03df31f6488811b630ed5355878dc01e4930b839251fa726a121fcbfac2eddae9d8"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/pt-BR/firefox-48.0b7.tar.bz2"; locale = "pt-BR"; arch = "linux-i686"; sha512 = "56a5f63dda3c359203a1ada88dda971aefd4219e0d76a8123792131cc5abaf23a1bda2498c1f93725b853576f572205905f3b7d16569611adcf87b7bc96528b2"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/pt-BR/firefox-48.0b7.tar.bz2"; locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "5f7af50fa1620c17e4473c869fa0a4384518b79514108317c1aa8c5f32fe6635bf88eb53d589f4714fcae740988d56163e293960b40b2165eeb6fdc7146586c5"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/pt-PT/firefox-48.0b7.tar.bz2"; locale = "pt-PT"; arch = "linux-i686"; sha512 = "b3f4913abae949f1783cb6cfe934b97f3a93a579c8f57d3e29d87e15169234b58c5a243395ddd0944edf4519a9d3d735424bf14ff7280d7a54494989cbe7aed9"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/pt-PT/firefox-48.0b7.tar.bz2"; locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "71853f84f9f1545a099bee0994bc598845aceabf562730c1fbb7b0f9c3ea8113e6ba473840feadf76aa0d35ac0ae5a038188ef6078fdb192de99396973cfebce"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/rm/firefox-48.0b7.tar.bz2"; locale = "rm"; arch = "linux-i686"; sha512 = "d1aef184253166dcab16b1cf25bf58131ec76e30af84ea0a75d89106e253ae4b5ec17d55039b1d1584f39c4ee1ef7eb28b73144cb8312fe15aba74e43cea0ae4"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/rm/firefox-48.0b7.tar.bz2"; locale = "rm"; arch = "linux-x86_64"; sha512 = "1ebe23f6c352e088180ebc9f03c4e35b1c08a2c8b9efc64ef710c8bb0c70c082bcdc3f23c436a427a95bccc219a5be8011b46d49047483fb57a2be2ea61577a1"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ro/firefox-48.0b7.tar.bz2"; locale = "ro"; arch = "linux-i686"; sha512 = "6ae17fafcc61dcf5ea548e55c7535ac196402c20468ed53eb32a529eb756a88264660dc4acaf1f27dfeb9bf4e5515c75287b4cc8ac42c765358908659ee12d03"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ro/firefox-48.0b7.tar.bz2"; locale = "ro"; arch = "linux-x86_64"; sha512 = "9635df3cf66825a4ec30ca03f944929977bd526146d5991b03a2539e59a6d5a979f8d25697e9aa6e051ebd6f05bbfeb993e11e547491a272e77c36b695402d93"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ru/firefox-48.0b7.tar.bz2"; locale = "ru"; arch = "linux-i686"; sha512 = "ca1f6e5e32da878f50b2cfa5f42d78ed93423e0f4f308e914a184747c59a82f0d2db5c768fb65a16bb0409070614be44ea14351c21904e32baf5470b81fd4925"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ru/firefox-48.0b7.tar.bz2"; locale = "ru"; arch = "linux-x86_64"; sha512 = "14f66c3db5d3f17e064eeb80eec31ea4d531b827248eaa5d6d1c936962b77503f7b9adb16daf754909e4749f8548f4be8f86f3d01345bf9999e70d8e7c52f6d6"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/si/firefox-48.0b7.tar.bz2"; locale = "si"; arch = "linux-i686"; sha512 = "cd45ccd8f3e41ae3f4833f6f5a821dee061898fba61c974099361eb84272676b146896727889f8adecdd563db9c4ce0de666221eacc7f0ef841ce4a5155961d9"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/si/firefox-48.0b7.tar.bz2"; locale = "si"; arch = "linux-x86_64"; sha512 = "234fe0d5677b67bf5458df4290b055159860f43a3afa66982b9ed9279a5e74ba90ef6cde23fdbd9fb7134ef0ba47b270880b3561f35fdf2286b23e128f9d0da0"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/sk/firefox-48.0b7.tar.bz2"; locale = "sk"; arch = "linux-i686"; sha512 = "0cdc7209cbb2d537ba19ba206b53534f18ec0cfba1ad67a435f7134b1161f13236db2bce707cad50687790861e09ddd31a35eec8fd4965d4b1c697a84b4e00f4"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/sk/firefox-48.0b7.tar.bz2"; locale = "sk"; arch = "linux-x86_64"; sha512 = "8db988c2fe8624d9b7154a39df173f2bec70369edebcb02363f5a1ff50e299590722961d58c96bc7cd003e14b7db8e6c1c78a488bd1bf3721e880df1e14fed08"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/sl/firefox-48.0b7.tar.bz2"; locale = "sl"; arch = "linux-i686"; sha512 = "a67d0bb63da12db2a1d936b40dfbda4f4473a67c8937c771b8b07c651eb9302128cdce01c02f1bf52ea641dcd9520b5d79561c07a88004ab39ae4ddf28a6cfc0"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/sl/firefox-48.0b7.tar.bz2"; locale = "sl"; arch = "linux-x86_64"; sha512 = "d0f179237a4dfc59d8e847f5393ce7d59c6f399bc9bf5113f70f3850e3452d14542f08ac1b2faf0ec291b0f80183553d4b44c64866902db4ee891f00703bfe4b"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/son/firefox-48.0b7.tar.bz2"; locale = "son"; arch = "linux-i686"; sha512 = "f66d6383be284933b2b62432b86e6ffa636c737ff5ad2d8159dab527cd951501eedcbe9a41d197fc1a7f14404ead4b2f25b7c1bd1725bef80a5dcba6a793ea42"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/son/firefox-48.0b7.tar.bz2"; locale = "son"; arch = "linux-x86_64"; sha512 = "bf461c7cf0f24cc091af8806097b759a5ceb5934fd96011e003a438ea5de0dd9221241665c3b713dbb3485f13070cd7aecc23902a28b2f84bb6bcd69d96b95d6"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/sq/firefox-48.0b7.tar.bz2"; locale = "sq"; arch = "linux-i686"; sha512 = "cac1528dbddbf0163391cbc7860cd048376de7012950fdb74beb8f0dbecdbfda5b41dc347d100b0a83b31d3b324211e7a253dfbfafbc72f083013250660139c0"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/sq/firefox-48.0b7.tar.bz2"; locale = "sq"; arch = "linux-x86_64"; sha512 = "bc96183968912b8ccd6e46adf82c49777f19b1692a5a06ccc9e24d4cba31fbddca79993f6e33a1693da0a794c081d8696d96dfe84de32003f190c2cceb484e9e"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/sr/firefox-48.0b7.tar.bz2"; locale = "sr"; arch = "linux-i686"; sha512 = "4f5ae88197d4841cb38da7b0b8c5cc0ac8a228f6d1f6851bfa8782dc4ae91124da25a2235a13f9074d29498ff227602bafeb2a475e1f83f116ae6df26a575f66"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/sr/firefox-48.0b7.tar.bz2"; locale = "sr"; arch = "linux-x86_64"; sha512 = "334695dbd86e2fe674897b23c9144444e984e16c5cb813a980fbc6b025b214aaf344019dddb8612125c26ab1b6da4b9007dcffc1ddf205cbf226d43f536728ce"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/sv-SE/firefox-48.0b7.tar.bz2"; locale = "sv-SE"; arch = "linux-i686"; sha512 = "9bb2a9d07db3f7840e56368edbdaa3760abb2a5e9a266f75ac84ddafe0ab42b582613cce581dd898761ecb869b85ec515a113a79ee1c3470ae48ba261f559c8b"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/sv-SE/firefox-48.0b7.tar.bz2"; locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "3a7dbf64988527a3d1f88fa1840bdf8292cf90ce21b5823aedeb2fb9263a2b7ffd9f89d2709e2a2d208f0c7e70d3819a92c7859cc2c2510a4f0fe8160599d3b4"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ta/firefox-48.0b7.tar.bz2"; locale = "ta"; arch = "linux-i686"; sha512 = "4d6df0bc1dfbb8a0761250fa7bcc3575af66ea0e91e6ed18d340eac96e4ae2c50e1f873c54f10eecc08a0902f3dcb9a9df753d6d9f6a640e7421fa9bf38f884e"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ta/firefox-48.0b7.tar.bz2"; locale = "ta"; arch = "linux-x86_64"; sha512 = "b13dc2570f7c2f5d4a323aabf1448d04550d6356bd43b143c10fdc7e88a97d79d93b8145c3d7230e9f417a147f5884af3217738e5190955ab61459703bfe5954"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/te/firefox-48.0b7.tar.bz2"; locale = "te"; arch = "linux-i686"; sha512 = "b3540cdfe33168c6b77386d3d32dd3a44c3198e9669fac89129549f6240475e657c2e790a38f985e85e20315df0769fdee57c65513c914ebee239f51e7932043"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/te/firefox-48.0b7.tar.bz2"; locale = "te"; arch = "linux-x86_64"; sha512 = "3aa1ea89e62fa74208c5336c99aa6bdd98358852a032e1c90a70a48b6903523d08cc03e62976e10bfae86cfe0b431befd9a33bd62ef1f262d58bd9d5940255fa"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/th/firefox-48.0b7.tar.bz2"; locale = "th"; arch = "linux-i686"; sha512 = "8e2e979f54bef8979367b7bc5b54eafbcf774dd4ec47a65352e8529d76edb6a4ea331fa8dafe82894868f4cd6b269424f06668a46596d099400a980694b03db3"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/th/firefox-48.0b7.tar.bz2"; locale = "th"; arch = "linux-x86_64"; sha512 = "708841b24ad871cef003040a59379dac33b2131bb699ede2146d02b6be7f562057c6713d050e201075341dbbb8a7fb400c6852cb4d1de2064fcd03ecdda6450f"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/tr/firefox-48.0b7.tar.bz2"; locale = "tr"; arch = "linux-i686"; sha512 = "788e91d5af695acfdca1b02eb422efc8ea35652dadffd3b03babe5622c6e8d0ad1dd200a63589329a28eed3e0ca723e838ceafa721c45a86ffcc34aabc462671"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/tr/firefox-48.0b7.tar.bz2"; locale = "tr"; arch = "linux-x86_64"; sha512 = "370fc35b68ec734e9f5544f7cb74cb07d706f3e1c181f25c7e1b6e5fe1f9ee1bd9b289e164792e4a31c9fe7fb098c5114919234cda0583794f8964f14d60c4f3"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/uk/firefox-48.0b7.tar.bz2"; locale = "uk"; arch = "linux-i686"; sha512 = "463da060477f0b9831fce5e00248d841fa7b9ccae1e70fd707966aa09f55b7bd4eb89ee04b41ed6619ce465c86ce84236fafe14268a2b97c482830a2c6f8f77e"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/uk/firefox-48.0b7.tar.bz2"; locale = "uk"; arch = "linux-x86_64"; sha512 = "7a085f96ad6f67092f11ac1605541f1dd39a5ded50a3375e50596e18c76e992a1ec9a648a2ffcf4fefee09a3644d6d5d0abcbb43f5173a1d086f3c38b4ed7ed3"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/uz/firefox-48.0b7.tar.bz2"; locale = "uz"; arch = "linux-i686"; sha512 = "e3458b936fa06aab7ad5fb37c8bb0e3d1391e764382643b9978ded9e175dbe14fd3658f9b0903a0a5a74bb1aa1d56340fef37f19ca9ed92d3ba3ed28174c2cd2"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/uz/firefox-48.0b7.tar.bz2"; locale = "uz"; arch = "linux-x86_64"; sha512 = "2899fc4bd5b40996aebd0c67627ddd40bd9c3778001afc23a7d4a232a12ababf4504568594aab045eddf2a1ad71e026bbc832b5ddd265132c74325eb84523a82"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/vi/firefox-48.0b7.tar.bz2"; locale = "vi"; arch = "linux-i686"; sha512 = "c8cbd21b1ec2962e30a525bf7d1f45f449aa80448f3c8cedf2ffd54b2f7e1e07d8f0ceb2c5fdb3a9bd7e2df8fae0b14c65d0d84fd60f6cece8ececec7df468a1"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/vi/firefox-48.0b7.tar.bz2"; locale = "vi"; arch = "linux-x86_64"; sha512 = "86fd5cf184aa8b897b37dc0f05bdce5dba64e7b8d7d6fea79d42e7a591a141af7b28e87e15a1a98d828ed259c097005b8ff8f52fa5c33873eed199d5f2a391b3"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/xh/firefox-48.0b7.tar.bz2"; locale = "xh"; arch = "linux-i686"; sha512 = "703a39b4d0fbb522c9b7a2c24780776d804025b659a6bfc1b875924429f05d55f2eb57bc333dfc6b0b0b18bf8b18dabdb7a91ec7696cdefb404cbf0b2afd89b7"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/xh/firefox-48.0b7.tar.bz2"; locale = "xh"; arch = "linux-x86_64"; sha512 = "0551330c8203a93db60f5c4570a03fbd7b63f243eabe2eb0465bb8e3fa6c2389e402b29237fd91f98455f74360c6056d31fc1c1f66c5035c57ff4c8b2500070f"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/zh-CN/firefox-48.0b7.tar.bz2"; locale = "zh-CN"; arch = "linux-i686"; sha512 = "8b9293827007bd0d510ab84e15553f4f396dc058a9871651d63638936fa03cb628ffd31bc2d01dfeee9935ad18976e0941345217e1e161df0ddc7a0e4b527ae6"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/zh-CN/firefox-48.0b7.tar.bz2"; locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "ecdb91365c00090388b0d0e0b9bf7fc327b6d142c3671fa96e626a744852ee838220efcbcdc57a6fe2f17d8b3a3b57fc3644b30d965a0a5c118cab421755dd05"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/zh-TW/firefox-48.0b7.tar.bz2"; locale = "zh-TW"; arch = "linux-i686"; sha512 = "9f65780b2952210ba613767fb885dd77af3e96596e2d7833902318ac7508c98172abb2a42d3c33c7bdb63826379f039ee50f0df3436c122a4bc794d4e9fd3a20"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/zh-TW/firefox-48.0b7.tar.bz2"; locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "a915d396e093f2d87f2ee6cfe20f3c26fb6c524968fee0c8d1cbbf1e53a6cdec86921b6e2f252ca3a8dc13bbc8617e97d8d6e883973364e68be70c409bf1b8ad"; }
];
}
diff --git a/pkgs/applications/networking/browsers/firefox-bin/default.nix b/pkgs/applications/networking/browsers/firefox-bin/default.nix
index 26030e33e48..88d9a0ccb96 100644
--- a/pkgs/applications/networking/browsers/firefox-bin/default.nix
+++ b/pkgs/applications/networking/browsers/firefox-bin/default.nix
@@ -35,21 +35,13 @@
, libheimdal
, libpulseaudio
, systemd
-, channel ? "stable"
+, generated ? import ./sources.nix
}:
assert stdenv.isLinux;
let
- generated = if channel == "stable" then (import ./sources.nix)
- else if channel == "beta" then (import ./beta_sources.nix)
- else if channel == "developer" then { version = "49.0a2"; sources = [
- { locale = "en-US"; arch = "linux-i686"; sha512 = "45dad182bf7a4e753c1be6b8f966393a06531e7b5530238d20cb67b26324e8f5d0eeec983a0855418f31187d3ae508c28810ab86269848b4e48ab2ca3b5d21e7"; }
- { locale = "en-US"; arch = "linux-x86_64"; sha512 = "cfcbfc633b51612a62267c8a1afc25af212eb832d1fa876a1ffd82421e9378f96b3ac1488446f804518290abd99c21c9f10e4d0e0f699432aeb74b63305d7edc"; }
- ]; }
- else builtins.abort "Wrong channel! Channel must be one of `stable`, `beta` or `developer`";
-
inherit (generated) version sources;
arch = if stdenv.system == "i686-linux"
@@ -73,12 +65,7 @@ in
stdenv.mkDerivation {
name = "firefox-bin-unwrapped-${version}";
- src = fetchurl {
- url = if channel == "developer"
- then "http://download-installer.cdn.mozilla.net/pub/firefox/nightly/latest-mozilla-aurora/firefox-${version}.${source.locale}.${source.arch}.tar.bz2"
- else "http://download-installer.cdn.mozilla.net/pub/firefox/releases/${version}/${source.arch}/${source.locale}/firefox-${version}.tar.bz2";
- inherit (source) sha512;
- };
+ src = fetchurl { inherit (source) url sha512; };
phases = "unpackPhase installPhase";
diff --git a/pkgs/applications/networking/browsers/firefox-bin/generate_sources.rb b/pkgs/applications/networking/browsers/firefox-bin/generate_sources.rb
index 03acf17e426..d049363f2cf 100644
--- a/pkgs/applications/networking/browsers/firefox-bin/generate_sources.rb
+++ b/pkgs/applications/networking/browsers/firefox-bin/generate_sources.rb
@@ -10,7 +10,7 @@ version =
ARGV[0]
end
-base_path = "http://archive.mozilla.org/pub/firefox/releases"
+base_path = "http://download-installer.cdn.mozilla.net/pub/firefox/releases"
Source = Struct.new(:hash, :arch, :locale, :filename)
@@ -39,7 +39,7 @@ puts(<<"EOH")
EOH
sources.each do |source|
- puts(%Q| { locale = "#{source.locale}"; arch = "#{source.arch}"; sha512 = "#{source.hash}"; }|)
+ puts(%Q| { url = "#{base_path}/#{version}/#{source.arch}/#{source.locale}/firefox-#{version}.tar.bz2"; locale = "#{source.locale}"; arch = "#{source.arch}"; sha512 = "#{source.hash}"; }|)
end
puts(<<'EOF')
diff --git a/pkgs/applications/networking/browsers/firefox-bin/sources.nix b/pkgs/applications/networking/browsers/firefox-bin/sources.nix
index 337e6573309..90749b914f1 100644
--- a/pkgs/applications/networking/browsers/firefox-bin/sources.nix
+++ b/pkgs/applications/networking/browsers/firefox-bin/sources.nix
@@ -6,187 +6,187 @@
{
version = "47.0.1";
sources = [
- { locale = "ach"; arch = "linux-i686"; sha512 = "a5391e45d1e59a7c14d8d421286033e3e760bf2b4afddfec3d1767b2ebc957b053c39f17f8185a6c9ca2542c76f6c9612d95d474c01bd5ecc62e5d4f4e43e8df"; }
- { locale = "ach"; arch = "linux-x86_64"; sha512 = "48681328033b694adfc6149bd965a3dff90ef014db6f65641ddd3d79ba7901604623735555bad024dc2425f226c65e332a0875d6b18fe1c06b18a1e407b70294"; }
- { locale = "af"; arch = "linux-i686"; sha512 = "7757ba99ce9991f67a45d9a19615a93c0a1bf0e35d35c5fe653f04d47c068054c8d91327641a48cd20fb9531cd1e842066c0e6f2dd8b23bff216a9fc727ec84d"; }
- { locale = "af"; arch = "linux-x86_64"; sha512 = "7e3d70da29aeb5fc81f5e6dc52a4b8f831813f8c025b1a105df631cc5b675905c82dae842459ad30c5257b74bd5654e9aec5dcfcdee93eb42443c45cda81138e"; }
- { locale = "an"; arch = "linux-i686"; sha512 = "1051e1e3a6c25ba6b3aa4ce5adfdc60bcb3c612f3facd5edb702385ea8c0837cc53e95b064a424e0c055a56a11f3a54a7ba37e2ef35045c8cbb834aaec0f6327"; }
- { locale = "an"; arch = "linux-x86_64"; sha512 = "27fb75ce402c0d47f8542d3d6d6992587e6ea0caaba2249e763f0f9c4f1d233b37a4b87ebb7e730d16704c7d2abab690660e409e721850875fc09deb0c433252"; }
- { locale = "ar"; arch = "linux-i686"; sha512 = "296e23fff265bcc08ec0f81608d50428181163d216fd896c80a1a8c31e95f243112aeedf3bbd96b1efbaa1d6d576a9bfc75e5fe8df434cbb74bb9576f7d90a83"; }
- { locale = "ar"; arch = "linux-x86_64"; sha512 = "15f0e7cbf5a98ffa9d2d7befcb11938b76194dff29b1d93ddcbb8f5c655ef33659534874a72aea18f98af06e5fa4392aee5412582ef43292d70603dff2c42c60"; }
- { locale = "as"; arch = "linux-i686"; sha512 = "67883c8cb7ffb6c05288b316b2aa5bc3274372dd82ab4c771fcf1e5a968e550d12c89027440704d8479a906beeef24a18ca72ad243628a5ece45918ed990c793"; }
- { locale = "as"; arch = "linux-x86_64"; sha512 = "f7718b0dc9bcbfd109591f87263d7791dcd7612b0312d0bf93e68b1f2014d3732dc6740c57a8e64dfc1af7946da14dde617945e38842eb19cfe39376cb12ad44"; }
- { locale = "ast"; arch = "linux-i686"; sha512 = "f29b883932752bfa947c48f7c1ff6084b1cf215ea84cf63beaea808702b0b90f50e85aa4cefa4d2c1234b0d366c8f6e3d8fdf7a0f92d432cba790adab6d24174"; }
- { locale = "ast"; arch = "linux-x86_64"; sha512 = "8b656c6b08640c125b94f90e1dc8259c90af2e764cee73b02b9dc3c0246b3195906d9208bc2a6b3ca31091d8cdfca8338fa6c489b7caa5685a23133e98847a39"; }
- { locale = "az"; arch = "linux-i686"; sha512 = "5ee1247e37964274bbea8021c8e4e5116fedca95712fbd91d709c5c580bd1618c6319cae73278b2f0ba82031e94bd3fb382d2b4dcfc9a5d7ad47ecd80f4fca43"; }
- { locale = "az"; arch = "linux-x86_64"; sha512 = "c369046c29dd0dfcf40e69e1f5b5a63423833a376d2b143d3fbf2ee1e23dedb3baf24843ba1178bda94b86f357724898a147d4adfac1e469cbf44166d7ffd16c"; }
- { locale = "be"; arch = "linux-i686"; sha512 = "f8a1ab05b8d25a7a30e755a551f0851a308ba0720180685f6946a510363988717f8274ac2c8ef826c60232a62c394b86829d289e7d74e24b7656b55238129b15"; }
- { locale = "be"; arch = "linux-x86_64"; sha512 = "df05271371de5fa25ec11164eaac0b253bc892749d421a6ca730dfeceb4ef89492c42ce83a87eccbe91cb03ab001bf0a1d9a20a7296b69841cab8c6b5d2acc36"; }
- { locale = "bg"; arch = "linux-i686"; sha512 = "80644b86f9296b708e74843a51f81d368e3508f0f2f74de1a998d30a15f6e3af08ffd70dcc5c79adb76c03be9ff4713fc8403b8433cbc33ca3493941c4fb2fe0"; }
- { locale = "bg"; arch = "linux-x86_64"; sha512 = "0e6cdc5b3cc706031c95a550b0c800c9e8e2d7bf241010c22f0872eca4bab018a5f0d4a94abb4f8291c279476700f2101a69ac0c57ae79994fba38b88b00fddb"; }
- { locale = "bn-BD"; arch = "linux-i686"; sha512 = "4c697f1dcd68634e2ab712d4f2415e57cf8be0017fff3602223d8af19a1f3a5c973489d13951baaab95924fad42212a485fdff622d2b559be36e246c8a847b67"; }
- { locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "1931035a9d92dd9246a00b32443e282dc405096407a4feff7856125b7ee156840114c9be0dd58a020c250fa54c4ccb22052d2be291eeec9b5f76303fdf6c4cc5"; }
- { locale = "bn-IN"; arch = "linux-i686"; sha512 = "fbab6f7e4205c803a50990624d58aa80cfd3aa76fed02cbf9ea390f4ecdcc1a97bda9b51791cec49f2a7e1010109d5f81a1c9b6ac224f1f70df49407df5f7386"; }
- { locale = "bn-IN"; arch = "linux-x86_64"; sha512 = "c705ec8356796060c6782261086011bc0bf3ac9f08bc821ce2305c9aac11c522abb802a9d9ab7dcb53b0d38468bb6e667d45b187355d769acb43a8b252c4f400"; }
- { locale = "br"; arch = "linux-i686"; sha512 = "c58cd77139a0ae7f3bb8f6f25c40856aca18a831c8f5d6f5d59a45ec615420bd55205093fb66a77591835b0d9493f774b1801a168b9c071086d510a1446cc914"; }
- { locale = "br"; arch = "linux-x86_64"; sha512 = "b6bde26d478eac081007ef43a6d588f70dc4d54afc423b019468dc91bfcb117d3b4989c4cbb4cf77a1a11847a58ec74fbf822b6e6f0ef86fdb0065c301294850"; }
- { locale = "bs"; arch = "linux-i686"; sha512 = "16ee40d079996f42be77167b73645d389045648c9d36b76e34d0398c7b5b6dee54712d109f93d054236ac7076fc3edb06ee82acae40ad22825a23d92d0e2c636"; }
- { locale = "bs"; arch = "linux-x86_64"; sha512 = "ef674f409df5c32fe4584f9de65cc6558d6b3ec78d8a83f5cec829bc1ae09f30399567915e32584334704d12264c2592fecc9e4952beabc8b0d4eb49a7186854"; }
- { locale = "ca"; arch = "linux-i686"; sha512 = "fe522bd836c82cb68bb21ad1c7f36bd9a7af1642abf7c035e2d0999b4cc07c58124e4d8de81344598036159102ee12f22c12e44a8a087e54d6c661c3f453b63e"; }
- { locale = "ca"; arch = "linux-x86_64"; sha512 = "b618da984d35fbde3819d101c103d8d9a5a4de98f0e254c67e894656019ebb6adc56e14a57410a61430d9aa9c1e0a01339b39a5272164af372544f27329a1644"; }
- { locale = "cak"; arch = "linux-i686"; sha512 = "82659aa2fbd091224aef6800b3df1d2e5141b6a295918e4fc4ea09b671184f62c670e3dedd7040b2f167581b0c8a0e8799d861256b273b01b2455d0937722273"; }
- { locale = "cak"; arch = "linux-x86_64"; sha512 = "a507cff511c6337f805a27c0f73548342d2fb2cffa683874d66b054b844b17c354cc6da5c3d15618006c2279099b0cd9172b17d9d4b21a3863b5e395db686b22"; }
- { locale = "cs"; arch = "linux-i686"; sha512 = "9af91acffc2beeb53280a6cbd21656a91a686c03342fad90dd91314c49535acef1a8abac8fe54bcfc250ca8b8f07e3550c890094f3bcee6baece983cec68bd8a"; }
- { locale = "cs"; arch = "linux-x86_64"; sha512 = "c8bea48dc11c021fff9df5ee1a67a6b6e9193ffb2a07e17014d7448254d8a8f4d1512f862ea73bf84dc15b40edbba3fd94cd3d2d18872255bbfc7fa9a7b8ec29"; }
- { locale = "cy"; arch = "linux-i686"; sha512 = "7cc062c3b9b4bbfd0b1f7247f06505ae99458514b607d4d9062836085798bab7ade6c4d1c8903b1b961243c6fb6adb4c4f94780f1194f745cf62d786e2c4f5c6"; }
- { locale = "cy"; arch = "linux-x86_64"; sha512 = "abafa600b941e17f8aea0e778a937f5fb34cbc8803c93e59febc5d9fde6ad3347ba0bc7aa07ab57a61f6b9d6b11d582b987100364aa8401bca539dc6e14584e3"; }
- { locale = "da"; arch = "linux-i686"; sha512 = "d4a9141779f52b78a51b9682b6b44e5ccffdecf5582358ab8a02efe133d9a52023e03c238e106a79e41a8aeaabcc58e0757c1af66837768e7bf4732f26182915"; }
- { locale = "da"; arch = "linux-x86_64"; sha512 = "48f0c48aa273cec9830bf806330c7a630185262838007628acad904a45b3186450a8973938c36db636bdef9042c78ce94a4a456e1682ef561abaabab6ac20863"; }
- { locale = "de"; arch = "linux-i686"; sha512 = "01675b3a8ecfa10da1d101cba36295b226b130e1cdb2c760541cd76c9b21436ae84ca7228e063402b1ca2eb59acadcac7720c9dd47db8b406675fb273af206c6"; }
- { locale = "de"; arch = "linux-x86_64"; sha512 = "6a7ef802a8109f58504b2accb9ef0ee38986f6c8980e0831c30b470f2ee768169557cdbde1a58d7c72996b27596e553185ded476cecdd7114b75d82428b7846e"; }
- { locale = "dsb"; arch = "linux-i686"; sha512 = "55528fca4d276b2b0430949686845e3d7d88975129c9a9846408f758b4f9c8f154425db891e5c1930197e36137d6c15ba29de90dad624bad23090015849d0ab5"; }
- { locale = "dsb"; arch = "linux-x86_64"; sha512 = "f21c14a57f6f973be824340fcd417ce03765d5826114462f62adbd933661bccbfbe90b66935083619c62d48401c511830574ccc373ca2110093b06fad59734ff"; }
- { locale = "el"; arch = "linux-i686"; sha512 = "ac5a808db1ba68286a7199eef33794f7aeeafa26e97a20738fb21be479462bcaeb1e8a7995720d5c7dcaadd0cebe91bb2a3e019873d0cf74f42838f7d5c1a427"; }
- { locale = "el"; arch = "linux-x86_64"; sha512 = "c02e6587d99fc3ca66debe854c778a8b3dbf9b514e6ed74fa15e3035a54643b2bc324ff59f1705c6bd392c37ad1996f80dbabbb57df10aff954ed0ff3f5b01d5"; }
- { locale = "en-GB"; arch = "linux-i686"; sha512 = "c458c70db0408d627a904781adc9af18011f243689f4c5a606c8f1508b4e9417a8df499673c4ba56d32ea77d0f79ab85ff88852f7c518e7fd124e5970615b2f9"; }
- { locale = "en-GB"; arch = "linux-x86_64"; sha512 = "28ccaebc4f7613d7ea8c3b47504923f2d59bdf4afd6e386a67dcb6b6923a9374c1c783e4f904da0b6e0f716ec87a046fc12f3781b732389d1d680745d6955c58"; }
- { locale = "en-US"; arch = "linux-i686"; sha512 = "e1ea34bd0829656c04c471b66d2013fc07cbd5cf40b47bf3a932326cca71f9a502c52d1d5e6dd902d274d307079475b0e75d7ff552fcb2fadf31b2883efba79e"; }
- { locale = "en-US"; arch = "linux-x86_64"; sha512 = "a56b2ad26df424f008d96968a4e6a10406694b33f42d962f19dff1a0bcdf261bca5dd0e5c6f3af32d892c3268da5ebee8ce182090f04f8480d37d232ccd23b9f"; }
- { locale = "en-ZA"; arch = "linux-i686"; sha512 = "d5efc3d4e624f34c81df068f4d6c184cb8a63ad0667695e9ce7099e069b23715eb77cf2004adee41bf355452179959e5ef7450f167f87be70339abb4cf70844a"; }
- { locale = "en-ZA"; arch = "linux-x86_64"; sha512 = "859730132549691b61e936813f0f5fd3e62f3ef6fa9899e3f68bd3178b7438b4c6b49f54f00d4898b568d6abccdd55a0f9fc6c51858e95735fefcc13de460d73"; }
- { locale = "eo"; arch = "linux-i686"; sha512 = "8ef290bf1eb3504ace393b32c2da64d14435edc327c4f13a40cd925efaf7e042a03b6877689b3f2290f85625410a4e48dfb2cf676f138fdba87ffc597b25f4b6"; }
- { locale = "eo"; arch = "linux-x86_64"; sha512 = "7d6167749d2a57a9c12180302a825fee14555e9050b6be3c83dd35183678bc36e10391cedcc864ca0dd96d297997a68627dc4fc1a9cd8922e789dcfa814f18eb"; }
- { locale = "es-AR"; arch = "linux-i686"; sha512 = "07768e3b3ed903f4327881a132f192a65842a376eeca6d10ec0de69fefb4ddf3d7fee2a704bbc8d229c78556478814d9e53940cca9edee58270d9790d6b76998"; }
- { locale = "es-AR"; arch = "linux-x86_64"; sha512 = "cac021af09abd742273dc77291fb1528dd5d6d38cef3a5e36e615fbb9f3908655fdc96ceb93fd131c4879acf24e702a044471136e7575f3b550ebcecd982047e"; }
- { locale = "es-CL"; arch = "linux-i686"; sha512 = "e92ce6bec5b1ee8cf3db0a604eb4cae6245fb6d04a48eec64b6dd55139f3606cbbcb65511e29a3164d6572929b7216afbaa7f034a2191eba100ecb7403740504"; }
- { locale = "es-CL"; arch = "linux-x86_64"; sha512 = "98e57146481a53061c0b30872290ecabc2d14c73805a9461d82aaaf4cf9f301521fd55b01c8159c09a56f52a1580d83c9527986b1390f496d0fbd11227216e7f"; }
- { locale = "es-ES"; arch = "linux-i686"; sha512 = "c44df66e140ea9190112f89aedff9519b6bee18f5e2b54aea19acd233e623c299aecf134cdba70d366fcaf6b7795d220052ff75409c7a04394a7aa02d9ea708e"; }
- { locale = "es-ES"; arch = "linux-x86_64"; sha512 = "c2d70bc5a304df7b2484c8fb2b374f8e31a69049eb223a53dbd0e4b51e4ccce907efb1674eb637370ce7c3947ba5c09e65f433d10e0f328b80d482f3de9cae12"; }
- { locale = "es-MX"; arch = "linux-i686"; sha512 = "96dcb75cffeb85b85f092e295e38ee55c272714c40609ca90cfaac5fa0cfdb3efe8e993319ee690b4a7938c42346bf39f063ab1f3db606e743c1e4720de5a93f"; }
- { locale = "es-MX"; arch = "linux-x86_64"; sha512 = "60b50d6726b2e1985564bc02263eb88c9b4c1bb39e6d19812ecc6751d6ad223ba04f65a7755a946fb15dceab90628b057bda89c55fdd4972604586f52c5a4b1c"; }
- { locale = "et"; arch = "linux-i686"; sha512 = "0a4bef2277f729c93db413b68f8263eb356f7b3278880574b8ebe010e2db9067b803967e1f0d6912f128a9ad5ef204466f52ae277f3addfb8fe9ac377c3b8a3a"; }
- { locale = "et"; arch = "linux-x86_64"; sha512 = "ed1bd4fd67262958601f1107edc589bb28e9b7f9faf0edebdcaf0c07ec6007f527a9eab434582a65271a8f68edac8178601da54eab9398f48b31126657a21b0b"; }
- { locale = "eu"; arch = "linux-i686"; sha512 = "8c5c9406345e2a1fca3544aeb742dc0d254c804d887e3614613280c050a63b69320d4488b017ee16b0a2a07bea862e8b245baf7edc9df65689d509986f3c5958"; }
- { locale = "eu"; arch = "linux-x86_64"; sha512 = "d8f7004e24033f377391b577c549b66f73cf0e899ce5f580eaccd07713ec03b4362db7b222ce6345d113641d3e6a951302939bbb155c47ec0fa46a201a631427"; }
- { locale = "fa"; arch = "linux-i686"; sha512 = "f4e02737e20b6ffd3bc2b3a5e5fa59fc80a8e37dc8459ad4a6b99e7621a4d3f360884915f7136dc201830efe371de37977ef3e27f34f84e2cb734c1fff8f6e36"; }
- { locale = "fa"; arch = "linux-x86_64"; sha512 = "8f624b066faa39341b750dbb702dd60ee6ad75b3850c659dac2e21969ebed1f792423e9fb0a9cae7fc456943020f9a0155af5d7c596433eedaaa9990ce07b7d4"; }
- { locale = "ff"; arch = "linux-i686"; sha512 = "22a2c5376b1e8d770659475085d98ac1f1020cd816ff3ec6ccfcd68f2484b1b0dc25bb84ca52f4ad27144f4da356ce5e7fd54411d12ae7c852064509470d5828"; }
- { locale = "ff"; arch = "linux-x86_64"; sha512 = "bcb3dabc250045b8ad444219055fd9d14902296ef3f9c320bec1bef940f84eeb0d4a50249805188ae96ed0288a70f0216350ee79191beba49aeba890ae515b41"; }
- { locale = "fi"; arch = "linux-i686"; sha512 = "0c505a0e1d3030038b61ea159eece3892bcc7d947b6d7010c0be8791525c9d91ad1170d4cb45260584c93a78a4bc831b7acd9f28e95ae62e5b96b31745dcbe50"; }
- { locale = "fi"; arch = "linux-x86_64"; sha512 = "f347cde005c6b61366c633db5a8cbc5260dfa0d68230a938d847e3f80bff2f1bed09dddded7b1728f4ef9525610ecd046743f9e71eefb467943fe6b72ed198ca"; }
- { locale = "fr"; arch = "linux-i686"; sha512 = "8fb8ea2eab82740657a6b822b330fa0c289c31ad900683b4ad07b1e9b0c6c4e14f50af39d6d0f787642010628800b0a99b5ab0c4cad62e4a579390509b1ddd13"; }
- { locale = "fr"; arch = "linux-x86_64"; sha512 = "ae79c5b7f9f8305c3631f4f913baa341a9beaa7a2ee5df1c6c1826030c21bf22b92095ee579affb8911110bf3bcc359793c0beca18d4c32b1fcc1f3d1dbcc4b9"; }
- { locale = "fy-NL"; arch = "linux-i686"; sha512 = "1c57d02fdc33ff53de48ed9aa9e89ecd5a56d35b432d5651e71bbfbd5f9dfd18aeaf14d10b881f72df871afd00a12b31ff05cf9d5c5a55cd44a92c7a0156523d"; }
- { locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "f30f59d630c5d289b61dc7440f7bbb976eb16732370f827365a477090cdf9f2859f39afb7ff9d9be7e8a022f181f2aeb7a3005c00f4c14e6505a28db7ae48a9a"; }
- { locale = "ga-IE"; arch = "linux-i686"; sha512 = "739d5feec4bffee67876227f6783d35675f4c0d168b7abbe5f97b6e8edce7fe4b8f04f8240087f7f208db4180f3417997b661c93ebe046decff3f4f4fecac839"; }
- { locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "cb4344df6e07db839ce8c9fffd1b7b310c8108b5218cea3602972806c1a40f56bf1355ede4cb3595f54179b16e3470e25bfbddc8e39d726c7d6c1e99d128ca8b"; }
- { locale = "gd"; arch = "linux-i686"; sha512 = "91004d62bb5f1f6a1d65b35fee9e594d21d9877669e042cb4c9a834b01b35797363e1433a9ce5a8d0a9f64c8b256da6a6d09fa3342b74b7c2af8ce8afb3e4e56"; }
- { locale = "gd"; arch = "linux-x86_64"; sha512 = "f04034cafed25c34713ffe4109e53b107b8fe81321c0c0c035f54ff0ce67ac393b42db7598edc658d3f026e447f9ff1c4d1cfdedd31066eefb6019117248e4c0"; }
- { locale = "gl"; arch = "linux-i686"; sha512 = "107bdebb92ce86f39cdc45d6bb24a9c4d104820eca6bb77950693ccbd55e7f8a2f143fc3a5bbb1bfda161e7a33c8f6d8d2686b09da1497215defbca2b4e4e109"; }
- { locale = "gl"; arch = "linux-x86_64"; sha512 = "c841af5c73343475150b5404b4b54396bda845aa5b231a742aa17ecb7fdbbc5cd4123efc3ac2ede1c24f485d04bd87e8bf7cb00b7135bef236ce56afa0c27a19"; }
- { locale = "gn"; arch = "linux-i686"; sha512 = "20954e218967772488bd895ebf069522c3f4c56ebfa09a7c8efb740158cb95b6be76cee8f4d7f2c1c6c505ca9071a0ddc1914784a54f669d337d5196f18b6f4a"; }
- { locale = "gn"; arch = "linux-x86_64"; sha512 = "aaed68f13e326792671669883b452b65556998ed757ed5b745c6453d6bae8865a06f137709de37ace2688e2e09f1b96ecf2e5b6374b4170d29100c6f83ce22ce"; }
- { locale = "gu-IN"; arch = "linux-i686"; sha512 = "205093ecc0dfcddb2b90e05b1a17f75805a4597bbfad214d67442fd0d952f765b031ba63a3c399ba9c1c46e4d05b3cf786f01c46eb8990240a16431964c93a94"; }
- { locale = "gu-IN"; arch = "linux-x86_64"; sha512 = "a84ec5015f6922a22a284eaca985010586067370d818e77d401b58782f86dcf2f534f1ef021719c170f1f502525ce25c94760d3b75481c15fade3c25b969b563"; }
- { locale = "he"; arch = "linux-i686"; sha512 = "5727fc4699316c4b34be1c2596c5cc20d5fc9d2062b1e106087cdb34b788fe3ebbc098acc8c690bc83c9d9be59ac3b3977fd9116d766ce908aa088660fe34771"; }
- { locale = "he"; arch = "linux-x86_64"; sha512 = "c399969bc24b10ca1c1eff17d3414f214cfe3e5b73282942ead5b2ba4d2c58b74d665b13031ccf42956cd45f0fc7b206dd2f9674103c1e3a8861a33577b5caa7"; }
- { locale = "hi-IN"; arch = "linux-i686"; sha512 = "f014c47a143d425aa3452be2bbed199a8b5e75d278c35fa86bb6bcac40bfb32bdee22d030386c881c818b465451b35c81f97bf29f9ccfbea606d52c822057899"; }
- { locale = "hi-IN"; arch = "linux-x86_64"; sha512 = "0e5dc0970680886dc02448d7118b6864092699fe44f3276ca17cba160aee59418f8e39338247897b118de0e1fb7634cf725ddc6a34a8b6f002b7a78d92deffb0"; }
- { locale = "hr"; arch = "linux-i686"; sha512 = "a9af43f6cf6f493f728b8942d3a600f3cb3a23eb0818d284ddabb8766f7d274aa0a232f9925b65625bb56d00864946dc6b0567491cbecdd6a7cf626b6964d9b1"; }
- { locale = "hr"; arch = "linux-x86_64"; sha512 = "d97951148ca0ba80a67020f323859ea3f508e40906ecfd18f7a8fbe7a2bc85ea4635945b5c6063e1d5d18456471604075e6767da9a4fda6a09dd3e992a7d3a88"; }
- { locale = "hsb"; arch = "linux-i686"; sha512 = "2f7adccdc894f345e861b29a6d65909b1cde2649c69ec9223f784e659e8e3f4668f815b3683fe691de0749483167d26885a0199bee88e8524377c7eee3afbe99"; }
- { locale = "hsb"; arch = "linux-x86_64"; sha512 = "70e39341ede01e18c653a0eb56b48e31c73ee3df54ebc11bcd220e2d8e19c67c3e248095c4d070b12a0eac5c24acf5a8ad83069673dcaa684229f4706103685e"; }
- { locale = "hu"; arch = "linux-i686"; sha512 = "1fc01c6dd873e2194e6196b1bdb0246e95d0b0520f558b21a2052251d2a5202141c09410c4631b3f025479169d8f68411c2a24f32825261fa8d65696fc7cbe0f"; }
- { locale = "hu"; arch = "linux-x86_64"; sha512 = "b4509d671d7eac055812add85ae571f52c90b4eeb172d21c22ce844c70192ba235f37a732e94a0edd6794ecd5a8caa5e8bb6ce05a26d3705902d3628420af871"; }
- { locale = "hy-AM"; arch = "linux-i686"; sha512 = "a2b7cd1ec95a0b5eb064e816cfcfc6a74a92806772592947267c4b266bf7ce77d1beb17a7c25b905251cf497ca8dfabf16bca367cf6d9e9e635182f306bd71ca"; }
- { locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "9997ca45051e609e289d7730caf1254adacefbf8e618a165750d5bb7ff7933d014781af76501296c89a4236fd3ac477df6e6be5a5dd45f214983c851a856ce5a"; }
- { locale = "id"; arch = "linux-i686"; sha512 = "bda5a7c599885bef966daa35a3f34297e38534e32967142ff9cc720a34c7aa9730e3f24623c240637838eca03f78f9b2ee30af3ac3dc8ba48f9664c56b64c789"; }
- { locale = "id"; arch = "linux-x86_64"; sha512 = "97d16c5b4382c7fc6ccee416d671e47d345834a44ab111aa486a41c756b25eb894628d0128e8454fc15f38937bc40436b12e60752ce7b7c1fe35a230abaca337"; }
- { locale = "is"; arch = "linux-i686"; sha512 = "576b904fb836ea735f652c6b9c91891dee164edd3523c5f99d68cccb4bd6689c29e4c579b6cc44e699a8900101fb8d223f9e0b0860f71a2814ae0ee2c70609e5"; }
- { locale = "is"; arch = "linux-x86_64"; sha512 = "592d65977c34c6133f5745a85722f822efa5956bafc6e880954a0b318fa59712c754e882768755fc08f5e08a1c99493c0b30b4219c46169ba663258e3fd3f3fc"; }
- { locale = "it"; arch = "linux-i686"; sha512 = "4d749e1b5d8432df789f29a247ab48a688d4aa16fb25dcf7209783c6036bfccb9ff8ac32dcd09dab1708f71896fa034576d6048eef077d1a6c0a3dc58d3cdb26"; }
- { locale = "it"; arch = "linux-x86_64"; sha512 = "087c456d691225d9aef54b2013af69cc7bf2501f83060179112e9c40c1d6762202f68e6329a936df091a1ae6aa5f20bcc96a4c8b0451b71270426bddfb45d15c"; }
- { locale = "ja"; arch = "linux-i686"; sha512 = "cb4b0bbff7d322f2f04fdaa50b365d4e0a1ff1786206539cd124870ebd69a9305b88d39b9fbed41c64ddbe68098e02c51a0dc665262424f8eff882b1497ea1fd"; }
- { locale = "ja"; arch = "linux-x86_64"; sha512 = "b6c9b419a3e746957f93a4bdba9043adc3911b6f76e1eea2e4e31e77e9aa9057ce720205db4af5586a90df4d6b774b90829f1d7689e77c560c50ccae755400b9"; }
- { locale = "kk"; arch = "linux-i686"; sha512 = "ae7711d86ce8180997f44f9309a63a436bd8b70ed0dccda773c34ba816daae99b3b1ae913ee87f4d1f9a4e8f016aea670e89652823df16b5e8414bb58ac28225"; }
- { locale = "kk"; arch = "linux-x86_64"; sha512 = "49fb6b5ab6aa12535373927519bf36099da6fab7c2e1bcd6f5ce73d91679f58e81eddd3556df65b305fc2d1cd439cf6de081980fa98ff79df16b620ed41290fd"; }
- { locale = "km"; arch = "linux-i686"; sha512 = "29dd1808c1430c01dbb395d5e5a833bfbde85453278d4efd32f1afa1eac19a651c0c3a42eb4ba3402f56a8492e80746d753986c0ec0f1a6dc0e5eb6778b5c6ae"; }
- { locale = "km"; arch = "linux-x86_64"; sha512 = "f53966aed30b57a601152f09a26414e11bff4ff31683989eb1e47546eaa32fce8cbb6511043f9753cae076d23d6f2172c2b224313cf5f3262f109b49119175e5"; }
- { locale = "kn"; arch = "linux-i686"; sha512 = "17dc37df2b3d5a87bbadc4d5c80d4ddff03752b7a80f5c76171ce9f0bc4b8926964b6315cd4f0c6c9dd3142cec56b464503bde34ec3c69e2b8a66ddcae72b0ec"; }
- { locale = "kn"; arch = "linux-x86_64"; sha512 = "2af5ac5c254bd0ed2d08656a6fee7966d73aa89973cfad67fd18d7d88fd1f18a2b882de7854af46a3ebc6acba4cceacc06942db7ae495faa2c6ef21c65e94158"; }
- { locale = "ko"; arch = "linux-i686"; sha512 = "415fc260f3dcc2ede6c43194501d9522fdfb106f7c86e5d8f5929df6615c73023fffc3efd190deb68bf08bb2a0d4ab34f7605e222301c8350b980f2dbc289c8a"; }
- { locale = "ko"; arch = "linux-x86_64"; sha512 = "c991c0b9a89b618ac046882b929fd7e3689e19dd96edf4535b25f9172b6baaa801a4490ae4fd35e82ca3c776afab74a0a09b993f8ae8c2a603d210f2cf248f73"; }
- { locale = "lij"; arch = "linux-i686"; sha512 = "3cd367654397d14b782cea4ef8c96f1f6938f011576a8dba92dd4ca832ca3c8682f3e0e161a4288b112fca550d556080d0ece5a79e4c4f6ec99a9298feb6fa12"; }
- { locale = "lij"; arch = "linux-x86_64"; sha512 = "2d7475c544df807a956feb9361f889ba0f5e43dc52a9e1dc9c469d86e97f344b4f2995e3fa149a77662969f3acbcc998f430973b2b9d28b23c82c5058b4a9dfc"; }
- { locale = "lt"; arch = "linux-i686"; sha512 = "35c8a452ca845576739d5faa9dab6f3c34dcecf9ce95870f68699836f3534b4807c91fbe80007950abbbca662e6d01b406205b3e4cdf4d33e0717ea5d6f57006"; }
- { locale = "lt"; arch = "linux-x86_64"; sha512 = "8791df09d841d5ddabd552d0fb0dc7e9446d23092bae1010d92bc3b056a9ad4a6dad01c5d8db531a273945eaaf4c30c922cd03d7b17e1b6be263e0bcb91b8384"; }
- { locale = "lv"; arch = "linux-i686"; sha512 = "22b865a344a46096c53a72ff6b1402d00808bb3b49ecabe6f4115ea60e40e522d64afc701648772616fcb784a963bc6d5bb3f89517d7f8407f22fa82d81bad98"; }
- { locale = "lv"; arch = "linux-x86_64"; sha512 = "3c66af306b1a8d0a684c12511d95353c0bdda0bea981ce4e577c928be03e12b582b19dcaccdccec551b3cb0fb716323b1079180aa7a8f1204f5e4b5a84b72831"; }
- { locale = "mai"; arch = "linux-i686"; sha512 = "780fe423a3cd56a7452df32679ee07a0e328b21cadc78faa2721cec59185c4a4467aeeb75e9237cc86d38dfa2cd71530f02156c4fb9515582ca564dd53d47543"; }
- { locale = "mai"; arch = "linux-x86_64"; sha512 = "d27218b59edf004dc57cfa9ffd70dbeb59b7d3c0871b00388a56b505629fd82ddd6f6e0147f5b4c67a8ad72a674e384b66ba2f9455fa9ff218c9ada4b27d1d7d"; }
- { locale = "mk"; arch = "linux-i686"; sha512 = "da7ae3718f3c69ec9b62aaaea93951375d82d8d02818d6855fa9f085a64b69c155a1336585d786ae2d33d657110b787f62909dc9e4d54c62d2ea94d2fa8fee3e"; }
- { locale = "mk"; arch = "linux-x86_64"; sha512 = "95136f8bf86014a63bcbf4a5cfbd778c4c7e6a84618aa0f6a6948bb597638569b3702e0569b50c5dc9b46339e723377faea8964b921ae9802043fb7983a2c4e4"; }
- { locale = "ml"; arch = "linux-i686"; sha512 = "56743acb54283715fb2a910caa85dda61f7e2c1c5e012aa222dc07e3b522572500056fddf990b7ef03a175ff8901fb11b113bcad5c2adf4a6e6e032644ccca2f"; }
- { locale = "ml"; arch = "linux-x86_64"; sha512 = "134f35f5f6616c2a7eec48f637277fc02e23b57bf38eccff9777bb08c70a41fe79967b69567f75f9c8bcbad4b22d2ddaf16bec98e399c4b8ca9db9b70e99ef58"; }
- { locale = "mr"; arch = "linux-i686"; sha512 = "f29de7ae7dba03465baf86f93d778c9faf3055d50295977c0207c7e4daae6f7ad733ed38e1323263cebe4f737d9a1616024333a97139156470de1a9fe3c16276"; }
- { locale = "mr"; arch = "linux-x86_64"; sha512 = "731b4f143fd1303ab54ea3f1b6aca6c4f78ce935caae32fed0b8cdcd46c0ade8c8977131a3be786ea929a7d284c3d45d34851a0d81242761f722f0bceb126957"; }
- { locale = "ms"; arch = "linux-i686"; sha512 = "d372bac105f2012b189efedc449c7c183d0daf64cd7a40822ef9d685ce4a1550ca9699620440dd198b13f95513a577766e9f1a8e88b212492831bf7ffcac7e0a"; }
- { locale = "ms"; arch = "linux-x86_64"; sha512 = "1287f36a742fa834d5f31e6bc2f6d3651e54f2bc8845a1f0f647e9a9e38ba66c58138961185897c8832107cffff06167a35dc3ee1f0ff830f997f65fb0854a63"; }
- { locale = "nb-NO"; arch = "linux-i686"; sha512 = "ac3e46080e188e56a6b67ff77aeffdba7982d7c3aa4156a6f2781ef6b8fe63cac50d678e5afc91aca4ad16c4384d2b2727f74ddc4083da91a1e3590ac98ec9d2"; }
- { locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "dca52381e45b5c2d89f590971d830010a9ec1a2a513fe655ee93c3fbd980adcea78787701595a95402bdb660c2f3e0a489e001deba13798337493655798c713a"; }
- { locale = "nl"; arch = "linux-i686"; sha512 = "6ec01f8eb18384aadb5715a996c8410ffa94b801ee1f1b1ab43bdeb492e179e781e8b85acbeff4a25cb4fef847ce3e2335968458d9f6e47d046083264e91f6f7"; }
- { locale = "nl"; arch = "linux-x86_64"; sha512 = "7d5840518312dd167d914a8f7fa5670fe17f9a6fc39ccd128e30f689005b35bd352d0602993713c3d05288f2b036829be8e08398d536e4aebf2341ae2290e633"; }
- { locale = "nn-NO"; arch = "linux-i686"; sha512 = "a185f7592649a91214363cf2a0474b5895f33342c98cd4bdc48fafb0cc76310b2ba4f46575970d723c76b2ecfeba8e2b39d9671e6059a15bcb2565258096156c"; }
- { locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "7f8e7277bcbfbe5f40c161f1ebbeed86159c2b6205a5ea55cd8b6253fa6742bcfede11d4de6c1aba36e2b1e98f9c9a7b8e26f9aa35e1eaadc1d011636d429be3"; }
- { locale = "or"; arch = "linux-i686"; sha512 = "a543a7d3f4e24364be7e4df65a81da82d955d1268a4cbce741ad7ddd5f4e9916573e271f02af1e92b123a4da2c7f312c17f6ce714e3057a1b204484ef12133d8"; }
- { locale = "or"; arch = "linux-x86_64"; sha512 = "7672596470cd8f49f9c4558b05bd637af1650da729bc518681a8cde3ec785358121fa7ef209e123fca4b59df1a63878832bc32d2ff404b5d2a818b60ba10c15e"; }
- { locale = "pa-IN"; arch = "linux-i686"; sha512 = "a99b60ae1eb479e31f838fd41d5de325c418762fdcfa5e0f3bc3d5da8df108d3b64ce5bfac0af09663007becf5327164db8dea0ea7a3876586cc43030a780199"; }
- { locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "f0110b74842f924808f74979061151fec711d10a6005d2da2fbb8d46fa2a25ecd5a2c804e58c10a918efe570d4d67d05578b0245f526e1aede4bbc786e9f304e"; }
- { locale = "pl"; arch = "linux-i686"; sha512 = "7eaa2bad351429d76b476819a1529ed1609388968327382cc13df235a294f2e9fb14295341ff15fe3b2815ffd1c6c8978e2aa104a847fd2cb4adcf2ae3b0b974"; }
- { locale = "pl"; arch = "linux-x86_64"; sha512 = "a40e2c15cff0e7f7bff8a5c0bc4cf39df948a21bd37b34ffc93dd87e1f5256526a25526e457fcfd8d081bc872dc1bec13e67da3cf671b6a16dfa17850be4743c"; }
- { locale = "pt-BR"; arch = "linux-i686"; sha512 = "c9cd96e68fa2e1f73a49e71c287a25be8d45a8ebb56262e02c40ba5869fc58c7fc43a1f6958592bb377e7dd4064d64f5ebcbcb5cd3a9fe0a007c2da665f50a66"; }
- { locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "1184751c1d1a0a9044f8df2d20aee7dfe332dc5f851802ebaf2c5c83fa2bcccfd913cb6e16d2baa449cff1b02aa18f828489914c0741a2ef2a46d54fefecc268"; }
- { locale = "pt-PT"; arch = "linux-i686"; sha512 = "86538057ae91b1297acc11c9bf3f7d24ba1950edead89d4733f7c898cf53e3848054bf391a975f19766b69f4c56f576ca54e4b8da806db7416f3e3d91777c3c3"; }
- { locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "0a480c26e5dfe2bb9b536e122ae32e18a6dac999004493839cb506c1ad615e095c554d296f1a77bfccbbb86b58bcf549db83f7de51d02b68d1eb752b421f23cc"; }
- { locale = "rm"; arch = "linux-i686"; sha512 = "751ffe931cd60296490c7164f49f61f4a51bac5210328a18d02261a07eb607e181b2bab4fa0b59d2df15334152386bf816a984840d2331b7e801171be9c90594"; }
- { locale = "rm"; arch = "linux-x86_64"; sha512 = "3e526c9a1a876e5d2c548c9a68803dd11c04c8214e18eb09c0b1c3fb3833f64c8a3362db8083ac5de81c59268439b53effa3bf1c64807fafc874eb8ed9baf188"; }
- { locale = "ro"; arch = "linux-i686"; sha512 = "73cf6a18deafb7ba93fd60cba3ba0bb0191471f977c41bac11bf2fd6cc6f7fd7cf2ad125ac5cf168ef577d71dfb0e893e182f39be6ad186ddc642d87c40041a5"; }
- { locale = "ro"; arch = "linux-x86_64"; sha512 = "b62c54b8694b4a662c1d336056d404a8d432ba0a3d4f2964b5c5acc0e39b668fd228105e1c4e307bfab1acfa5c3ce223db4229df01866cdbbc7c1ac95e70fe2c"; }
- { locale = "ru"; arch = "linux-i686"; sha512 = "6ebd3b3a1f3613905313129cde7cf113bdd777fd0f600496231ba813a95b04309b25016dd69891d31189a93ccad3f87b9c69d54d6219ad39dd38d1181b1f3102"; }
- { locale = "ru"; arch = "linux-x86_64"; sha512 = "539a22d13587cdcc21b6f76ff24ccfd1df98cbaaacac802aed46ba8f2bfed27cb2f3e5c146cbd2c3559aaff22297e692030b9612041a05a6bfca08f49bf0d2fb"; }
- { locale = "si"; arch = "linux-i686"; sha512 = "bb0d1621f5b9af886fca0ea7cf7fd851d7c22d2d8f279a7b88e9bce98be33ad7b75d6a51ab47ea859802ed39b467815db60409285afaa0bbf4bb1ce6d590eabc"; }
- { locale = "si"; arch = "linux-x86_64"; sha512 = "90337d193df7db41a1384856938bb62212952a80144dcc319a725a9b567ffd4deb7bb7af89b57891d3c17499ff466990e656edf7d0b017b8f4e0370aab445477"; }
- { locale = "sk"; arch = "linux-i686"; sha512 = "23a15e6ad5ce9b03c218be4e26e603a412de4d870d5f64b599ae511bfc66bf2cf04613cc06fc1a054d06b80435e284456c0b08e33f34d8c9482f5ca23da6ae62"; }
- { locale = "sk"; arch = "linux-x86_64"; sha512 = "a86cbed60f65e4ebb36c614d846fbb2515945112fd4f2482c3a63b49a62c3acb310f050dcbd57cc76a808c049eefd8f779d6aeea53362dd81798bb8d7177c86a"; }
- { locale = "sl"; arch = "linux-i686"; sha512 = "8ae008f0077081ef40de3bf08c2de294231f41439a83d8a41a485f53e95ba3f4fc6ef03d6ac98e8848c3f3dad290978f1607d8c847f1622bd86b7d38cd0be730"; }
- { locale = "sl"; arch = "linux-x86_64"; sha512 = "34efb560c65329c7f3f6b341cc49ac4952f24e6e9b34e7f5bd45d98618a4d03ac89c6f62580223efd2d37db24a03f76a54381d4162f5430b887122bb56eb49d9"; }
- { locale = "son"; arch = "linux-i686"; sha512 = "d3e5a25fbc4a786239a7ae543fefb7b7e3ecc34192c8326af915f18b9b08436656bf68faa4953a34bdc464e32305baecce800f91ef0152bb4b4a8323ab448f33"; }
- { locale = "son"; arch = "linux-x86_64"; sha512 = "ffee5d1a23e91911fd1dedb5ecf24bfc6b1733fb582e64a5e07d4df4b7afd9a6c502a70ab3af6624b4594f5ddcd81bc8962ede5b693cc035a96a561389f6bfca"; }
- { locale = "sq"; arch = "linux-i686"; sha512 = "1cbaf8c32d1d3205cd85127839eed11b416903960c9e411b9adc71c42ba4add47acddd32a9217bb68f27b90d6765892edf2d356e21235c5bfd5cf69d1ee719f9"; }
- { locale = "sq"; arch = "linux-x86_64"; sha512 = "16d93961a53ecc3e1ae3480be9e34f2a22dec2bdab55dbd35d1ea79ecf2ee48f195380bd52efc7d39529601610793b75daadeeb54dd76c9a3702c786af25acdd"; }
- { locale = "sr"; arch = "linux-i686"; sha512 = "0b2c5234f1787cd972fad398dc270766fbc3015dc1bba29755e5316f207af9f5787d4aa41e96cffd2c9d31c57a5d1896e63fcd04e6235a4a6798469e738fa10d"; }
- { locale = "sr"; arch = "linux-x86_64"; sha512 = "e7c7e7ff7fd81ca86f45997faed7244e4d807c3e5ad7ed66d6feb38c3e9173eaf136bd34af690ce28534f0c531c7f1d11595ec6502dfa42778cc19dee4334c49"; }
- { locale = "sv-SE"; arch = "linux-i686"; sha512 = "dffb94b0ddb4b9d2effba3894b408c9f191f2079dc4b47e214347a235c9bf1adf77e520465691d14a274c3f3344c7f8b7d41965051d506728347e0af1117ad27"; }
- { locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "b601906d28f071c6beb3dbd6b37fa68f50809c9c47c9db69d631127ccc7b784e7d3b278aea6de060b34d83b6c78137da32b77f8e17ed199c3213b89dd9391264"; }
- { locale = "ta"; arch = "linux-i686"; sha512 = "1a496470ef8e0899bfce66b41490f54d4d32776eaf60aca8725c4732512f1d3befb2e1fc3b942ebea95fe2359509c43d41649e5f90498264b8e02a3352244260"; }
- { locale = "ta"; arch = "linux-x86_64"; sha512 = "00e6dbc43ad3c77693903fe534722094826637698df691b266eb801b27cd5e63502c21ca3e34ff939a7645a1f75d36fce6154626019eb96bc73cc39ab845c952"; }
- { locale = "te"; arch = "linux-i686"; sha512 = "70ed539571cadf241f819b68ff24829db32f56287aadab31656fdf66c0ed94ccc6cc11b6cef6e2e963203cda47af2c6032db6e5689c37aaaf495b1e4fa970207"; }
- { locale = "te"; arch = "linux-x86_64"; sha512 = "d491acd4635ab9b22f76531740c7ee7a85832678aef9ed646e75f56755c02538440adeea71e9ca5a7a5e11f3f2f6941c3c4c1e47380547179f63baaf6c20ad07"; }
- { locale = "th"; arch = "linux-i686"; sha512 = "0414f74c6266fc204f2741b6860f7919c957364bd56ccc2cec5ef4b9c4be812c554ab584e6ce53387e6b7a18ad02991a44d9507a16da59a4aabfd44e7fb5b754"; }
- { locale = "th"; arch = "linux-x86_64"; sha512 = "2952cceaecdd4013882150e8158607639e4ab2cffdef563d4fd1a015c41f1eff6c5ac22c0b9301a05ab6f9fef9659d54916275d5a50d97ad43bf69f10da7b3c8"; }
- { locale = "tr"; arch = "linux-i686"; sha512 = "c5c6273bae2b9a46108a433af3a85b5cbbba4cd3154ee124ccc49f46c4a76264836a76d1b2da4b1064e9a913cc9fe461911c53e44f40343c5f780be04da932e5"; }
- { locale = "tr"; arch = "linux-x86_64"; sha512 = "f0b5bef1ea4b948d699a79d902055d5b31afbe5c4f1814d98cadef1ca820ce39212ec009f68d875860a48942e9d797bda88eec4f6ed591dd8b3b260e04170974"; }
- { locale = "uk"; arch = "linux-i686"; sha512 = "3a069ba914716ce122c4a89612988708d811b9350d333aab203dde212527c0e0cc86ec4781e6aa23f40b77f2266f76eca366cf355651870f43e180b97aa25c43"; }
- { locale = "uk"; arch = "linux-x86_64"; sha512 = "db7931aa3f1d150e4b5b8c87b9d069df4a515fb2aa5e250b8f8a1bae0d8fd9a210ae949df056c47e3c88e8faf28f2571311ce2d6f179e3365720b42f1335b546"; }
- { locale = "uz"; arch = "linux-i686"; sha512 = "110a82749e187f39d77f63b16ad515218e5512e5974916e4145e625a40d797e23fdbb5d110a23f061448cfc3d3c597858636c9304e941a34c68368f749c3c900"; }
- { locale = "uz"; arch = "linux-x86_64"; sha512 = "1dbf94cef034449e8d1342822384bf1761dc61748e2d876aec1ac628dd161f92b62da832fe397b2fe4f8a1b82f9adf1c3690f26e07ee3e48c6299f95969533cf"; }
- { locale = "vi"; arch = "linux-i686"; sha512 = "af97e1dcfc9bfbdce95a5cd35025b2540ad928d3238863471116e071a51b354b7818577bc3e7427c513e7b335bc1510605ba3ad1a37221389de7c7fedf6e2103"; }
- { locale = "vi"; arch = "linux-x86_64"; sha512 = "cc938935395e66ef721fdbb8c8b781ef648b5419393ed1687a116a4d9ae12dd18f2edbc8287235504aa6782bbd6a41f9f5dd89c9c712ed4980fb9fa44f46ef38"; }
- { locale = "xh"; arch = "linux-i686"; sha512 = "a76dbac054cdb7f5c194766dc54f215de4cb4cca4aacd7c883e0e3632b9dfc18cc25d7a54788e213bc65c894dd26ca9b863199b55b649133f93da9fed9a58fe4"; }
- { locale = "xh"; arch = "linux-x86_64"; sha512 = "cfd8bbb81637c19464ec34788254740e999c13bc8a64b4289b0e1c64f76d711a5a5a8380995271f309444032739066f06334da2f81b6ca2b2be33ff55d3ff402"; }
- { locale = "zh-CN"; arch = "linux-i686"; sha512 = "d11637b0c28aa1c45b315322ff12392e133aebe21f435564da278b9e301f0c8515ccb721df2bd55c175c48c3e24934837abbba4b84c9fa659b7a58db1da68f04"; }
- { locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "27a06d87f23eaeec170d1ea7f3df636198bfd4787001e178948fe9b8a3f1aafff3be59b9d01ed5b5851902b550601f061e923a4cda3a972f0ac68928cab28577"; }
- { locale = "zh-TW"; arch = "linux-i686"; sha512 = "7c6ef5592b273749ccbf7b37c09984b11722beb7f49d4ed25555b84f0521e0dbac5197c7642ac508a21a1a40c5578dcfb49310858819875cc9407c85426d599a"; }
- { locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "9ccce84a292144f3758190ff2858c077d1e7ec6d49ff5e1efb404b8dfb3bcfebf96eab15d0ec32325e4d96d94f4c6bcc67f4e43dd22af418b822d82a2afaf6f1"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ach/firefox-47.0.1.tar.bz2"; locale = "ach"; arch = "linux-i686"; sha512 = "a5391e45d1e59a7c14d8d421286033e3e760bf2b4afddfec3d1767b2ebc957b053c39f17f8185a6c9ca2542c76f6c9612d95d474c01bd5ecc62e5d4f4e43e8df"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ach/firefox-47.0.1.tar.bz2"; locale = "ach"; arch = "linux-x86_64"; sha512 = "48681328033b694adfc6149bd965a3dff90ef014db6f65641ddd3d79ba7901604623735555bad024dc2425f226c65e332a0875d6b18fe1c06b18a1e407b70294"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/af/firefox-47.0.1.tar.bz2"; locale = "af"; arch = "linux-i686"; sha512 = "7757ba99ce9991f67a45d9a19615a93c0a1bf0e35d35c5fe653f04d47c068054c8d91327641a48cd20fb9531cd1e842066c0e6f2dd8b23bff216a9fc727ec84d"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/af/firefox-47.0.1.tar.bz2"; locale = "af"; arch = "linux-x86_64"; sha512 = "7e3d70da29aeb5fc81f5e6dc52a4b8f831813f8c025b1a105df631cc5b675905c82dae842459ad30c5257b74bd5654e9aec5dcfcdee93eb42443c45cda81138e"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/an/firefox-47.0.1.tar.bz2"; locale = "an"; arch = "linux-i686"; sha512 = "1051e1e3a6c25ba6b3aa4ce5adfdc60bcb3c612f3facd5edb702385ea8c0837cc53e95b064a424e0c055a56a11f3a54a7ba37e2ef35045c8cbb834aaec0f6327"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/an/firefox-47.0.1.tar.bz2"; locale = "an"; arch = "linux-x86_64"; sha512 = "27fb75ce402c0d47f8542d3d6d6992587e6ea0caaba2249e763f0f9c4f1d233b37a4b87ebb7e730d16704c7d2abab690660e409e721850875fc09deb0c433252"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ar/firefox-47.0.1.tar.bz2"; locale = "ar"; arch = "linux-i686"; sha512 = "296e23fff265bcc08ec0f81608d50428181163d216fd896c80a1a8c31e95f243112aeedf3bbd96b1efbaa1d6d576a9bfc75e5fe8df434cbb74bb9576f7d90a83"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ar/firefox-47.0.1.tar.bz2"; locale = "ar"; arch = "linux-x86_64"; sha512 = "15f0e7cbf5a98ffa9d2d7befcb11938b76194dff29b1d93ddcbb8f5c655ef33659534874a72aea18f98af06e5fa4392aee5412582ef43292d70603dff2c42c60"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/as/firefox-47.0.1.tar.bz2"; locale = "as"; arch = "linux-i686"; sha512 = "67883c8cb7ffb6c05288b316b2aa5bc3274372dd82ab4c771fcf1e5a968e550d12c89027440704d8479a906beeef24a18ca72ad243628a5ece45918ed990c793"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/as/firefox-47.0.1.tar.bz2"; locale = "as"; arch = "linux-x86_64"; sha512 = "f7718b0dc9bcbfd109591f87263d7791dcd7612b0312d0bf93e68b1f2014d3732dc6740c57a8e64dfc1af7946da14dde617945e38842eb19cfe39376cb12ad44"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ast/firefox-47.0.1.tar.bz2"; locale = "ast"; arch = "linux-i686"; sha512 = "f29b883932752bfa947c48f7c1ff6084b1cf215ea84cf63beaea808702b0b90f50e85aa4cefa4d2c1234b0d366c8f6e3d8fdf7a0f92d432cba790adab6d24174"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ast/firefox-47.0.1.tar.bz2"; locale = "ast"; arch = "linux-x86_64"; sha512 = "8b656c6b08640c125b94f90e1dc8259c90af2e764cee73b02b9dc3c0246b3195906d9208bc2a6b3ca31091d8cdfca8338fa6c489b7caa5685a23133e98847a39"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/az/firefox-47.0.1.tar.bz2"; locale = "az"; arch = "linux-i686"; sha512 = "5ee1247e37964274bbea8021c8e4e5116fedca95712fbd91d709c5c580bd1618c6319cae73278b2f0ba82031e94bd3fb382d2b4dcfc9a5d7ad47ecd80f4fca43"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/az/firefox-47.0.1.tar.bz2"; locale = "az"; arch = "linux-x86_64"; sha512 = "c369046c29dd0dfcf40e69e1f5b5a63423833a376d2b143d3fbf2ee1e23dedb3baf24843ba1178bda94b86f357724898a147d4adfac1e469cbf44166d7ffd16c"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/be/firefox-47.0.1.tar.bz2"; locale = "be"; arch = "linux-i686"; sha512 = "f8a1ab05b8d25a7a30e755a551f0851a308ba0720180685f6946a510363988717f8274ac2c8ef826c60232a62c394b86829d289e7d74e24b7656b55238129b15"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/be/firefox-47.0.1.tar.bz2"; locale = "be"; arch = "linux-x86_64"; sha512 = "df05271371de5fa25ec11164eaac0b253bc892749d421a6ca730dfeceb4ef89492c42ce83a87eccbe91cb03ab001bf0a1d9a20a7296b69841cab8c6b5d2acc36"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/bg/firefox-47.0.1.tar.bz2"; locale = "bg"; arch = "linux-i686"; sha512 = "80644b86f9296b708e74843a51f81d368e3508f0f2f74de1a998d30a15f6e3af08ffd70dcc5c79adb76c03be9ff4713fc8403b8433cbc33ca3493941c4fb2fe0"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/bg/firefox-47.0.1.tar.bz2"; locale = "bg"; arch = "linux-x86_64"; sha512 = "0e6cdc5b3cc706031c95a550b0c800c9e8e2d7bf241010c22f0872eca4bab018a5f0d4a94abb4f8291c279476700f2101a69ac0c57ae79994fba38b88b00fddb"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/bn-BD/firefox-47.0.1.tar.bz2"; locale = "bn-BD"; arch = "linux-i686"; sha512 = "4c697f1dcd68634e2ab712d4f2415e57cf8be0017fff3602223d8af19a1f3a5c973489d13951baaab95924fad42212a485fdff622d2b559be36e246c8a847b67"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/bn-BD/firefox-47.0.1.tar.bz2"; locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "1931035a9d92dd9246a00b32443e282dc405096407a4feff7856125b7ee156840114c9be0dd58a020c250fa54c4ccb22052d2be291eeec9b5f76303fdf6c4cc5"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/bn-IN/firefox-47.0.1.tar.bz2"; locale = "bn-IN"; arch = "linux-i686"; sha512 = "fbab6f7e4205c803a50990624d58aa80cfd3aa76fed02cbf9ea390f4ecdcc1a97bda9b51791cec49f2a7e1010109d5f81a1c9b6ac224f1f70df49407df5f7386"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/bn-IN/firefox-47.0.1.tar.bz2"; locale = "bn-IN"; arch = "linux-x86_64"; sha512 = "c705ec8356796060c6782261086011bc0bf3ac9f08bc821ce2305c9aac11c522abb802a9d9ab7dcb53b0d38468bb6e667d45b187355d769acb43a8b252c4f400"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/br/firefox-47.0.1.tar.bz2"; locale = "br"; arch = "linux-i686"; sha512 = "c58cd77139a0ae7f3bb8f6f25c40856aca18a831c8f5d6f5d59a45ec615420bd55205093fb66a77591835b0d9493f774b1801a168b9c071086d510a1446cc914"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/br/firefox-47.0.1.tar.bz2"; locale = "br"; arch = "linux-x86_64"; sha512 = "b6bde26d478eac081007ef43a6d588f70dc4d54afc423b019468dc91bfcb117d3b4989c4cbb4cf77a1a11847a58ec74fbf822b6e6f0ef86fdb0065c301294850"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/bs/firefox-47.0.1.tar.bz2"; locale = "bs"; arch = "linux-i686"; sha512 = "16ee40d079996f42be77167b73645d389045648c9d36b76e34d0398c7b5b6dee54712d109f93d054236ac7076fc3edb06ee82acae40ad22825a23d92d0e2c636"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/bs/firefox-47.0.1.tar.bz2"; locale = "bs"; arch = "linux-x86_64"; sha512 = "ef674f409df5c32fe4584f9de65cc6558d6b3ec78d8a83f5cec829bc1ae09f30399567915e32584334704d12264c2592fecc9e4952beabc8b0d4eb49a7186854"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ca/firefox-47.0.1.tar.bz2"; locale = "ca"; arch = "linux-i686"; sha512 = "fe522bd836c82cb68bb21ad1c7f36bd9a7af1642abf7c035e2d0999b4cc07c58124e4d8de81344598036159102ee12f22c12e44a8a087e54d6c661c3f453b63e"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ca/firefox-47.0.1.tar.bz2"; locale = "ca"; arch = "linux-x86_64"; sha512 = "b618da984d35fbde3819d101c103d8d9a5a4de98f0e254c67e894656019ebb6adc56e14a57410a61430d9aa9c1e0a01339b39a5272164af372544f27329a1644"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/cak/firefox-47.0.1.tar.bz2"; locale = "cak"; arch = "linux-i686"; sha512 = "82659aa2fbd091224aef6800b3df1d2e5141b6a295918e4fc4ea09b671184f62c670e3dedd7040b2f167581b0c8a0e8799d861256b273b01b2455d0937722273"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/cak/firefox-47.0.1.tar.bz2"; locale = "cak"; arch = "linux-x86_64"; sha512 = "a507cff511c6337f805a27c0f73548342d2fb2cffa683874d66b054b844b17c354cc6da5c3d15618006c2279099b0cd9172b17d9d4b21a3863b5e395db686b22"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/cs/firefox-47.0.1.tar.bz2"; locale = "cs"; arch = "linux-i686"; sha512 = "9af91acffc2beeb53280a6cbd21656a91a686c03342fad90dd91314c49535acef1a8abac8fe54bcfc250ca8b8f07e3550c890094f3bcee6baece983cec68bd8a"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/cs/firefox-47.0.1.tar.bz2"; locale = "cs"; arch = "linux-x86_64"; sha512 = "c8bea48dc11c021fff9df5ee1a67a6b6e9193ffb2a07e17014d7448254d8a8f4d1512f862ea73bf84dc15b40edbba3fd94cd3d2d18872255bbfc7fa9a7b8ec29"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/cy/firefox-47.0.1.tar.bz2"; locale = "cy"; arch = "linux-i686"; sha512 = "7cc062c3b9b4bbfd0b1f7247f06505ae99458514b607d4d9062836085798bab7ade6c4d1c8903b1b961243c6fb6adb4c4f94780f1194f745cf62d786e2c4f5c6"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/cy/firefox-47.0.1.tar.bz2"; locale = "cy"; arch = "linux-x86_64"; sha512 = "abafa600b941e17f8aea0e778a937f5fb34cbc8803c93e59febc5d9fde6ad3347ba0bc7aa07ab57a61f6b9d6b11d582b987100364aa8401bca539dc6e14584e3"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/da/firefox-47.0.1.tar.bz2"; locale = "da"; arch = "linux-i686"; sha512 = "d4a9141779f52b78a51b9682b6b44e5ccffdecf5582358ab8a02efe133d9a52023e03c238e106a79e41a8aeaabcc58e0757c1af66837768e7bf4732f26182915"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/da/firefox-47.0.1.tar.bz2"; locale = "da"; arch = "linux-x86_64"; sha512 = "48f0c48aa273cec9830bf806330c7a630185262838007628acad904a45b3186450a8973938c36db636bdef9042c78ce94a4a456e1682ef561abaabab6ac20863"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/de/firefox-47.0.1.tar.bz2"; locale = "de"; arch = "linux-i686"; sha512 = "01675b3a8ecfa10da1d101cba36295b226b130e1cdb2c760541cd76c9b21436ae84ca7228e063402b1ca2eb59acadcac7720c9dd47db8b406675fb273af206c6"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/de/firefox-47.0.1.tar.bz2"; locale = "de"; arch = "linux-x86_64"; sha512 = "6a7ef802a8109f58504b2accb9ef0ee38986f6c8980e0831c30b470f2ee768169557cdbde1a58d7c72996b27596e553185ded476cecdd7114b75d82428b7846e"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/dsb/firefox-47.0.1.tar.bz2"; locale = "dsb"; arch = "linux-i686"; sha512 = "55528fca4d276b2b0430949686845e3d7d88975129c9a9846408f758b4f9c8f154425db891e5c1930197e36137d6c15ba29de90dad624bad23090015849d0ab5"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/dsb/firefox-47.0.1.tar.bz2"; locale = "dsb"; arch = "linux-x86_64"; sha512 = "f21c14a57f6f973be824340fcd417ce03765d5826114462f62adbd933661bccbfbe90b66935083619c62d48401c511830574ccc373ca2110093b06fad59734ff"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/el/firefox-47.0.1.tar.bz2"; locale = "el"; arch = "linux-i686"; sha512 = "ac5a808db1ba68286a7199eef33794f7aeeafa26e97a20738fb21be479462bcaeb1e8a7995720d5c7dcaadd0cebe91bb2a3e019873d0cf74f42838f7d5c1a427"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/el/firefox-47.0.1.tar.bz2"; locale = "el"; arch = "linux-x86_64"; sha512 = "c02e6587d99fc3ca66debe854c778a8b3dbf9b514e6ed74fa15e3035a54643b2bc324ff59f1705c6bd392c37ad1996f80dbabbb57df10aff954ed0ff3f5b01d5"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/en-GB/firefox-47.0.1.tar.bz2"; locale = "en-GB"; arch = "linux-i686"; sha512 = "c458c70db0408d627a904781adc9af18011f243689f4c5a606c8f1508b4e9417a8df499673c4ba56d32ea77d0f79ab85ff88852f7c518e7fd124e5970615b2f9"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/en-GB/firefox-47.0.1.tar.bz2"; locale = "en-GB"; arch = "linux-x86_64"; sha512 = "28ccaebc4f7613d7ea8c3b47504923f2d59bdf4afd6e386a67dcb6b6923a9374c1c783e4f904da0b6e0f716ec87a046fc12f3781b732389d1d680745d6955c58"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/en-US/firefox-47.0.1.tar.bz2"; locale = "en-US"; arch = "linux-i686"; sha512 = "e1ea34bd0829656c04c471b66d2013fc07cbd5cf40b47bf3a932326cca71f9a502c52d1d5e6dd902d274d307079475b0e75d7ff552fcb2fadf31b2883efba79e"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/en-US/firefox-47.0.1.tar.bz2"; locale = "en-US"; arch = "linux-x86_64"; sha512 = "a56b2ad26df424f008d96968a4e6a10406694b33f42d962f19dff1a0bcdf261bca5dd0e5c6f3af32d892c3268da5ebee8ce182090f04f8480d37d232ccd23b9f"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/en-ZA/firefox-47.0.1.tar.bz2"; locale = "en-ZA"; arch = "linux-i686"; sha512 = "d5efc3d4e624f34c81df068f4d6c184cb8a63ad0667695e9ce7099e069b23715eb77cf2004adee41bf355452179959e5ef7450f167f87be70339abb4cf70844a"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/en-ZA/firefox-47.0.1.tar.bz2"; locale = "en-ZA"; arch = "linux-x86_64"; sha512 = "859730132549691b61e936813f0f5fd3e62f3ef6fa9899e3f68bd3178b7438b4c6b49f54f00d4898b568d6abccdd55a0f9fc6c51858e95735fefcc13de460d73"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/eo/firefox-47.0.1.tar.bz2"; locale = "eo"; arch = "linux-i686"; sha512 = "8ef290bf1eb3504ace393b32c2da64d14435edc327c4f13a40cd925efaf7e042a03b6877689b3f2290f85625410a4e48dfb2cf676f138fdba87ffc597b25f4b6"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/eo/firefox-47.0.1.tar.bz2"; locale = "eo"; arch = "linux-x86_64"; sha512 = "7d6167749d2a57a9c12180302a825fee14555e9050b6be3c83dd35183678bc36e10391cedcc864ca0dd96d297997a68627dc4fc1a9cd8922e789dcfa814f18eb"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/es-AR/firefox-47.0.1.tar.bz2"; locale = "es-AR"; arch = "linux-i686"; sha512 = "07768e3b3ed903f4327881a132f192a65842a376eeca6d10ec0de69fefb4ddf3d7fee2a704bbc8d229c78556478814d9e53940cca9edee58270d9790d6b76998"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/es-AR/firefox-47.0.1.tar.bz2"; locale = "es-AR"; arch = "linux-x86_64"; sha512 = "cac021af09abd742273dc77291fb1528dd5d6d38cef3a5e36e615fbb9f3908655fdc96ceb93fd131c4879acf24e702a044471136e7575f3b550ebcecd982047e"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/es-CL/firefox-47.0.1.tar.bz2"; locale = "es-CL"; arch = "linux-i686"; sha512 = "e92ce6bec5b1ee8cf3db0a604eb4cae6245fb6d04a48eec64b6dd55139f3606cbbcb65511e29a3164d6572929b7216afbaa7f034a2191eba100ecb7403740504"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/es-CL/firefox-47.0.1.tar.bz2"; locale = "es-CL"; arch = "linux-x86_64"; sha512 = "98e57146481a53061c0b30872290ecabc2d14c73805a9461d82aaaf4cf9f301521fd55b01c8159c09a56f52a1580d83c9527986b1390f496d0fbd11227216e7f"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/es-ES/firefox-47.0.1.tar.bz2"; locale = "es-ES"; arch = "linux-i686"; sha512 = "c44df66e140ea9190112f89aedff9519b6bee18f5e2b54aea19acd233e623c299aecf134cdba70d366fcaf6b7795d220052ff75409c7a04394a7aa02d9ea708e"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/es-ES/firefox-47.0.1.tar.bz2"; locale = "es-ES"; arch = "linux-x86_64"; sha512 = "c2d70bc5a304df7b2484c8fb2b374f8e31a69049eb223a53dbd0e4b51e4ccce907efb1674eb637370ce7c3947ba5c09e65f433d10e0f328b80d482f3de9cae12"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/es-MX/firefox-47.0.1.tar.bz2"; locale = "es-MX"; arch = "linux-i686"; sha512 = "96dcb75cffeb85b85f092e295e38ee55c272714c40609ca90cfaac5fa0cfdb3efe8e993319ee690b4a7938c42346bf39f063ab1f3db606e743c1e4720de5a93f"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/es-MX/firefox-47.0.1.tar.bz2"; locale = "es-MX"; arch = "linux-x86_64"; sha512 = "60b50d6726b2e1985564bc02263eb88c9b4c1bb39e6d19812ecc6751d6ad223ba04f65a7755a946fb15dceab90628b057bda89c55fdd4972604586f52c5a4b1c"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/et/firefox-47.0.1.tar.bz2"; locale = "et"; arch = "linux-i686"; sha512 = "0a4bef2277f729c93db413b68f8263eb356f7b3278880574b8ebe010e2db9067b803967e1f0d6912f128a9ad5ef204466f52ae277f3addfb8fe9ac377c3b8a3a"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/et/firefox-47.0.1.tar.bz2"; locale = "et"; arch = "linux-x86_64"; sha512 = "ed1bd4fd67262958601f1107edc589bb28e9b7f9faf0edebdcaf0c07ec6007f527a9eab434582a65271a8f68edac8178601da54eab9398f48b31126657a21b0b"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/eu/firefox-47.0.1.tar.bz2"; locale = "eu"; arch = "linux-i686"; sha512 = "8c5c9406345e2a1fca3544aeb742dc0d254c804d887e3614613280c050a63b69320d4488b017ee16b0a2a07bea862e8b245baf7edc9df65689d509986f3c5958"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/eu/firefox-47.0.1.tar.bz2"; locale = "eu"; arch = "linux-x86_64"; sha512 = "d8f7004e24033f377391b577c549b66f73cf0e899ce5f580eaccd07713ec03b4362db7b222ce6345d113641d3e6a951302939bbb155c47ec0fa46a201a631427"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/fa/firefox-47.0.1.tar.bz2"; locale = "fa"; arch = "linux-i686"; sha512 = "f4e02737e20b6ffd3bc2b3a5e5fa59fc80a8e37dc8459ad4a6b99e7621a4d3f360884915f7136dc201830efe371de37977ef3e27f34f84e2cb734c1fff8f6e36"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/fa/firefox-47.0.1.tar.bz2"; locale = "fa"; arch = "linux-x86_64"; sha512 = "8f624b066faa39341b750dbb702dd60ee6ad75b3850c659dac2e21969ebed1f792423e9fb0a9cae7fc456943020f9a0155af5d7c596433eedaaa9990ce07b7d4"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ff/firefox-47.0.1.tar.bz2"; locale = "ff"; arch = "linux-i686"; sha512 = "22a2c5376b1e8d770659475085d98ac1f1020cd816ff3ec6ccfcd68f2484b1b0dc25bb84ca52f4ad27144f4da356ce5e7fd54411d12ae7c852064509470d5828"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ff/firefox-47.0.1.tar.bz2"; locale = "ff"; arch = "linux-x86_64"; sha512 = "bcb3dabc250045b8ad444219055fd9d14902296ef3f9c320bec1bef940f84eeb0d4a50249805188ae96ed0288a70f0216350ee79191beba49aeba890ae515b41"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/fi/firefox-47.0.1.tar.bz2"; locale = "fi"; arch = "linux-i686"; sha512 = "0c505a0e1d3030038b61ea159eece3892bcc7d947b6d7010c0be8791525c9d91ad1170d4cb45260584c93a78a4bc831b7acd9f28e95ae62e5b96b31745dcbe50"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/fi/firefox-47.0.1.tar.bz2"; locale = "fi"; arch = "linux-x86_64"; sha512 = "f347cde005c6b61366c633db5a8cbc5260dfa0d68230a938d847e3f80bff2f1bed09dddded7b1728f4ef9525610ecd046743f9e71eefb467943fe6b72ed198ca"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/fr/firefox-47.0.1.tar.bz2"; locale = "fr"; arch = "linux-i686"; sha512 = "8fb8ea2eab82740657a6b822b330fa0c289c31ad900683b4ad07b1e9b0c6c4e14f50af39d6d0f787642010628800b0a99b5ab0c4cad62e4a579390509b1ddd13"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/fr/firefox-47.0.1.tar.bz2"; locale = "fr"; arch = "linux-x86_64"; sha512 = "ae79c5b7f9f8305c3631f4f913baa341a9beaa7a2ee5df1c6c1826030c21bf22b92095ee579affb8911110bf3bcc359793c0beca18d4c32b1fcc1f3d1dbcc4b9"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/fy-NL/firefox-47.0.1.tar.bz2"; locale = "fy-NL"; arch = "linux-i686"; sha512 = "1c57d02fdc33ff53de48ed9aa9e89ecd5a56d35b432d5651e71bbfbd5f9dfd18aeaf14d10b881f72df871afd00a12b31ff05cf9d5c5a55cd44a92c7a0156523d"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/fy-NL/firefox-47.0.1.tar.bz2"; locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "f30f59d630c5d289b61dc7440f7bbb976eb16732370f827365a477090cdf9f2859f39afb7ff9d9be7e8a022f181f2aeb7a3005c00f4c14e6505a28db7ae48a9a"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ga-IE/firefox-47.0.1.tar.bz2"; locale = "ga-IE"; arch = "linux-i686"; sha512 = "739d5feec4bffee67876227f6783d35675f4c0d168b7abbe5f97b6e8edce7fe4b8f04f8240087f7f208db4180f3417997b661c93ebe046decff3f4f4fecac839"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ga-IE/firefox-47.0.1.tar.bz2"; locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "cb4344df6e07db839ce8c9fffd1b7b310c8108b5218cea3602972806c1a40f56bf1355ede4cb3595f54179b16e3470e25bfbddc8e39d726c7d6c1e99d128ca8b"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/gd/firefox-47.0.1.tar.bz2"; locale = "gd"; arch = "linux-i686"; sha512 = "91004d62bb5f1f6a1d65b35fee9e594d21d9877669e042cb4c9a834b01b35797363e1433a9ce5a8d0a9f64c8b256da6a6d09fa3342b74b7c2af8ce8afb3e4e56"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/gd/firefox-47.0.1.tar.bz2"; locale = "gd"; arch = "linux-x86_64"; sha512 = "f04034cafed25c34713ffe4109e53b107b8fe81321c0c0c035f54ff0ce67ac393b42db7598edc658d3f026e447f9ff1c4d1cfdedd31066eefb6019117248e4c0"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/gl/firefox-47.0.1.tar.bz2"; locale = "gl"; arch = "linux-i686"; sha512 = "107bdebb92ce86f39cdc45d6bb24a9c4d104820eca6bb77950693ccbd55e7f8a2f143fc3a5bbb1bfda161e7a33c8f6d8d2686b09da1497215defbca2b4e4e109"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/gl/firefox-47.0.1.tar.bz2"; locale = "gl"; arch = "linux-x86_64"; sha512 = "c841af5c73343475150b5404b4b54396bda845aa5b231a742aa17ecb7fdbbc5cd4123efc3ac2ede1c24f485d04bd87e8bf7cb00b7135bef236ce56afa0c27a19"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/gn/firefox-47.0.1.tar.bz2"; locale = "gn"; arch = "linux-i686"; sha512 = "20954e218967772488bd895ebf069522c3f4c56ebfa09a7c8efb740158cb95b6be76cee8f4d7f2c1c6c505ca9071a0ddc1914784a54f669d337d5196f18b6f4a"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/gn/firefox-47.0.1.tar.bz2"; locale = "gn"; arch = "linux-x86_64"; sha512 = "aaed68f13e326792671669883b452b65556998ed757ed5b745c6453d6bae8865a06f137709de37ace2688e2e09f1b96ecf2e5b6374b4170d29100c6f83ce22ce"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/gu-IN/firefox-47.0.1.tar.bz2"; locale = "gu-IN"; arch = "linux-i686"; sha512 = "205093ecc0dfcddb2b90e05b1a17f75805a4597bbfad214d67442fd0d952f765b031ba63a3c399ba9c1c46e4d05b3cf786f01c46eb8990240a16431964c93a94"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/gu-IN/firefox-47.0.1.tar.bz2"; locale = "gu-IN"; arch = "linux-x86_64"; sha512 = "a84ec5015f6922a22a284eaca985010586067370d818e77d401b58782f86dcf2f534f1ef021719c170f1f502525ce25c94760d3b75481c15fade3c25b969b563"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/he/firefox-47.0.1.tar.bz2"; locale = "he"; arch = "linux-i686"; sha512 = "5727fc4699316c4b34be1c2596c5cc20d5fc9d2062b1e106087cdb34b788fe3ebbc098acc8c690bc83c9d9be59ac3b3977fd9116d766ce908aa088660fe34771"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/he/firefox-47.0.1.tar.bz2"; locale = "he"; arch = "linux-x86_64"; sha512 = "c399969bc24b10ca1c1eff17d3414f214cfe3e5b73282942ead5b2ba4d2c58b74d665b13031ccf42956cd45f0fc7b206dd2f9674103c1e3a8861a33577b5caa7"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/hi-IN/firefox-47.0.1.tar.bz2"; locale = "hi-IN"; arch = "linux-i686"; sha512 = "f014c47a143d425aa3452be2bbed199a8b5e75d278c35fa86bb6bcac40bfb32bdee22d030386c881c818b465451b35c81f97bf29f9ccfbea606d52c822057899"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/hi-IN/firefox-47.0.1.tar.bz2"; locale = "hi-IN"; arch = "linux-x86_64"; sha512 = "0e5dc0970680886dc02448d7118b6864092699fe44f3276ca17cba160aee59418f8e39338247897b118de0e1fb7634cf725ddc6a34a8b6f002b7a78d92deffb0"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/hr/firefox-47.0.1.tar.bz2"; locale = "hr"; arch = "linux-i686"; sha512 = "a9af43f6cf6f493f728b8942d3a600f3cb3a23eb0818d284ddabb8766f7d274aa0a232f9925b65625bb56d00864946dc6b0567491cbecdd6a7cf626b6964d9b1"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/hr/firefox-47.0.1.tar.bz2"; locale = "hr"; arch = "linux-x86_64"; sha512 = "d97951148ca0ba80a67020f323859ea3f508e40906ecfd18f7a8fbe7a2bc85ea4635945b5c6063e1d5d18456471604075e6767da9a4fda6a09dd3e992a7d3a88"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/hsb/firefox-47.0.1.tar.bz2"; locale = "hsb"; arch = "linux-i686"; sha512 = "2f7adccdc894f345e861b29a6d65909b1cde2649c69ec9223f784e659e8e3f4668f815b3683fe691de0749483167d26885a0199bee88e8524377c7eee3afbe99"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/hsb/firefox-47.0.1.tar.bz2"; locale = "hsb"; arch = "linux-x86_64"; sha512 = "70e39341ede01e18c653a0eb56b48e31c73ee3df54ebc11bcd220e2d8e19c67c3e248095c4d070b12a0eac5c24acf5a8ad83069673dcaa684229f4706103685e"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/hu/firefox-47.0.1.tar.bz2"; locale = "hu"; arch = "linux-i686"; sha512 = "1fc01c6dd873e2194e6196b1bdb0246e95d0b0520f558b21a2052251d2a5202141c09410c4631b3f025479169d8f68411c2a24f32825261fa8d65696fc7cbe0f"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/hu/firefox-47.0.1.tar.bz2"; locale = "hu"; arch = "linux-x86_64"; sha512 = "b4509d671d7eac055812add85ae571f52c90b4eeb172d21c22ce844c70192ba235f37a732e94a0edd6794ecd5a8caa5e8bb6ce05a26d3705902d3628420af871"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/hy-AM/firefox-47.0.1.tar.bz2"; locale = "hy-AM"; arch = "linux-i686"; sha512 = "a2b7cd1ec95a0b5eb064e816cfcfc6a74a92806772592947267c4b266bf7ce77d1beb17a7c25b905251cf497ca8dfabf16bca367cf6d9e9e635182f306bd71ca"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/hy-AM/firefox-47.0.1.tar.bz2"; locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "9997ca45051e609e289d7730caf1254adacefbf8e618a165750d5bb7ff7933d014781af76501296c89a4236fd3ac477df6e6be5a5dd45f214983c851a856ce5a"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/id/firefox-47.0.1.tar.bz2"; locale = "id"; arch = "linux-i686"; sha512 = "bda5a7c599885bef966daa35a3f34297e38534e32967142ff9cc720a34c7aa9730e3f24623c240637838eca03f78f9b2ee30af3ac3dc8ba48f9664c56b64c789"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/id/firefox-47.0.1.tar.bz2"; locale = "id"; arch = "linux-x86_64"; sha512 = "97d16c5b4382c7fc6ccee416d671e47d345834a44ab111aa486a41c756b25eb894628d0128e8454fc15f38937bc40436b12e60752ce7b7c1fe35a230abaca337"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/is/firefox-47.0.1.tar.bz2"; locale = "is"; arch = "linux-i686"; sha512 = "576b904fb836ea735f652c6b9c91891dee164edd3523c5f99d68cccb4bd6689c29e4c579b6cc44e699a8900101fb8d223f9e0b0860f71a2814ae0ee2c70609e5"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/is/firefox-47.0.1.tar.bz2"; locale = "is"; arch = "linux-x86_64"; sha512 = "592d65977c34c6133f5745a85722f822efa5956bafc6e880954a0b318fa59712c754e882768755fc08f5e08a1c99493c0b30b4219c46169ba663258e3fd3f3fc"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/it/firefox-47.0.1.tar.bz2"; locale = "it"; arch = "linux-i686"; sha512 = "4d749e1b5d8432df789f29a247ab48a688d4aa16fb25dcf7209783c6036bfccb9ff8ac32dcd09dab1708f71896fa034576d6048eef077d1a6c0a3dc58d3cdb26"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/it/firefox-47.0.1.tar.bz2"; locale = "it"; arch = "linux-x86_64"; sha512 = "087c456d691225d9aef54b2013af69cc7bf2501f83060179112e9c40c1d6762202f68e6329a936df091a1ae6aa5f20bcc96a4c8b0451b71270426bddfb45d15c"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ja/firefox-47.0.1.tar.bz2"; locale = "ja"; arch = "linux-i686"; sha512 = "cb4b0bbff7d322f2f04fdaa50b365d4e0a1ff1786206539cd124870ebd69a9305b88d39b9fbed41c64ddbe68098e02c51a0dc665262424f8eff882b1497ea1fd"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ja/firefox-47.0.1.tar.bz2"; locale = "ja"; arch = "linux-x86_64"; sha512 = "b6c9b419a3e746957f93a4bdba9043adc3911b6f76e1eea2e4e31e77e9aa9057ce720205db4af5586a90df4d6b774b90829f1d7689e77c560c50ccae755400b9"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/kk/firefox-47.0.1.tar.bz2"; locale = "kk"; arch = "linux-i686"; sha512 = "ae7711d86ce8180997f44f9309a63a436bd8b70ed0dccda773c34ba816daae99b3b1ae913ee87f4d1f9a4e8f016aea670e89652823df16b5e8414bb58ac28225"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/kk/firefox-47.0.1.tar.bz2"; locale = "kk"; arch = "linux-x86_64"; sha512 = "49fb6b5ab6aa12535373927519bf36099da6fab7c2e1bcd6f5ce73d91679f58e81eddd3556df65b305fc2d1cd439cf6de081980fa98ff79df16b620ed41290fd"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/km/firefox-47.0.1.tar.bz2"; locale = "km"; arch = "linux-i686"; sha512 = "29dd1808c1430c01dbb395d5e5a833bfbde85453278d4efd32f1afa1eac19a651c0c3a42eb4ba3402f56a8492e80746d753986c0ec0f1a6dc0e5eb6778b5c6ae"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/km/firefox-47.0.1.tar.bz2"; locale = "km"; arch = "linux-x86_64"; sha512 = "f53966aed30b57a601152f09a26414e11bff4ff31683989eb1e47546eaa32fce8cbb6511043f9753cae076d23d6f2172c2b224313cf5f3262f109b49119175e5"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/kn/firefox-47.0.1.tar.bz2"; locale = "kn"; arch = "linux-i686"; sha512 = "17dc37df2b3d5a87bbadc4d5c80d4ddff03752b7a80f5c76171ce9f0bc4b8926964b6315cd4f0c6c9dd3142cec56b464503bde34ec3c69e2b8a66ddcae72b0ec"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/kn/firefox-47.0.1.tar.bz2"; locale = "kn"; arch = "linux-x86_64"; sha512 = "2af5ac5c254bd0ed2d08656a6fee7966d73aa89973cfad67fd18d7d88fd1f18a2b882de7854af46a3ebc6acba4cceacc06942db7ae495faa2c6ef21c65e94158"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ko/firefox-47.0.1.tar.bz2"; locale = "ko"; arch = "linux-i686"; sha512 = "415fc260f3dcc2ede6c43194501d9522fdfb106f7c86e5d8f5929df6615c73023fffc3efd190deb68bf08bb2a0d4ab34f7605e222301c8350b980f2dbc289c8a"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ko/firefox-47.0.1.tar.bz2"; locale = "ko"; arch = "linux-x86_64"; sha512 = "c991c0b9a89b618ac046882b929fd7e3689e19dd96edf4535b25f9172b6baaa801a4490ae4fd35e82ca3c776afab74a0a09b993f8ae8c2a603d210f2cf248f73"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/lij/firefox-47.0.1.tar.bz2"; locale = "lij"; arch = "linux-i686"; sha512 = "3cd367654397d14b782cea4ef8c96f1f6938f011576a8dba92dd4ca832ca3c8682f3e0e161a4288b112fca550d556080d0ece5a79e4c4f6ec99a9298feb6fa12"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/lij/firefox-47.0.1.tar.bz2"; locale = "lij"; arch = "linux-x86_64"; sha512 = "2d7475c544df807a956feb9361f889ba0f5e43dc52a9e1dc9c469d86e97f344b4f2995e3fa149a77662969f3acbcc998f430973b2b9d28b23c82c5058b4a9dfc"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/lt/firefox-47.0.1.tar.bz2"; locale = "lt"; arch = "linux-i686"; sha512 = "35c8a452ca845576739d5faa9dab6f3c34dcecf9ce95870f68699836f3534b4807c91fbe80007950abbbca662e6d01b406205b3e4cdf4d33e0717ea5d6f57006"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/lt/firefox-47.0.1.tar.bz2"; locale = "lt"; arch = "linux-x86_64"; sha512 = "8791df09d841d5ddabd552d0fb0dc7e9446d23092bae1010d92bc3b056a9ad4a6dad01c5d8db531a273945eaaf4c30c922cd03d7b17e1b6be263e0bcb91b8384"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/lv/firefox-47.0.1.tar.bz2"; locale = "lv"; arch = "linux-i686"; sha512 = "22b865a344a46096c53a72ff6b1402d00808bb3b49ecabe6f4115ea60e40e522d64afc701648772616fcb784a963bc6d5bb3f89517d7f8407f22fa82d81bad98"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/lv/firefox-47.0.1.tar.bz2"; locale = "lv"; arch = "linux-x86_64"; sha512 = "3c66af306b1a8d0a684c12511d95353c0bdda0bea981ce4e577c928be03e12b582b19dcaccdccec551b3cb0fb716323b1079180aa7a8f1204f5e4b5a84b72831"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/mai/firefox-47.0.1.tar.bz2"; locale = "mai"; arch = "linux-i686"; sha512 = "780fe423a3cd56a7452df32679ee07a0e328b21cadc78faa2721cec59185c4a4467aeeb75e9237cc86d38dfa2cd71530f02156c4fb9515582ca564dd53d47543"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/mai/firefox-47.0.1.tar.bz2"; locale = "mai"; arch = "linux-x86_64"; sha512 = "d27218b59edf004dc57cfa9ffd70dbeb59b7d3c0871b00388a56b505629fd82ddd6f6e0147f5b4c67a8ad72a674e384b66ba2f9455fa9ff218c9ada4b27d1d7d"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/mk/firefox-47.0.1.tar.bz2"; locale = "mk"; arch = "linux-i686"; sha512 = "da7ae3718f3c69ec9b62aaaea93951375d82d8d02818d6855fa9f085a64b69c155a1336585d786ae2d33d657110b787f62909dc9e4d54c62d2ea94d2fa8fee3e"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/mk/firefox-47.0.1.tar.bz2"; locale = "mk"; arch = "linux-x86_64"; sha512 = "95136f8bf86014a63bcbf4a5cfbd778c4c7e6a84618aa0f6a6948bb597638569b3702e0569b50c5dc9b46339e723377faea8964b921ae9802043fb7983a2c4e4"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ml/firefox-47.0.1.tar.bz2"; locale = "ml"; arch = "linux-i686"; sha512 = "56743acb54283715fb2a910caa85dda61f7e2c1c5e012aa222dc07e3b522572500056fddf990b7ef03a175ff8901fb11b113bcad5c2adf4a6e6e032644ccca2f"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ml/firefox-47.0.1.tar.bz2"; locale = "ml"; arch = "linux-x86_64"; sha512 = "134f35f5f6616c2a7eec48f637277fc02e23b57bf38eccff9777bb08c70a41fe79967b69567f75f9c8bcbad4b22d2ddaf16bec98e399c4b8ca9db9b70e99ef58"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/mr/firefox-47.0.1.tar.bz2"; locale = "mr"; arch = "linux-i686"; sha512 = "f29de7ae7dba03465baf86f93d778c9faf3055d50295977c0207c7e4daae6f7ad733ed38e1323263cebe4f737d9a1616024333a97139156470de1a9fe3c16276"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/mr/firefox-47.0.1.tar.bz2"; locale = "mr"; arch = "linux-x86_64"; sha512 = "731b4f143fd1303ab54ea3f1b6aca6c4f78ce935caae32fed0b8cdcd46c0ade8c8977131a3be786ea929a7d284c3d45d34851a0d81242761f722f0bceb126957"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ms/firefox-47.0.1.tar.bz2"; locale = "ms"; arch = "linux-i686"; sha512 = "d372bac105f2012b189efedc449c7c183d0daf64cd7a40822ef9d685ce4a1550ca9699620440dd198b13f95513a577766e9f1a8e88b212492831bf7ffcac7e0a"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ms/firefox-47.0.1.tar.bz2"; locale = "ms"; arch = "linux-x86_64"; sha512 = "1287f36a742fa834d5f31e6bc2f6d3651e54f2bc8845a1f0f647e9a9e38ba66c58138961185897c8832107cffff06167a35dc3ee1f0ff830f997f65fb0854a63"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/nb-NO/firefox-47.0.1.tar.bz2"; locale = "nb-NO"; arch = "linux-i686"; sha512 = "ac3e46080e188e56a6b67ff77aeffdba7982d7c3aa4156a6f2781ef6b8fe63cac50d678e5afc91aca4ad16c4384d2b2727f74ddc4083da91a1e3590ac98ec9d2"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/nb-NO/firefox-47.0.1.tar.bz2"; locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "dca52381e45b5c2d89f590971d830010a9ec1a2a513fe655ee93c3fbd980adcea78787701595a95402bdb660c2f3e0a489e001deba13798337493655798c713a"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/nl/firefox-47.0.1.tar.bz2"; locale = "nl"; arch = "linux-i686"; sha512 = "6ec01f8eb18384aadb5715a996c8410ffa94b801ee1f1b1ab43bdeb492e179e781e8b85acbeff4a25cb4fef847ce3e2335968458d9f6e47d046083264e91f6f7"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/nl/firefox-47.0.1.tar.bz2"; locale = "nl"; arch = "linux-x86_64"; sha512 = "7d5840518312dd167d914a8f7fa5670fe17f9a6fc39ccd128e30f689005b35bd352d0602993713c3d05288f2b036829be8e08398d536e4aebf2341ae2290e633"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/nn-NO/firefox-47.0.1.tar.bz2"; locale = "nn-NO"; arch = "linux-i686"; sha512 = "a185f7592649a91214363cf2a0474b5895f33342c98cd4bdc48fafb0cc76310b2ba4f46575970d723c76b2ecfeba8e2b39d9671e6059a15bcb2565258096156c"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/nn-NO/firefox-47.0.1.tar.bz2"; locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "7f8e7277bcbfbe5f40c161f1ebbeed86159c2b6205a5ea55cd8b6253fa6742bcfede11d4de6c1aba36e2b1e98f9c9a7b8e26f9aa35e1eaadc1d011636d429be3"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/or/firefox-47.0.1.tar.bz2"; locale = "or"; arch = "linux-i686"; sha512 = "a543a7d3f4e24364be7e4df65a81da82d955d1268a4cbce741ad7ddd5f4e9916573e271f02af1e92b123a4da2c7f312c17f6ce714e3057a1b204484ef12133d8"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/or/firefox-47.0.1.tar.bz2"; locale = "or"; arch = "linux-x86_64"; sha512 = "7672596470cd8f49f9c4558b05bd637af1650da729bc518681a8cde3ec785358121fa7ef209e123fca4b59df1a63878832bc32d2ff404b5d2a818b60ba10c15e"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/pa-IN/firefox-47.0.1.tar.bz2"; locale = "pa-IN"; arch = "linux-i686"; sha512 = "a99b60ae1eb479e31f838fd41d5de325c418762fdcfa5e0f3bc3d5da8df108d3b64ce5bfac0af09663007becf5327164db8dea0ea7a3876586cc43030a780199"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/pa-IN/firefox-47.0.1.tar.bz2"; locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "f0110b74842f924808f74979061151fec711d10a6005d2da2fbb8d46fa2a25ecd5a2c804e58c10a918efe570d4d67d05578b0245f526e1aede4bbc786e9f304e"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/pl/firefox-47.0.1.tar.bz2"; locale = "pl"; arch = "linux-i686"; sha512 = "7eaa2bad351429d76b476819a1529ed1609388968327382cc13df235a294f2e9fb14295341ff15fe3b2815ffd1c6c8978e2aa104a847fd2cb4adcf2ae3b0b974"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/pl/firefox-47.0.1.tar.bz2"; locale = "pl"; arch = "linux-x86_64"; sha512 = "a40e2c15cff0e7f7bff8a5c0bc4cf39df948a21bd37b34ffc93dd87e1f5256526a25526e457fcfd8d081bc872dc1bec13e67da3cf671b6a16dfa17850be4743c"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/pt-BR/firefox-47.0.1.tar.bz2"; locale = "pt-BR"; arch = "linux-i686"; sha512 = "c9cd96e68fa2e1f73a49e71c287a25be8d45a8ebb56262e02c40ba5869fc58c7fc43a1f6958592bb377e7dd4064d64f5ebcbcb5cd3a9fe0a007c2da665f50a66"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/pt-BR/firefox-47.0.1.tar.bz2"; locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "1184751c1d1a0a9044f8df2d20aee7dfe332dc5f851802ebaf2c5c83fa2bcccfd913cb6e16d2baa449cff1b02aa18f828489914c0741a2ef2a46d54fefecc268"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/pt-PT/firefox-47.0.1.tar.bz2"; locale = "pt-PT"; arch = "linux-i686"; sha512 = "86538057ae91b1297acc11c9bf3f7d24ba1950edead89d4733f7c898cf53e3848054bf391a975f19766b69f4c56f576ca54e4b8da806db7416f3e3d91777c3c3"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/pt-PT/firefox-47.0.1.tar.bz2"; locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "0a480c26e5dfe2bb9b536e122ae32e18a6dac999004493839cb506c1ad615e095c554d296f1a77bfccbbb86b58bcf549db83f7de51d02b68d1eb752b421f23cc"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/rm/firefox-47.0.1.tar.bz2"; locale = "rm"; arch = "linux-i686"; sha512 = "751ffe931cd60296490c7164f49f61f4a51bac5210328a18d02261a07eb607e181b2bab4fa0b59d2df15334152386bf816a984840d2331b7e801171be9c90594"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/rm/firefox-47.0.1.tar.bz2"; locale = "rm"; arch = "linux-x86_64"; sha512 = "3e526c9a1a876e5d2c548c9a68803dd11c04c8214e18eb09c0b1c3fb3833f64c8a3362db8083ac5de81c59268439b53effa3bf1c64807fafc874eb8ed9baf188"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ro/firefox-47.0.1.tar.bz2"; locale = "ro"; arch = "linux-i686"; sha512 = "73cf6a18deafb7ba93fd60cba3ba0bb0191471f977c41bac11bf2fd6cc6f7fd7cf2ad125ac5cf168ef577d71dfb0e893e182f39be6ad186ddc642d87c40041a5"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ro/firefox-47.0.1.tar.bz2"; locale = "ro"; arch = "linux-x86_64"; sha512 = "b62c54b8694b4a662c1d336056d404a8d432ba0a3d4f2964b5c5acc0e39b668fd228105e1c4e307bfab1acfa5c3ce223db4229df01866cdbbc7c1ac95e70fe2c"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ru/firefox-47.0.1.tar.bz2"; locale = "ru"; arch = "linux-i686"; sha512 = "6ebd3b3a1f3613905313129cde7cf113bdd777fd0f600496231ba813a95b04309b25016dd69891d31189a93ccad3f87b9c69d54d6219ad39dd38d1181b1f3102"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ru/firefox-47.0.1.tar.bz2"; locale = "ru"; arch = "linux-x86_64"; sha512 = "539a22d13587cdcc21b6f76ff24ccfd1df98cbaaacac802aed46ba8f2bfed27cb2f3e5c146cbd2c3559aaff22297e692030b9612041a05a6bfca08f49bf0d2fb"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/si/firefox-47.0.1.tar.bz2"; locale = "si"; arch = "linux-i686"; sha512 = "bb0d1621f5b9af886fca0ea7cf7fd851d7c22d2d8f279a7b88e9bce98be33ad7b75d6a51ab47ea859802ed39b467815db60409285afaa0bbf4bb1ce6d590eabc"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/si/firefox-47.0.1.tar.bz2"; locale = "si"; arch = "linux-x86_64"; sha512 = "90337d193df7db41a1384856938bb62212952a80144dcc319a725a9b567ffd4deb7bb7af89b57891d3c17499ff466990e656edf7d0b017b8f4e0370aab445477"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/sk/firefox-47.0.1.tar.bz2"; locale = "sk"; arch = "linux-i686"; sha512 = "23a15e6ad5ce9b03c218be4e26e603a412de4d870d5f64b599ae511bfc66bf2cf04613cc06fc1a054d06b80435e284456c0b08e33f34d8c9482f5ca23da6ae62"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/sk/firefox-47.0.1.tar.bz2"; locale = "sk"; arch = "linux-x86_64"; sha512 = "a86cbed60f65e4ebb36c614d846fbb2515945112fd4f2482c3a63b49a62c3acb310f050dcbd57cc76a808c049eefd8f779d6aeea53362dd81798bb8d7177c86a"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/sl/firefox-47.0.1.tar.bz2"; locale = "sl"; arch = "linux-i686"; sha512 = "8ae008f0077081ef40de3bf08c2de294231f41439a83d8a41a485f53e95ba3f4fc6ef03d6ac98e8848c3f3dad290978f1607d8c847f1622bd86b7d38cd0be730"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/sl/firefox-47.0.1.tar.bz2"; locale = "sl"; arch = "linux-x86_64"; sha512 = "34efb560c65329c7f3f6b341cc49ac4952f24e6e9b34e7f5bd45d98618a4d03ac89c6f62580223efd2d37db24a03f76a54381d4162f5430b887122bb56eb49d9"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/son/firefox-47.0.1.tar.bz2"; locale = "son"; arch = "linux-i686"; sha512 = "d3e5a25fbc4a786239a7ae543fefb7b7e3ecc34192c8326af915f18b9b08436656bf68faa4953a34bdc464e32305baecce800f91ef0152bb4b4a8323ab448f33"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/son/firefox-47.0.1.tar.bz2"; locale = "son"; arch = "linux-x86_64"; sha512 = "ffee5d1a23e91911fd1dedb5ecf24bfc6b1733fb582e64a5e07d4df4b7afd9a6c502a70ab3af6624b4594f5ddcd81bc8962ede5b693cc035a96a561389f6bfca"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/sq/firefox-47.0.1.tar.bz2"; locale = "sq"; arch = "linux-i686"; sha512 = "1cbaf8c32d1d3205cd85127839eed11b416903960c9e411b9adc71c42ba4add47acddd32a9217bb68f27b90d6765892edf2d356e21235c5bfd5cf69d1ee719f9"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/sq/firefox-47.0.1.tar.bz2"; locale = "sq"; arch = "linux-x86_64"; sha512 = "16d93961a53ecc3e1ae3480be9e34f2a22dec2bdab55dbd35d1ea79ecf2ee48f195380bd52efc7d39529601610793b75daadeeb54dd76c9a3702c786af25acdd"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/sr/firefox-47.0.1.tar.bz2"; locale = "sr"; arch = "linux-i686"; sha512 = "0b2c5234f1787cd972fad398dc270766fbc3015dc1bba29755e5316f207af9f5787d4aa41e96cffd2c9d31c57a5d1896e63fcd04e6235a4a6798469e738fa10d"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/sr/firefox-47.0.1.tar.bz2"; locale = "sr"; arch = "linux-x86_64"; sha512 = "e7c7e7ff7fd81ca86f45997faed7244e4d807c3e5ad7ed66d6feb38c3e9173eaf136bd34af690ce28534f0c531c7f1d11595ec6502dfa42778cc19dee4334c49"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/sv-SE/firefox-47.0.1.tar.bz2"; locale = "sv-SE"; arch = "linux-i686"; sha512 = "dffb94b0ddb4b9d2effba3894b408c9f191f2079dc4b47e214347a235c9bf1adf77e520465691d14a274c3f3344c7f8b7d41965051d506728347e0af1117ad27"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/sv-SE/firefox-47.0.1.tar.bz2"; locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "b601906d28f071c6beb3dbd6b37fa68f50809c9c47c9db69d631127ccc7b784e7d3b278aea6de060b34d83b6c78137da32b77f8e17ed199c3213b89dd9391264"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ta/firefox-47.0.1.tar.bz2"; locale = "ta"; arch = "linux-i686"; sha512 = "1a496470ef8e0899bfce66b41490f54d4d32776eaf60aca8725c4732512f1d3befb2e1fc3b942ebea95fe2359509c43d41649e5f90498264b8e02a3352244260"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ta/firefox-47.0.1.tar.bz2"; locale = "ta"; arch = "linux-x86_64"; sha512 = "00e6dbc43ad3c77693903fe534722094826637698df691b266eb801b27cd5e63502c21ca3e34ff939a7645a1f75d36fce6154626019eb96bc73cc39ab845c952"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/te/firefox-47.0.1.tar.bz2"; locale = "te"; arch = "linux-i686"; sha512 = "70ed539571cadf241f819b68ff24829db32f56287aadab31656fdf66c0ed94ccc6cc11b6cef6e2e963203cda47af2c6032db6e5689c37aaaf495b1e4fa970207"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/te/firefox-47.0.1.tar.bz2"; locale = "te"; arch = "linux-x86_64"; sha512 = "d491acd4635ab9b22f76531740c7ee7a85832678aef9ed646e75f56755c02538440adeea71e9ca5a7a5e11f3f2f6941c3c4c1e47380547179f63baaf6c20ad07"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/th/firefox-47.0.1.tar.bz2"; locale = "th"; arch = "linux-i686"; sha512 = "0414f74c6266fc204f2741b6860f7919c957364bd56ccc2cec5ef4b9c4be812c554ab584e6ce53387e6b7a18ad02991a44d9507a16da59a4aabfd44e7fb5b754"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/th/firefox-47.0.1.tar.bz2"; locale = "th"; arch = "linux-x86_64"; sha512 = "2952cceaecdd4013882150e8158607639e4ab2cffdef563d4fd1a015c41f1eff6c5ac22c0b9301a05ab6f9fef9659d54916275d5a50d97ad43bf69f10da7b3c8"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/tr/firefox-47.0.1.tar.bz2"; locale = "tr"; arch = "linux-i686"; sha512 = "c5c6273bae2b9a46108a433af3a85b5cbbba4cd3154ee124ccc49f46c4a76264836a76d1b2da4b1064e9a913cc9fe461911c53e44f40343c5f780be04da932e5"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/tr/firefox-47.0.1.tar.bz2"; locale = "tr"; arch = "linux-x86_64"; sha512 = "f0b5bef1ea4b948d699a79d902055d5b31afbe5c4f1814d98cadef1ca820ce39212ec009f68d875860a48942e9d797bda88eec4f6ed591dd8b3b260e04170974"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/uk/firefox-47.0.1.tar.bz2"; locale = "uk"; arch = "linux-i686"; sha512 = "3a069ba914716ce122c4a89612988708d811b9350d333aab203dde212527c0e0cc86ec4781e6aa23f40b77f2266f76eca366cf355651870f43e180b97aa25c43"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/uk/firefox-47.0.1.tar.bz2"; locale = "uk"; arch = "linux-x86_64"; sha512 = "db7931aa3f1d150e4b5b8c87b9d069df4a515fb2aa5e250b8f8a1bae0d8fd9a210ae949df056c47e3c88e8faf28f2571311ce2d6f179e3365720b42f1335b546"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/uz/firefox-47.0.1.tar.bz2"; locale = "uz"; arch = "linux-i686"; sha512 = "110a82749e187f39d77f63b16ad515218e5512e5974916e4145e625a40d797e23fdbb5d110a23f061448cfc3d3c597858636c9304e941a34c68368f749c3c900"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/uz/firefox-47.0.1.tar.bz2"; locale = "uz"; arch = "linux-x86_64"; sha512 = "1dbf94cef034449e8d1342822384bf1761dc61748e2d876aec1ac628dd161f92b62da832fe397b2fe4f8a1b82f9adf1c3690f26e07ee3e48c6299f95969533cf"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/vi/firefox-47.0.1.tar.bz2"; locale = "vi"; arch = "linux-i686"; sha512 = "af97e1dcfc9bfbdce95a5cd35025b2540ad928d3238863471116e071a51b354b7818577bc3e7427c513e7b335bc1510605ba3ad1a37221389de7c7fedf6e2103"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/vi/firefox-47.0.1.tar.bz2"; locale = "vi"; arch = "linux-x86_64"; sha512 = "cc938935395e66ef721fdbb8c8b781ef648b5419393ed1687a116a4d9ae12dd18f2edbc8287235504aa6782bbd6a41f9f5dd89c9c712ed4980fb9fa44f46ef38"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/xh/firefox-47.0.1.tar.bz2"; locale = "xh"; arch = "linux-i686"; sha512 = "a76dbac054cdb7f5c194766dc54f215de4cb4cca4aacd7c883e0e3632b9dfc18cc25d7a54788e213bc65c894dd26ca9b863199b55b649133f93da9fed9a58fe4"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/xh/firefox-47.0.1.tar.bz2"; locale = "xh"; arch = "linux-x86_64"; sha512 = "cfd8bbb81637c19464ec34788254740e999c13bc8a64b4289b0e1c64f76d711a5a5a8380995271f309444032739066f06334da2f81b6ca2b2be33ff55d3ff402"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/zh-CN/firefox-47.0.1.tar.bz2"; locale = "zh-CN"; arch = "linux-i686"; sha512 = "d11637b0c28aa1c45b315322ff12392e133aebe21f435564da278b9e301f0c8515ccb721df2bd55c175c48c3e24934837abbba4b84c9fa659b7a58db1da68f04"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/zh-CN/firefox-47.0.1.tar.bz2"; locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "27a06d87f23eaeec170d1ea7f3df636198bfd4787001e178948fe9b8a3f1aafff3be59b9d01ed5b5851902b550601f061e923a4cda3a972f0ac68928cab28577"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/zh-TW/firefox-47.0.1.tar.bz2"; locale = "zh-TW"; arch = "linux-i686"; sha512 = "7c6ef5592b273749ccbf7b37c09984b11722beb7f49d4ed25555b84f0521e0dbac5197c7642ac508a21a1a40c5578dcfb49310858819875cc9407c85426d599a"; }
+ { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/zh-TW/firefox-47.0.1.tar.bz2"; locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "9ccce84a292144f3758190ff2858c077d1e7ec6d49ff5e1efb404b8dfb3bcfebf96eab15d0ec32325e4d96d94f4c6bcc67f4e43dd22af418b822d82a2afaf6f1"; }
];
}
diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/bluejeans/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/bluejeans/default.nix
index 147540ed158..574fd9efdd4 100644
--- a/pkgs/applications/networking/browsers/mozilla-plugins/bluejeans/default.nix
+++ b/pkgs/applications/networking/browsers/mozilla-plugins/bluejeans/default.nix
@@ -17,11 +17,11 @@ in
stdenv.mkDerivation rec {
name = "bluejeans-${version}";
- version = "2.160.49.8";
+ version = "2.160.63.8";
src = fetchurl {
url = "https://swdl.bluejeans.com/skinny/bjnplugin_${version}-1_amd64.deb";
- sha256 = "1hf4jx0d1wiv622rwck0mm8cckm121yszviw47jsw0mjnp91hqch";
+ sha256 = "1sfz9xvvrbw7gg7fxxwg9wmgbxgv3fa14p7i4m85mg10l3qxaqfc";
};
phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
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 f9c978b2cd8..5ed1636aa65 100644
--- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix
+++ b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix
@@ -70,11 +70,11 @@ let
in
stdenv.mkDerivation rec {
name = "flashplayer-${version}";
- version = "11.2.202.626";
+ version = "11.2.202.632";
src = fetchurl {
url = "https://fpdownload.macromedia.com/pub/flashplayer/installers/archive/fp_${version}_archive.zip";
- sha256 = "1c7ffr1kjmdq5rcx3xzgkd4wg1c8b3zkb1ysmnjiicfm423xr9h7";
+ sha256 = "0nf2d7jn8g6bp9vilkwwkkh6pm05fg3h73njsn4yvx3285k73lpn";
};
nativeBuildInputs = [ unzip ];
diff --git a/pkgs/applications/networking/browsers/uzbl/default.nix b/pkgs/applications/networking/browsers/uzbl/default.nix
index 0fb0db99891..4b768602c6e 100644
--- a/pkgs/applications/networking/browsers/uzbl/default.nix
+++ b/pkgs/applications/networking/browsers/uzbl/default.nix
@@ -1,6 +1,8 @@
{ stdenv, fetchurl, pkgconfig, python3, makeWrapper, pygtk
, webkit, glib_networking, gsettings_desktop_schemas, pythonPackages
}:
+# This package needs python3 during buildtime,
+# but Python 2 + packages during runtime.
stdenv.mkDerivation rec {
name = "uzbl-v0.9.0";
@@ -22,8 +24,8 @@ stdenv.mkDerivation rec {
preConfigure = ''
makeFlags="$makeFlags PREFIX=$out"
makeFlags="$makeFlags PYINSTALL_EXTRA=--prefix=$out"
- mkdir -p $out/lib/python3.4/site-packages/
- export PYTHONPATH=$PYTHONPATH:$out/lib/python3.4/site-packages/
+ mkdir -p $out/${python3.sitePackages}/
+ export PYTHONPATH=$PYTHONPATH:$out/${python3.sitePackages}
'';
preFixup = ''
@@ -37,5 +39,6 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig python3 makeWrapper ];
- buildInputs = [ gsettings_desktop_schemas webkit pygtk pythonPackages.six ];
+ buildInputs = [ gsettings_desktop_schemas webkit ];
+ propagatedBuildInputs = [ pygtk pythonPackages.six ];
}
diff --git a/pkgs/applications/networking/cluster/habitat/chroot-env.nix b/pkgs/applications/networking/cluster/habitat/chroot-env.nix
new file mode 100644
index 00000000000..7d6b3749904
--- /dev/null
+++ b/pkgs/applications/networking/cluster/habitat/chroot-env.nix
@@ -0,0 +1,9 @@
+# TODO: Drop once https://github.com/habitat-sh/habitat/issues/994
+# is resolved.
+{ habitat, libsodium, libarchive, openssl, buildFHSUserEnv }:
+
+buildFHSUserEnv {
+ name = "habitat-sh";
+ targetPkgs = pkgs: [ habitat libsodium libarchive openssl ];
+ runScript = "bash";
+}
diff --git a/pkgs/applications/networking/cluster/habitat/default.nix b/pkgs/applications/networking/cluster/habitat/default.nix
index d806329e4ee..da82dac0019 100644
--- a/pkgs/applications/networking/cluster/habitat/default.nix
+++ b/pkgs/applications/networking/cluster/habitat/default.nix
@@ -5,18 +5,18 @@ with rustPlatform;
buildRustPackage rec {
name = "habitat-${version}";
- version = "0.7.0";
+ version = "0.8.0";
src = fetchFromGitHub {
owner = "habitat-sh";
repo = "habitat";
rev = version;
- sha256 = "0pacxcc86w4zdakyd6qbz2rqx30rkv1j5aca1fqa1hf1jqg44vg0";
+ sha256 = "1h9wv2v4hcv79jkkjf8j96lzxni9d51755zfflfr5s3ayaip7rzj";
};
sourceRoot = "habitat-${version}-src/components/hab";
- depsSha256 = "0bm9f6w7ircji4d1c1fgysna93w0lf8ws7gfkqq80zx92x3lz5z5";
+ depsSha256 = "1612jaw3zdrgrb56r755bb18l8szdmf1wi7p9lpv3d2gklqcb7l1";
buildInputs = [ libsodium libarchive openssl ];
diff --git a/pkgs/applications/networking/cluster/terraform/default.nix b/pkgs/applications/networking/cluster/terraform/default.nix
index 1ce86cac5c5..3d1834ce9b6 100644
--- a/pkgs/applications/networking/cluster/terraform/default.nix
+++ b/pkgs/applications/networking/cluster/terraform/default.nix
@@ -2,16 +2,16 @@
buildGoPackage rec {
name = "terraform-${version}";
- version = "0.6.15";
+ version = "0.6.16";
rev = "v${version}";
-
+
goPackagePath = "github.com/hashicorp/terraform";
src = fetchFromGitHub {
inherit rev;
owner = "hashicorp";
repo = "terraform";
- sha256 = "1mf98hagb0yp40g2mbar7aw7hmpq01clnil6y9khvykrb33vy0nb";
+ sha256 = "1bg8hn4b31xphyxrc99bpnf7gmq20fxqx1k871nidx132brcsah2";
};
postInstall = ''
diff --git a/pkgs/applications/networking/ftp/filezilla/default.nix b/pkgs/applications/networking/ftp/filezilla/default.nix
index 4b7b56c69ea..5d92f7455d6 100644
--- a/pkgs/applications/networking/ftp/filezilla/default.nix
+++ b/pkgs/applications/networking/ftp/filezilla/default.nix
@@ -1,13 +1,13 @@
{ stdenv, fetchurl, dbus, gnutls, wxGTK30, libidn, tinyxml, gettext
, pkgconfig, xdg_utils, gtk2, sqlite, pugixml, libfilezilla, nettle }:
-let version = "3.18.0"; in
+let version = "3.19.0"; in
stdenv.mkDerivation {
name = "filezilla-${version}";
src = fetchurl {
url = "mirror://sourceforge/project/filezilla/FileZilla_Client/${version}/FileZilla_${version}_src.tar.bz2";
- sha256 = "1qnpbx2684r529ldih6fi5anjlcgqn2xfcls0q38iadrk1qnqr1p";
+ sha256 = "0827z1jmn8pkzrcpjgh5yh2r23vgv73yb4rikraxa9i7l118g9l2";
};
configureFlags = [
diff --git a/pkgs/applications/networking/instant-messengers/teamspeak/client.nix b/pkgs/applications/networking/instant-messengers/teamspeak/client.nix
index 17fdb2061dd..24edbc85643 100644
--- a/pkgs/applications/networking/instant-messengers/teamspeak/client.nix
+++ b/pkgs/applications/networking/instant-messengers/teamspeak/client.nix
@@ -31,7 +31,7 @@ in
stdenv.mkDerivation rec {
name = "teamspeak-client-${version}";
- version = "3.0.19.1";
+ version = "3.0.19.3";
src = fetchurl {
urls = [
@@ -39,8 +39,8 @@ stdenv.mkDerivation rec {
"http://teamspeak.gameserver.gamed.de/ts3/releases/${version}/TeamSpeak3-Client-linux_${arch}-${version}.run"
];
sha256 = if stdenv.is64bit
- then "173mcvrckia0mming1v9nzi0bllr4m430y9swl9kyfsvp44f5n5h"
- else "1iansjlbalwil0nlrlxfl70zzbx009c4rccf4va0kq097rqhgznx";
+ then "05620qqi8plxsrzj92g306a0l8wg1pd2l66vpmj71vs0f5lms6p4"
+ else "07b2120pa8nyvnvh48vp5vqq7xlxg6vrrx67azz9kfcdzbbarcv9";
};
# grab the plugin sdk for the desktop icon
@@ -101,7 +101,11 @@ stdenv.mkDerivation rec {
meta = {
description = "The TeamSpeak voice communication tool";
homepage = http://teamspeak.com/;
- license = "http://www.teamspeak.com/?page=downloads&type=ts3_linux_client_latest";
+ license = {
+ fullName = "Teamspeak client license";
+ url = http://sales.teamspeakusa.com/licensing.php;
+ free = false;
+ };
maintainers = [ stdenv.lib.maintainers.lhvwb ];
platforms = stdenv.lib.platforms.linux;
};
diff --git a/pkgs/applications/networking/instant-messengers/viber/default.nix b/pkgs/applications/networking/instant-messengers/viber/default.nix
index 8e07bbf975b..f16ee8bd5cc 100644
--- a/pkgs/applications/networking/instant-messengers/viber/default.nix
+++ b/pkgs/applications/networking/instant-messengers/viber/default.nix
@@ -1,20 +1,20 @@
-{ fetchurl, stdenv, dpkg, makeWrapper, xorg, qt5Full, gstreamer, zlib, sqlite, libxslt }:
+{fetchurl, stdenv, dpkg, makeWrapper,
+ alsaLib, cups, curl, dbus, expat, fontconfig, freetype, glib, gst_all_1, harfbuzz, libcap,
+ libpulseaudio, mesa, nspr, nss, libudev, wayland, xorg, zlib, ...
+}:
assert stdenv.system == "x86_64-linux";
-# BUG: viber tries to access contacts list and that causes segfault
-# FIX: you have to do `chmod 444 ~/.ViberPC//Avatars`
-# BUG: viber tries to it's downloads and that causes segfault
-# FIX: you have to do `chmod 444 ~/Documents/ViberDownloads`
-# TODO: fix bugs
+# BUG: Viber requires running tray application, segfaulting if it's missing
+# FIX: Start something like `stalonetray` if you DE doesn't provide tray
stdenv.mkDerivation rec {
name = "viber-${version}";
- version = "4.2.2.6";
+ version = "6.0.1.5";
src = fetchurl {
url = "http://download.cdn.viber.com/cdn/desktop/Linux/viber.deb";
- sha256 = "1fv269z9sni21lc1ka25jnxr9w8zfg1gfn2c7fnd8cdd5fm57d26";
+ sha256 = "026vp2pv66b2dlwi5w5wk4yjnnmnsqapdww98p7xdnz8n0hnsbbi";
};
buildInputs = [ dpkg makeWrapper ];
@@ -22,36 +22,74 @@ stdenv.mkDerivation rec {
unpackPhase = "true";
libPath = stdenv.lib.makeLibraryPath [
- qt5Full
- xorg.libX11
- gstreamer
- zlib
- sqlite
- xorg.libXrender
- libxslt
+ alsaLib
+ cups
+ curl
+ dbus
+ expat
+ fontconfig
+ freetype
+ glib
+ gst_all_1.gst-plugins-base
+ gst_all_1.gstreamer
+ harfbuzz
+ libcap
+ libpulseaudio
+ mesa
+ nspr
+ nss
stdenv.cc.cc
- xorg.libXScrnSaver
+ libudev
+ wayland
+ zlib
+
+ xorg.libICE
+ xorg.libSM
+ xorg.libX11
+ xorg.libxcb
+ xorg.libXcomposite
+ xorg.libXcursor
+ xorg.libXdamage
xorg.libXext
- ];
+ xorg.libXfixes
+ xorg.libXi
+ xorg.libXrandr
+ xorg.libXrender
+ xorg.libXScrnSaver
+ xorg.libXtst
+ xorg.xcbutilimage
+ xorg.xcbutilkeysyms
+ xorg.xcbutilrenderutil
+ xorg.xcbutilwm
+ ]
+ ;
installPhase = ''
dpkg-deb -x $src $out
mkdir -p $out/bin
- mv $out/opt/viber/{Sound,icons,libqfacebook.so} $out
- mv $out/opt/viber/Viber $out/viber
- rm -rf $out/opt
- ln -s $out/viber $out/bin/viber
- mkdir -p usr/lib/mozilla/plugins
- patchelf \
- --set-rpath $libPath \
- $out/libqfacebook.so
- patchelf \
- --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
- --set-rpath $libPath:$out \
- $out/viber
+ # Soothe nix-build "suspicions"
+ chmod -R g-w $out
- wrapProgram $out/viber --prefix LD_LIBRARY_PATH : $libPath:$out
+ for file in $(find $out -type f \( -perm /0111 -o -name \*.so\* \) ); do
+ patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" "$file" || true
+ patchelf --set-rpath $libPath:$out/opt/viber/lib $file || true
+ done
+
+ # qt.conf is not working, so override everything using environment variables
+ wrapProgram $out/opt/viber/Viber \
+ --set QT_PLUGIN_PATH "$out/opt/viber/plugins" \
+ --set QT_XKB_CONFIG_ROOT "${xorg.xkeyboardconfig}/share/X11/xkb" \
+ --set QTCOMPOSE "${xorg.libX11}/share/X11/locale"
+ ln -s $out/opt/viber/Viber $out/bin/viber
+
+ mv $out/usr/share $out/share
+ rm -rf $out/usr
+
+ # Fix the desktop link
+ substituteInPlace $out/share/applications/viber.desktop \
+ --replace /opt/viber/Viber $out/opt/viber/Viber \
+ --replace /usr/share/ $out/share/
'';
dontStrip = true;
@@ -63,7 +101,6 @@ stdenv.mkDerivation rec {
license = stdenv.lib.licenses.unfree;
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ jagajaga ];
- broken = true;
};
}
diff --git a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix
new file mode 100644
index 00000000000..7f4a27cf9a2
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix
@@ -0,0 +1,105 @@
+{ alsaLib
+, fetchurl
+, gcc
+, glib
+, gst_plugins_base
+, gstreamer
+, icu_54_1
+, libpulseaudio
+, libuuid
+, libxml2
+, libxslt
+, makeQtWrapper
+, qt55
+, sqlite
+, stdenv
+, xlibs
+, xorg
+, zlib
+}:
+
+stdenv.mkDerivation rec {
+ name = "zoom-us";
+ meta = {
+ homepage = http://zoom.us;
+ description = "zoom.us instant messenger";
+ license = stdenv.lib.licenses.unfree;
+ platforms = stdenv.lib.platforms.linux;
+ };
+
+ version = "2.0.52458.0531";
+ src = fetchurl {
+ url = "https://zoom.us/client/latest/zoom_${version}_x86_64.tar.xz";
+ sha256 = "16d64pn9j27v3fnh4c9i32vpkr10q1yr26w14964n0af1mv5jf7a";
+ };
+
+ phases = [ "unpackPhase" "installPhase" ];
+ nativeBuildInputs = [ makeQtWrapper ];
+ libPath = stdenv.lib.makeLibraryPath [
+ alsaLib
+ gcc.cc
+ glib
+ gst_plugins_base
+ gstreamer
+ icu_54_1
+ libpulseaudio
+ libuuid
+ libxml2
+ libxslt
+ qt55.qtbase
+ qt55.qtdeclarative
+ qt55.qtscript
+ qt55.qtwebkit
+ sqlite
+ xlibs.xcbutilkeysyms
+ xorg.libX11
+ xorg.libxcb
+ xorg.libXcomposite
+ xorg.libXext
+ xorg.libXfixes
+ xorg.libXrender
+ xorg.xcbutilimage
+ zlib
+ ];
+ installPhase = ''
+ mkdir -p $out/share
+ cp -r \
+ application-x-zoom.png \
+ audio \
+ imageformats \
+ chrome.bmp \
+ config-dump.sh \
+ dingdong1.pcm \
+ dingdong.pcm \
+ doc \
+ Droplet.pcm \
+ Droplet.wav \
+ platforminputcontexts \
+ platforms \
+ platformthemes \
+ Qt \
+ QtMultimedia \
+ QtQml \
+ QtQuick \
+ QtQuick.2 \
+ QtWebKit \
+ QtWebProcess \
+ ring.pcm \
+ ring.wav \
+ version.txt \
+ xcbglintegrations \
+ zcacert.pem \
+ zoom \
+ Zoom.png \
+ ZXMPPROOT.cer \
+ $out/share
+
+ patchelf \
+ --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
+ --set-rpath ${libPath} \
+ $out/share/zoom
+ wrapQtProgram "$out/share/zoom"
+ mkdir -p $out/bin
+ ln -s $out/share/zoom $out/bin/zoom-us
+ '';
+ }
diff --git a/pkgs/applications/networking/mailreaders/alpine/default.nix b/pkgs/applications/networking/mailreaders/alpine/default.nix
index 8e5e8d5a0de..f2769946f70 100644
--- a/pkgs/applications/networking/mailreaders/alpine/default.nix
+++ b/pkgs/applications/networking/mailreaders/alpine/default.nix
@@ -23,6 +23,7 @@ stdenv.mkDerivation {
configureFlags = [
"--with-ssl-include-dir=${openssl.dev}/include/openssl"
"--with-tcl-lib=${tcl.libPrefix}"
+ "--with-passfile=.pine-passfile"
];
preConfigure = ''
export NIX_LDFLAGS="$NIX_LDFLAGS -lgcc_s"
diff --git a/pkgs/applications/networking/mailreaders/mutt/default.nix b/pkgs/applications/networking/mailreaders/mutt/default.nix
index 1964faf2f5c..0be5e0bd57e 100644
--- a/pkgs/applications/networking/mailreaders/mutt/default.nix
+++ b/pkgs/applications/networking/mailreaders/mutt/default.nix
@@ -1,43 +1,51 @@
-{ stdenv, fetchurl, ncurses, which, perl, autoreconfHook
-, sslSupport ? true
-, imapSupport ? true
-, headerCache ? true
-, saslSupport ? true
-, gpgmeSupport ? true
+{ stdenv, fetchurl, fetchpatch, ncurses, which, perl, autoreconfHook
, gdbm ? null
, openssl ? null
, cyrus_sasl ? null
, gpgme ? null
-, withSidebar ? false
+, aclocal ? null
+, headerCache ? true
+, sslSupport ? true
+, saslSupport ? true
+, gpgmeSupport ? true
+, imapSupport ? true
+, withSidebar ? false
+, withTrash ? false
}:
-assert headerCache -> gdbm != null;
-assert sslSupport -> openssl != null;
-assert saslSupport -> cyrus_sasl != null;
-assert gpgmeSupport -> gpgme != null;
+assert headerCache -> gdbm != null;
+assert sslSupport -> openssl != null;
+assert saslSupport -> cyrus_sasl != null;
+assert gpgmeSupport -> gpgme != null;
+
+with stdenv.lib;
-let
- version = "1.6.0";
-in
stdenv.mkDerivation rec {
- name = "mutt${stdenv.lib.optionalString withSidebar "-with-sidebar"}-${version}";
+ name = "mutt-${version}";
+ version = "1.6.2";
src = fetchurl {
- url = "http://ftp.mutt.org/pub/mutt/mutt-${version}.tar.gz";
- sha256 = "06bc2drbgalkk68rzg7hq2v5m5qgjxff5357wg0419dpi8ivdbr9";
+ url = "http://ftp.mutt.org/pub/mutt/${name}.tar.gz";
+ sha256 = "13hxmji7v9m2agmvzrs7gzx8s3c9jiwrv7pbkr7z1kc6ckq2xl65";
};
- buildInputs = with stdenv.lib;
+ buildInputs =
[ ncurses which perl ]
- ++ optional headerCache gdbm
- ++ optional sslSupport openssl
- ++ optional saslSupport cyrus_sasl
- ++ optional gpgmeSupport gpgme;
-
- nativeBuildInputs = stdenv.lib.optional withSidebar autoreconfHook;
+ ++ optional headerCache gdbm
+ ++ optional sslSupport openssl
+ ++ optional saslSupport cyrus_sasl
+ ++ optional gpgmeSupport gpgme
+ ++ optional withSidebar autoreconfHook;
configureFlags = [
- "--with-mailpath=" "--enable-smtp"
+ (enableFeature headerCache "hcache")
+ (enableFeature gpgmeSupport "gpgme")
+ (enableFeature imapSupport "imap")
+ (enableFeature withSidebar "sidebar")
+ "--enable-smtp"
+ "--enable-pop"
+ "--enable-imap"
+ "--with-mailpath="
# Look in $PATH at runtime, instead of hardcoding /usr/bin/sendmail
"ac_cv_path_SENDMAIL=sendmail"
@@ -45,36 +53,30 @@ stdenv.mkDerivation rec {
# This allows calls with "-d N", that output debug info into ~/.muttdebug*
"--enable-debug"
- "--enable-pop" "--enable-imap"
-
# The next allows building mutt without having anything setgid
# set by the installer, and removing the need for the group 'mail'
# I set the value 'mailbox' because it is a default in the configure script
"--with-homespool=mailbox"
- (if headerCache then "--enable-hcache" else "--disable-hcache")
- (if sslSupport then "--with-ssl" else "--without-ssl")
- (if imapSupport then "--enable-imap" else "--disable-imap")
- (if saslSupport then "--with-sasl" else "--without-sasl")
- (if gpgmeSupport then "--enable-gpgme" else "--disable-gpgme")
- ];
+ ] ++ optional sslSupport "--with-ssl"
+ ++ optional saslSupport "--with-sasl";
- # Adding the sidebar
- patches = stdenv.lib.optional withSidebar [
- ./trash-folder.patch
- ./sidebar.patch
- ./sidebar-dotpathsep.patch
- ./sidebar-utf8.patch
- ./sidebar-newonly.patch
- ./sidebar-delimnullwide.patch
- ./sidebar-compose.patch
- ./sidebar-new.patch
- ];
+ patches =
+ optional withTrash (fetchpatch {
+ name = "trash.patch";
+ url = "https://aur.archlinux.org/cgit/aur.git/plain/trash.patch?h=mutt-sidebar";
+ sha256 = "1hrib9jk28mqd02nzv0sx01jfdabzvnwcc5qjc3810zfglzc1nql";
+ }) ++
+ optional withSidebar (fetchpatch {
+ name = "sidebar.patch";
+ url = "https://aur.archlinux.org/cgit/aur.git/plain/sidebar.patch?h=mutt-sidebar";
+ sha256 = "1l63wj7kw41jrh00mcxdw4p4vrbc9wld42s99liw8kz2aclymq5m";
+ });
- meta = with stdenv.lib; {
+ meta = {
description = "A small but very powerful text-based mail client";
homepage = http://www.mutt.org;
- license = stdenv.lib.licenses.gpl2Plus;
+ license = licenses.gpl2Plus;
platforms = platforms.unix;
- maintainers = with maintainers; [ the-kenny ];
+ maintainers = with maintainers; [ the-kenny rnhmjoj ];
};
}
diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar-compose.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar-compose.patch
deleted file mode 100644
index 90d815b841d..00000000000
--- a/pkgs/applications/networking/mailreaders/mutt/sidebar-compose.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-From: Evgeni Golov
-Date: Fri, 14 Mar 2014 08:54:47 +0100
-Subject: sidebar-compose
-
-draw_sidebar sets SidebarWidth to 0 when sidebar_visible is false.
-However, if you start mutt in compose mode, draw_sidebar won't be
-called until the next redraw and your header lines will be off by
-the width of the sidebar, even when you did not want a sidebar at
-all.
-
-Can be tested with:
- HOME=/ LC_ALL=C mutt -e 'unset sidebar_visible' -s test recipient
-
-Closes: #502627
-
-Gbp-Pq: Topic mutt-patched
----
- compose.c | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/compose.c b/compose.c
-index b63695f..0fa6df2 100644
---- a/compose.c
-+++ b/compose.c
-@@ -32,6 +32,7 @@
- #include "mailbox.h"
- #include "sort.h"
- #include "charset.h"
-+#include "sidebar.h"
-
- #ifdef MIXMASTER
- #include "remailer.h"
-@@ -248,6 +249,7 @@ static void draw_envelope_addr (int line, ADDRESS *addr)
-
- static void draw_envelope (HEADER *msg, char *fcc)
- {
-+ draw_sidebar (MENU_COMPOSE);
- draw_envelope_addr (HDR_FROM, msg->env->from);
- draw_envelope_addr (HDR_TO, msg->env->to);
- draw_envelope_addr (HDR_CC, msg->env->cc);
diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar-delimnullwide.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar-delimnullwide.patch
deleted file mode 100644
index 11d2ced5a0c..00000000000
--- a/pkgs/applications/networking/mailreaders/mutt/sidebar-delimnullwide.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From: Evgeni Golov
-Date: Wed, 5 Mar 2014 17:46:07 +0100
-Subject: sidebar-delimnullwide
-
-SidebarDelim can be NULL and strlen(NULL) is a bad idea, as it will segfault.
-Wrap it with NONULL().
-
-While at it, change strlen to mbstowcs for better utf8 support.
-
-Closes: #696145, #663883
-
-Gbp-Pq: Topic mutt-patched
----
- sidebar.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/sidebar.c b/sidebar.c
-index 51a25ca..c3ea338 100644
---- a/sidebar.c
-+++ b/sidebar.c
-@@ -88,7 +88,7 @@ char *make_sidebar_entry(char *box, int size, int new, int flagged)
- int box_len, box_bytes;
- int int_len;
- int right_offset = 0;
-- int delim_len = strlen(SidebarDelim);
-+ int delim_len = mbstowcs(NULL, NONULL(SidebarDelim), 0);
- static char *entry;
-
- right_width = left_width = 0;
-@@ -178,7 +178,7 @@ int draw_sidebar(int menu) {
- #ifndef USE_SLANG_CURSES
- attr_t attrs;
- #endif
-- short delim_len = strlen(SidebarDelim);
-+ short delim_len = mbstowcs(NULL, NONULL(SidebarDelim), 0);
- short color_pair;
-
- static bool initialized = false;
diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar-dotpathsep.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar-dotpathsep.patch
deleted file mode 100644
index 315fa1649bc..00000000000
--- a/pkgs/applications/networking/mailreaders/mutt/sidebar-dotpathsep.patch
+++ /dev/null
@@ -1,98 +0,0 @@
-From: Fabian Groffen
-Date: Tue, 4 Mar 2014 21:12:15 +0100
-Subject: sidebar-dotpathsep
-
-Make path separators for sidebar folders configurable.
-
-When using IMAP, a '.' is often used as path separator, hence make the
-path separators configurable through sidebar_delim_chars variable.
-It defaults to "/." to work for both mboxes as well as IMAP folders. It
-can be set to only "/" or "." or whichever character desired as needed.
-
-Gbp-Pq: Topic mutt-patched
----
- globals.h | 1 +
- init.h | 8 ++++++++
- sidebar.c | 31 ++++++++++++++++++++++++-------
- 3 files changed, 33 insertions(+), 7 deletions(-)
-
-diff --git a/globals.h b/globals.h
-index 004c795..602f932 100644
---- a/globals.h
-+++ b/globals.h
-@@ -119,6 +119,7 @@ WHERE char *SendCharset;
- WHERE char *Sendmail;
- WHERE char *Shell;
- WHERE char *SidebarDelim;
-+WHERE char *SidebarDelimChars INITVAL (NULL);
- WHERE char *Signature;
- WHERE char *SimpleSearch;
- #if USE_SMTP
-diff --git a/init.h b/init.h
-index c664e5f..166671b 100644
---- a/init.h
-+++ b/init.h
-@@ -2051,6 +2051,14 @@ struct option_t MuttVars[] = {
- ** .pp
- ** The width of the sidebar.
- */
-+ { "sidebar_delim_chars", DT_STR, R_NONE, UL &SidebarDelimChars, UL "/." },
-+ /*
-+ ** .pp
-+ ** This contains the list of characters which you would like to treat
-+ ** as folder separators for displaying paths in the sidebar. If
-+ ** you're not using IMAP folders, you probably prefer setting this to "/"
-+ ** alone.
-+ */
- { "pgp_use_gpg_agent", DT_BOOL, R_NONE, OPTUSEGPGAGENT, 0},
- /*
- ** .pp
-diff --git a/sidebar.c b/sidebar.c
-index 6098c2a..4356ffc 100644
---- a/sidebar.c
-+++ b/sidebar.c
-@@ -249,20 +249,37 @@ int draw_sidebar(int menu) {
- // calculate depth of current folder and generate its display name with indented spaces
- int sidebar_folder_depth = 0;
- char *sidebar_folder_name;
-- sidebar_folder_name = basename(tmp->path);
-+ int i;
-+ sidebar_folder_name = tmp->path;
-+ /* disregard a trailing separator, so strlen() - 2
-+ * https://bugs.gentoo.org/show_bug.cgi?id=373197#c16 */
-+ for (i = strlen(sidebar_folder_name) - 2; i >= 0; i--) {
-+ if (SidebarDelimChars &&
-+ strchr(SidebarDelimChars, sidebar_folder_name[i]))
-+ {
-+ sidebar_folder_name += i + 1;
-+ break;
-+ }
-+ }
- if ( maildir_is_prefix ) {
- char *tmp_folder_name;
-- int i;
-+ int lastsep = 0;
- tmp_folder_name = tmp->path + strlen(Maildir);
-- for (i = 0; i < strlen(tmp->path) - strlen(Maildir); i++) {
-- if (tmp_folder_name[i] == '/') sidebar_folder_depth++;
-- }
-+ for (i = 0; i < strlen(tmp_folder_name) - 1; i++) {
-+ if (SidebarDelimChars &&
-+ strchr(SidebarDelimChars, tmp_folder_name[i]))
-+ {
-+ sidebar_folder_depth++;
-+ lastsep = i + 1;
-+ }
-+ }
- if (sidebar_folder_depth > 0) {
-- sidebar_folder_name = malloc(strlen(basename(tmp->path)) + sidebar_folder_depth + 1);
-+ tmp_folder_name += lastsep; /* basename */
-+ sidebar_folder_name = malloc(strlen(tmp_folder_name) + sidebar_folder_depth + 1);
- for (i=0; i < sidebar_folder_depth; i++)
- sidebar_folder_name[i]=' ';
- sidebar_folder_name[i]=0;
-- strncat(sidebar_folder_name, basename(tmp->path), strlen(basename(tmp->path)) + sidebar_folder_depth);
-+ strncat(sidebar_folder_name, tmp_folder_name, strlen(tmp_folder_name) + sidebar_folder_depth);
- }
- }
- printw( "%.*s", SidebarWidth - delim_len + 1,
diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar-new.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar-new.patch
deleted file mode 100644
index fb265346361..00000000000
--- a/pkgs/applications/networking/mailreaders/mutt/sidebar-new.patch
+++ /dev/null
@@ -1,97 +0,0 @@
-From 355399bde98203af59d20821f9e840fc056bd383 Mon Sep 17 00:00:00 2001
-From: Julius Haertl
-Date: Tue, 9 Sep 2014 22:31:49 +0200
-Subject: Patch for sidebar iteration functionality
-
-sidebar-new will move the selected folder to the next with new messages.
-If the end is reached, it will start at the top.
-
-Useful macros would be:
-
- macro index a ""
- macro pager a ""
----
- OPS | 1 +
- curs_main.c | 1 +
- functions.h | 2 ++
- pager.c | 1 +
- sidebar.c | 10 ++++++++++
- 5 files changed, 15 insertions(+)
-
-diff --git a/OPS b/OPS
-index 1ed9c96..3ffb82a 100644
---- a/OPS
-+++ b/OPS
-@@ -187,3 +187,4 @@ OP_SIDEBAR_PREV "go to previous mailbox"
- OP_SIDEBAR_OPEN "open hilighted mailbox"
- OP_SIDEBAR_NEXT_NEW "go down to next mailbox with new mail"
- OP_SIDEBAR_PREV_NEW "go to previous mailbox with new mail"
-+OP_SIDEBAR_NEW "iterate though mailboxes with new mail"
-diff --git a/curs_main.c b/curs_main.c
-index acb106d..2e35f90 100644
---- a/curs_main.c
-+++ b/curs_main.c
-@@ -2328,6 +2328,7 @@ int mutt_index_menu (void)
- case OP_SIDEBAR_PREV:
- case OP_SIDEBAR_NEXT_NEW:
- case OP_SIDEBAR_PREV_NEW:
-+ case OP_SIDEBAR_NEW:
- scroll_sidebar(op, menu->menu);
- break;
- default:
-diff --git a/functions.h b/functions.h
-index 363b4d5..1485080 100644
---- a/functions.h
-+++ b/functions.h
-@@ -176,6 +176,7 @@ const struct binding_t OpMain[] = { /* map: index */
- { "sidebar-prev", OP_SIDEBAR_PREV, NULL },
- { "sidebar-next-new", OP_SIDEBAR_NEXT_NEW, NULL},
- { "sidebar-prev-new", OP_SIDEBAR_PREV_NEW, NULL},
-+ { "sidebar-new", OP_SIDEBAR_NEW, NULL },
- { "sidebar-open", OP_SIDEBAR_OPEN, NULL },
- { NULL, 0, NULL }
- };
-@@ -287,6 +288,7 @@ const struct binding_t OpPager[] = { /* map: pager */
- { "sidebar-prev", OP_SIDEBAR_PREV, NULL },
- { "sidebar-next-new", OP_SIDEBAR_NEXT_NEW, NULL},
- { "sidebar-prev-new", OP_SIDEBAR_PREV_NEW, NULL},
-+ { "sidebar-new", OP_SIDEBAR_NEW, NULL },
- { "sidebar-open", OP_SIDEBAR_OPEN, NULL },
- { NULL, 0, NULL }
- };
-diff --git a/pager.c b/pager.c
-index 8d64fe1..696e55c 100644
---- a/pager.c
-+++ b/pager.c
-@@ -2791,6 +2791,7 @@ search_next:
- case OP_SIDEBAR_PREV:
- case OP_SIDEBAR_NEXT_NEW:
- case OP_SIDEBAR_PREV_NEW:
-+ case OP_SIDEBAR_NEW:
- scroll_sidebar(ch, MENU_PAGER);
- break;
-
-diff --git a/sidebar.c b/sidebar.c
-index c3ea338..eb8ecd2 100644
---- a/sidebar.c
-+++ b/sidebar.c
-@@ -429,6 +429,16 @@ void scroll_sidebar(int op, int menu)
- CurBuffy = CurBuffy->next;
- }
- break;
-+ case OP_SIDEBAR_NEW:
-+ if ( (tmp = exist_next_new()) == NULL)
-+ tmp = TopBuffy;
-+ if ( tmp->msg_unread == 0 ) {
-+ CurBuffy = tmp;
-+ tmp = exist_next_new();
-+ }
-+ if ( tmp != NULL )
-+ CurBuffy = tmp;
-+ break;
- default:
- return;
- }
---
-2.6.0.rc0.2.g7662973.dirty
-
diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar-newonly.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar-newonly.patch
deleted file mode 100644
index d206848026b..00000000000
--- a/pkgs/applications/networking/mailreaders/mutt/sidebar-newonly.patch
+++ /dev/null
@@ -1,198 +0,0 @@
-From: Steve Kemp
-Date: Tue, 4 Mar 2014 22:07:06 +0100
-Subject: sidebar-newonly
-
-patches written by Steve Kemp, it adds two new functionalities to the sidebar,
-so only the mailbox with new messages will be shown (and/or) selected
-See Debian bug http://bugs.debian.org/532510
-
-Gbp-Pq: Topic mutt-patched
----
- OPS | 2 ++
- curs_main.c | 2 ++
- functions.h | 4 ++++
- init.h | 5 +++++
- mutt.h | 2 ++
- pager.c | 2 ++
- sidebar.c | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++--
- 7 files changed, 70 insertions(+), 2 deletions(-)
-
-diff --git a/OPS b/OPS
-index b036db9..1ed9c96 100644
---- a/OPS
-+++ b/OPS
-@@ -185,3 +185,5 @@ OP_SIDEBAR_SCROLL_DOWN "scroll the mailbox pane down 1 page"
- OP_SIDEBAR_NEXT "go down to next mailbox"
- OP_SIDEBAR_PREV "go to previous mailbox"
- OP_SIDEBAR_OPEN "open hilighted mailbox"
-+OP_SIDEBAR_NEXT_NEW "go down to next mailbox with new mail"
-+OP_SIDEBAR_PREV_NEW "go to previous mailbox with new mail"
-diff --git a/curs_main.c b/curs_main.c
-index ea530a6..acb106d 100644
---- a/curs_main.c
-+++ b/curs_main.c
-@@ -2326,6 +2326,8 @@ int mutt_index_menu (void)
- case OP_SIDEBAR_SCROLL_DOWN:
- case OP_SIDEBAR_NEXT:
- case OP_SIDEBAR_PREV:
-+ case OP_SIDEBAR_NEXT_NEW:
-+ case OP_SIDEBAR_PREV_NEW:
- scroll_sidebar(op, menu->menu);
- break;
- default:
-diff --git a/functions.h b/functions.h
-index ef8937a..363b4d5 100644
---- a/functions.h
-+++ b/functions.h
-@@ -174,6 +174,8 @@ const struct binding_t OpMain[] = { /* map: index */
- { "sidebar-scroll-down", OP_SIDEBAR_SCROLL_DOWN, NULL },
- { "sidebar-next", OP_SIDEBAR_NEXT, NULL },
- { "sidebar-prev", OP_SIDEBAR_PREV, NULL },
-+ { "sidebar-next-new", OP_SIDEBAR_NEXT_NEW, NULL},
-+ { "sidebar-prev-new", OP_SIDEBAR_PREV_NEW, NULL},
- { "sidebar-open", OP_SIDEBAR_OPEN, NULL },
- { NULL, 0, NULL }
- };
-@@ -283,6 +285,8 @@ const struct binding_t OpPager[] = { /* map: pager */
- { "sidebar-scroll-down", OP_SIDEBAR_SCROLL_DOWN, NULL },
- { "sidebar-next", OP_SIDEBAR_NEXT, NULL },
- { "sidebar-prev", OP_SIDEBAR_PREV, NULL },
-+ { "sidebar-next-new", OP_SIDEBAR_NEXT_NEW, NULL},
-+ { "sidebar-prev-new", OP_SIDEBAR_PREV_NEW, NULL},
- { "sidebar-open", OP_SIDEBAR_OPEN, NULL },
- { NULL, 0, NULL }
- };
-diff --git a/init.h b/init.h
-index 166671b..a5d4238 100644
---- a/init.h
-+++ b/init.h
-@@ -2059,6 +2059,11 @@ struct option_t MuttVars[] = {
- ** you're not using IMAP folders, you probably prefer setting this to "/"
- ** alone.
- */
-+ {"sidebar_newmail_only", DT_BOOL, R_BOTH, OPTSIDEBARNEWMAILONLY, 0 },
-+ /*
-+ ** .pp
-+ ** Show only new mail in the sidebar.
-+ */
- { "pgp_use_gpg_agent", DT_BOOL, R_NONE, OPTUSEGPGAGENT, 0},
- /*
- ** .pp
-diff --git a/mutt.h b/mutt.h
-index 5f25406..d73e514 100644
---- a/mutt.h
-+++ b/mutt.h
-@@ -529,6 +529,8 @@ enum
- OPTDONTHANDLEPGPKEYS, /* (pseudo) used to extract PGP keys */
- OPTUNBUFFEREDINPUT, /* (pseudo) don't use key buffer */
-
-+ OPTSIDEBARNEWMAILONLY,
-+
- OPTMAX
- };
-
-diff --git a/pager.c b/pager.c
-index 5cfcb75..8d64fe1 100644
---- a/pager.c
-+++ b/pager.c
-@@ -2789,6 +2789,8 @@ search_next:
- case OP_SIDEBAR_SCROLL_DOWN:
- case OP_SIDEBAR_NEXT:
- case OP_SIDEBAR_PREV:
-+ case OP_SIDEBAR_NEXT_NEW:
-+ case OP_SIDEBAR_PREV_NEW:
- scroll_sidebar(ch, MENU_PAGER);
- break;
-
-diff --git a/sidebar.c b/sidebar.c
-index 8f58f85..51a25ca 100644
---- a/sidebar.c
-+++ b/sidebar.c
-@@ -269,8 +269,21 @@ int draw_sidebar(int menu) {
- SETCOLOR(MT_COLOR_NEW);
- else if ( tmp->msg_flagged > 0 )
- SETCOLOR(MT_COLOR_FLAGGED);
-- else
-- SETCOLOR(MT_COLOR_NORMAL);
-+ else {
-+ /* make sure the path is either:
-+ 1. Containing new mail.
-+ 2. The inbox.
-+ 3. The current box.
-+ */
-+ if ((option (OPTSIDEBARNEWMAILONLY)) &&
-+ ( (tmp->msg_unread <= 0) &&
-+ ( tmp != Incoming ) &&
-+ Context &&
-+ ( strcmp( tmp->path, Context->path ) != 0 ) ) )
-+ continue;
-+ else
-+ SETCOLOR(MT_COLOR_NORMAL);
-+ }
-
- move( lines, 0 );
- if ( Context && !strcmp( tmp->path, Context->path ) ) {
-@@ -336,6 +349,29 @@ int draw_sidebar(int menu) {
- return 0;
- }
-
-+BUFFY * exist_next_new()
-+{
-+ BUFFY *tmp = CurBuffy;
-+ if(tmp == NULL) return NULL;
-+ while (tmp->next != NULL)
-+ {
-+ tmp = tmp->next;
-+ if(tmp->msg_unread) return tmp;
-+ }
-+ return NULL;
-+}
-+
-+BUFFY * exist_prev_new()
-+{
-+ BUFFY *tmp = CurBuffy;
-+ if(tmp == NULL) return NULL;
-+ while (tmp->prev != NULL)
-+ {
-+ tmp = tmp->prev;
-+ if(tmp->msg_unread) return tmp;
-+ }
-+ return NULL;
-+}
-
- void set_buffystats(CONTEXT* Context)
- {
-@@ -352,18 +388,33 @@ void set_buffystats(CONTEXT* Context)
-
- void scroll_sidebar(int op, int menu)
- {
-+ BUFFY *tmp;
- if(!SidebarWidth) return;
- if(!CurBuffy) return;
-
- switch (op) {
- case OP_SIDEBAR_NEXT:
-+ if (!option (OPTSIDEBARNEWMAILONLY)) {
- if ( CurBuffy->next == NULL ) return;
- CurBuffy = CurBuffy->next;
- break;
-+ }
-+ case OP_SIDEBAR_NEXT_NEW:
-+ if ( (tmp = exist_next_new()) == NULL)
-+ return;
-+ else CurBuffy = tmp;
-+ break;
- case OP_SIDEBAR_PREV:
-+ if (!option (OPTSIDEBARNEWMAILONLY)) {
- if ( CurBuffy->prev == NULL ) return;
- CurBuffy = CurBuffy->prev;
- break;
-+ }
-+ case OP_SIDEBAR_PREV_NEW:
-+ if ( (tmp = exist_prev_new()) == NULL)
-+ return;
-+ else CurBuffy = tmp;
-+ break;
- case OP_SIDEBAR_SCROLL_UP:
- CurBuffy = TopBuffy;
- if ( CurBuffy != Incoming ) {
diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar-utf8.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar-utf8.patch
deleted file mode 100644
index d67e43c24b6..00000000000
--- a/pkgs/applications/networking/mailreaders/mutt/sidebar-utf8.patch
+++ /dev/null
@@ -1,132 +0,0 @@
-From: Antonio Radici
-Date: Tue, 4 Mar 2014 15:39:14 +0100
-Subject: sidebar-utf8
-
-This patch fixes a problem with utf-8 strings and the sidebar,
-it rewrites entirely make_sidebar_entry so it also fixes some
-segfaults due to misallocations and overflows.
-
-See:
- http://bugs.debian.org/584581
- http://bugs.debian.org/603287
-
-Gbp-Pq: Topic mutt-patched
----
- sidebar.c | 97 +++++++++++++++++++++++++++++++++++++++++++--------------------
- 1 file changed, 67 insertions(+), 30 deletions(-)
-
-diff --git a/sidebar.c b/sidebar.c
-index 4356ffc..8f58f85 100644
---- a/sidebar.c
-+++ b/sidebar.c
-@@ -30,6 +30,7 @@
- #include
- #include "keymap.h"
- #include
-+#include
-
- /*BUFFY *CurBuffy = 0;*/
- static BUFFY *TopBuffy = 0;
-@@ -82,36 +83,72 @@ void calc_boundaries (int menu)
-
- char *make_sidebar_entry(char *box, int size, int new, int flagged)
- {
-- static char *entry = 0;
-- char *c;
-- int i = 0;
-- int delim_len = strlen(SidebarDelim);
--
-- c = realloc(entry, SidebarWidth - delim_len + 2);
-- if ( c ) entry = c;
-- entry[SidebarWidth - delim_len + 1] = 0;
-- for (; i < SidebarWidth - delim_len + 1; entry[i++] = ' ' );
-- i = strlen(box);
-- strncpy( entry, box, i < (SidebarWidth - delim_len + 1) ? i : (SidebarWidth - delim_len + 1) );
--
-- if (size == -1)
-- sprintf(entry + SidebarWidth - delim_len - 3, "?");
-- else if ( new ) {
-- if (flagged > 0) {
-- sprintf(
-- entry + SidebarWidth - delim_len - 5 - quick_log10(size) - quick_log10(new) - quick_log10(flagged),
-- "% d(%d)[%d]", size, new, flagged);
-- } else {
-- sprintf(
-- entry + SidebarWidth - delim_len - 3 - quick_log10(size) - quick_log10(new),
-- "% d(%d)", size, new);
-- }
-- } else if (flagged > 0) {
-- sprintf( entry + SidebarWidth - delim_len - 3 - quick_log10(size) - quick_log10(flagged), "% d[%d]", size, flagged);
-- } else {
-- sprintf( entry + SidebarWidth - delim_len - 1 - quick_log10(size), "% d", size);
-- }
-- return entry;
-+ char int_store[20]; // up to 64 bits integers
-+ int right_width, left_width;
-+ int box_len, box_bytes;
-+ int int_len;
-+ int right_offset = 0;
-+ int delim_len = strlen(SidebarDelim);
-+ static char *entry;
-+
-+ right_width = left_width = 0;
-+ box_len = box_bytes = 0;
-+
-+ // allocate an entry big enough to contain SidebarWidth wide chars
-+ entry = malloc((SidebarWidth*4)+1); // TODO: error check
-+
-+ // determine the right space (i.e.: how big are the numbers that we want to print)
-+ if ( size > 0 ) {
-+ int_len = snprintf(int_store, sizeof(int_store), "%d", size);
-+ right_width += int_len;
-+ } else {
-+ right_width = 1; // to represent 0
-+ }
-+ if ( new > 0 ) {
-+ int_len = snprintf(int_store, sizeof(int_store), "%d", new);
-+ right_width += int_len + 2; // 2 is for ()
-+ }
-+ if ( flagged > 0 ) {
-+ int_len = snprintf(int_store, sizeof(int_store), "%d", flagged);
-+ right_width += int_len + 2; // 2 is for []
-+ }
-+
-+ // determine how much space we have for *box and its padding (if any)
-+ left_width = SidebarWidth - right_width - 1 - delim_len; // 1 is for the space
-+ //fprintf(stdout, "left_width: %d right_width: %d\n", left_width, right_width);
-+ // right side overflow case
-+ if ( left_width <= 0 ) {
-+ snprintf(entry, SidebarWidth*4, "%-*.*s ...", SidebarWidth-4-delim_len, SidebarWidth-4-delim_len, box);
-+ return entry;
-+ }
-+ right_width -= delim_len;
-+
-+ // to support utf-8 chars we need to add enough space padding in case there
-+ // are less chars than bytes in *box
-+ box_len = mbstowcs(NULL, box, 0);
-+ box_bytes = strlen(box);
-+ // debug
-+ //fprintf(stdout, "box_len: %d box_bytes: %d (diff: %d)\n", box_len, box_bytes, (box_bytes-box_len));
-+ // if there is less string than the space we allow, then we will add the
-+ // spaces
-+ if ( box_len != -1 && box_len < left_width ) {
-+ left_width += (box_bytes - box_len);
-+ }
-+ // otherwise sprintf will truncate the string for us (therefore, no else case)
-+
-+ // print the sidebar entry (without new and flagged messages, at the moment)
-+ //fprintf(stdout, "left_width: %d right_width: %d\n", left_width, right_width);
-+ right_offset = snprintf(entry, SidebarWidth*4, "%-*.*s %d", left_width, left_width, box, size);
-+
-+ // then pad new and flagged messages if any
-+ if ( new > 0 ) {
-+ right_offset += snprintf(entry+right_offset, SidebarWidth*4-right_offset, "(%d)", new);
-+ }
-+ if ( flagged > 0 ) {
-+ right_offset += snprintf(entry+right_offset, SidebarWidth*4-right_offset, "[%d]", flagged);
-+ }
-+
-+ return entry;
- }
-
- void set_curbuffy(char buf[LONG_STRING])
diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar.patch
deleted file mode 100644
index bac1b4ab83b..00000000000
--- a/pkgs/applications/networking/mailreaders/mutt/sidebar.patch
+++ /dev/null
@@ -1,1477 +0,0 @@
-From: Antonio Radici
-Date: Tue, 4 Mar 2014 15:21:10 +0100
-Subject: sidebar
-
-When enabled, mutt will show a list of mailboxes with (new) message counts in a
-separate column on the left side of the screen.
-
-As this feature is still considered to be unstable, this patch is only applied
-in the "mutt-patched" package.
-
-* Configuration variables:
-
- sidebar_delim (string, default "|")
-
- This specifies the delimiter between the sidebar (if visible) and
- other screens.
-
- sidebar_visible (boolean, default no)
-
- This specifies whether or not to show sidebar (left-side list of folders).
-
- sidebar_width (integer, default 0)
--
- The width of the sidebar.
-
-* Patch source:
- - http://www.lunar-linux.org/index.php?page=mutt-sidebar
- - http://lunar-linux.org/~tchan/mutt/patch-1.5.19.sidebar.20090522.txt
-
-* Changes made:
- - 2008-08-02 myon: Refreshed patch using quilt push -f to remove hunks we do
- not need (Makefile.in).
-
- - 2014-03-04 evgeni: refresh sidebar patch with the version from OpenBSD
- Source:
- ftp://ftp.openbsd.org/pub/OpenBSD/distfiles/mutt/sidebar-1.5.22.diff1.gz
-
-Signed-off-by: Matteo F. Vescovi
-Signed-off-by: Evgeni Golov
-
-Gbp-Pq: Topic mutt-patched
----
- Makefile.am | 1 +
- OPS | 5 +
- buffy.c | 124 +++++++++++++++++++++
- buffy.h | 4 +
- color.c | 2 +
- compose.c | 26 ++---
- curs_main.c | 30 +++++-
- flags.c | 3 +
- functions.h | 10 ++
- globals.h | 4 +
- imap/command.c | 7 ++
- imap/imap.c | 2 +-
- init.h | 21 ++++
- mailbox.h | 1 +
- mbox.c | 2 +
- menu.c | 20 ++--
- mh.c | 22 ++++
- mutt.h | 4 +
- mutt_curses.h | 3 +
- muttlib.c | 48 +++++++++
- mx.c | 15 +++
- mx.h | 1 +
- pager.c | 30 ++++--
- sidebar.c | 333 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
- sidebar.h | 36 +++++++
- 25 files changed, 720 insertions(+), 34 deletions(-)
- create mode 100644 sidebar.c
- create mode 100644 sidebar.h
-
-diff --git a/Makefile.am b/Makefile.am
-index 5dfeff6..cf1ac98 100644
---- a/Makefile.am
-+++ b/Makefile.am
-@@ -33,6 +33,7 @@ mutt_SOURCES = \
- rfc822.c rfc1524.c rfc2047.c rfc2231.c rfc3676.c \
- 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 mutt_idna.c \
- url.c ascii.c crypt-mod.c crypt-mod.h safe_asprintf.c
-
-diff --git a/OPS b/OPS
-index 02cea8e..b036db9 100644
---- a/OPS
-+++ b/OPS
-@@ -180,3 +180,8 @@ OP_WHAT_KEY "display the keycode for a key press"
- OP_MAIN_SHOW_LIMIT "show currently active limit pattern"
- OP_MAIN_COLLAPSE_THREAD "collapse/uncollapse current thread"
- OP_MAIN_COLLAPSE_ALL "collapse/uncollapse all threads"
-+OP_SIDEBAR_SCROLL_UP "scroll the mailbox pane up 1 page"
-+OP_SIDEBAR_SCROLL_DOWN "scroll the mailbox pane down 1 page"
-+OP_SIDEBAR_NEXT "go down to next mailbox"
-+OP_SIDEBAR_PREV "go to previous mailbox"
-+OP_SIDEBAR_OPEN "open hilighted mailbox"
-diff --git a/buffy.c b/buffy.c
-index 12a16d1..90ca6db 100644
---- a/buffy.c
-+++ b/buffy.c
-@@ -161,6 +161,49 @@ void mutt_buffy_cleanup (const char *buf, struct stat *st)
- }
- }
-
-+static int buffy_compare_name(const void *a, const void *b) {
-+ const BUFFY *b1 = * (BUFFY * const *) a;
-+ const BUFFY *b2 = * (BUFFY * const *) b;
-+
-+ return mutt_strcoll(b1->path, b2->path);
-+}
-+
-+static BUFFY *buffy_sort(BUFFY *b)
-+{
-+ BUFFY *tmp = b;
-+ int buffycount = 0;
-+ BUFFY **ary;
-+ int i;
-+
-+ if (!option(OPTSIDEBARSORT))
-+ return b;
-+
-+ for (; tmp != NULL; tmp = tmp->next)
-+ buffycount++;
-+
-+ ary = (BUFFY **) safe_calloc(buffycount, sizeof (*ary));
-+
-+ tmp = b;
-+ for (i = 0; tmp != NULL; tmp = tmp->next, i++) {
-+ ary[i] = tmp;
-+ }
-+
-+ qsort(ary, buffycount, sizeof(*ary), buffy_compare_name);
-+
-+ for (i = 0; i < buffycount - 1; i++) {
-+ ary[i]->next = ary[i+1];
-+ }
-+ ary[buffycount - 1]->next = NULL;
-+ for (i = 1; i < buffycount; i++) {
-+ ary[i]->prev = ary[i-1];
-+ }
-+ ary[0]->prev = NULL;
-+
-+ tmp = ary[0];
-+ free(ary);
-+ return tmp;
-+}
-+
- BUFFY *mutt_find_mailbox (const char *path)
- {
- BUFFY *tmp = NULL;
-@@ -282,6 +325,7 @@ int mutt_parse_mailboxes (BUFFER *path, BUFFER *s, unsigned long data, BUFFER *e
- else
- (*tmp)->size = 0;
- }
-+ Incoming = buffy_sort(Incoming);
- return 0;
- }
-
-@@ -357,6 +401,69 @@ static int buffy_maildir_hasnew (BUFFY* mailbox)
-
- return 0;
- }
-+
-+/* update message counts for the sidebar */
-+void buffy_maildir_update (BUFFY* mailbox)
-+{
-+ char path[_POSIX_PATH_MAX];
-+ DIR *dirp;
-+ struct dirent *de;
-+ char *p;
-+
-+ mailbox->msgcount = 0;
-+ mailbox->msg_unread = 0;
-+ mailbox->msg_flagged = 0;
-+
-+ snprintf (path, sizeof (path), "%s/new", mailbox->path);
-+
-+ if ((dirp = opendir (path)) == NULL)
-+ {
-+ mailbox->magic = 0;
-+ return;
-+ }
-+
-+ while ((de = readdir (dirp)) != NULL)
-+ {
-+ if (*de->d_name == '.')
-+ continue;
-+
-+ if (!(p = strstr (de->d_name, ":2,")) || !strchr (p + 3, 'T')) {
-+ mailbox->new = 1;
-+ mailbox->msgcount++;
-+ mailbox->msg_unread++;
-+ }
-+ }
-+
-+ closedir (dirp);
-+ snprintf (path, sizeof (path), "%s/cur", mailbox->path);
-+
-+ if ((dirp = opendir (path)) == NULL)
-+ {
-+ mailbox->magic = 0;
-+ return;
-+ }
-+
-+ while ((de = readdir (dirp)) != NULL)
-+ {
-+ if (*de->d_name == '.')
-+ continue;
-+
-+ if (!(p = strstr (de->d_name, ":2,")) || !strchr (p + 3, 'T')) {
-+ mailbox->msgcount++;
-+ if ((p = strstr (de->d_name, ":2,"))) {
-+ if (!strchr (p + 3, 'T')) {
-+ if (!strchr (p + 3, 'S'))
-+ mailbox->msg_unread++;
-+ if (strchr(p + 3, 'F'))
-+ mailbox->msg_flagged++;
-+ }
-+ }
-+ }
-+ }
-+
-+ closedir (dirp);
-+}
-+
- /* returns 1 if mailbox has new mail */
- static int buffy_mbox_hasnew (BUFFY* mailbox, struct stat *sb)
- {
-@@ -388,6 +495,20 @@ static int buffy_mbox_hasnew (BUFFY* mailbox, struct stat *sb)
- return rc;
- }
-
-+/* update message counts for the sidebar */
-+void buffy_mbox_update (BUFFY* mailbox)
-+{
-+ CONTEXT *ctx = NULL;
-+
-+ ctx = mx_open_mailbox(mailbox->path, M_READONLY | M_QUIET | M_NOSORT | M_PEEK, NULL);
-+ if(ctx)
-+ {
-+ mailbox->msgcount = ctx->msgcount;
-+ mailbox->msg_unread = ctx->unread;
-+ mx_close_mailbox(ctx, 0);
-+ }
-+}
-+
- int mutt_buffy_check (int force)
- {
- BUFFY *tmp;
-@@ -461,16 +582,19 @@ int mutt_buffy_check (int force)
- {
- case M_MBOX:
- case M_MMDF:
-+ buffy_mbox_update (tmp);
- if (buffy_mbox_hasnew (tmp, &sb) > 0)
- BuffyCount++;
- break;
-
- case M_MAILDIR:
-+ buffy_maildir_update (tmp);
- if (buffy_maildir_hasnew (tmp) > 0)
- BuffyCount++;
- break;
-
- case M_MH:
-+ mh_buffy_update (tmp->path, &tmp->msgcount, &tmp->msg_unread, &tmp->msg_flagged);
- mh_buffy(tmp);
- if (tmp->new)
- BuffyCount++;
-diff --git a/buffy.h b/buffy.h
-index f9fc55a..672d178 100644
---- a/buffy.h
-+++ b/buffy.h
-@@ -25,7 +25,11 @@ typedef struct buffy_t
- char path[_POSIX_PATH_MAX];
- off_t size;
- struct buffy_t *next;
-+ struct buffy_t *prev;
- short new; /* mailbox has new mail */
-+ int msgcount; /* total number of messages */
-+ int msg_unread; /* number of unread messages */
-+ int msg_flagged; /* number of flagged messages */
- short notified; /* user has been notified */
- short magic; /* mailbox type */
- short newly_created; /* mbox or mmdf just popped into existence */
-diff --git a/color.c b/color.c
-index 64a46dc..d6f9198 100644
---- a/color.c
-+++ b/color.c
-@@ -94,6 +94,8 @@ static const struct mapping_t Fields[] =
- { "underline", MT_COLOR_UNDERLINE },
- { "index", MT_COLOR_INDEX },
- { "prompt", MT_COLOR_PROMPT },
-+ { "sidebar_new", MT_COLOR_NEW },
-+ { "sidebar_flagged", MT_COLOR_FLAGGED },
- { NULL, 0 }
- };
-
-diff --git a/compose.c b/compose.c
-index 9d87060..b63695f 100644
---- a/compose.c
-+++ b/compose.c
-@@ -72,7 +72,7 @@ enum
-
- #define HDR_XOFFSET 10
- #define TITLE_FMT "%10s" /* Used for Prompts, which are ASCII */
--#define W (COLS - HDR_XOFFSET)
-+#define W (COLS - HDR_XOFFSET - SidebarWidth)
-
- static const char * const Prompts[] =
- {
-@@ -110,7 +110,7 @@ static void snd_entry (char *b, size_t blen, MUTTMENU *menu, int num)
-
- static void redraw_crypt_lines (HEADER *msg)
- {
-- mvaddstr (HDR_CRYPT, 0, "Security: ");
-+ mvaddstr (HDR_CRYPT, SidebarWidth, "Security: ");
-
- if ((WithCrypto & (APPLICATION_PGP | APPLICATION_SMIME)) == 0)
- {
-@@ -145,7 +145,7 @@ static void redraw_crypt_lines (HEADER *msg)
- addstr (_(" (OppEnc mode)"));
-
- clrtoeol ();
-- move (HDR_CRYPTINFO, 0);
-+ move (HDR_CRYPTINFO, SidebarWidth);
- clrtoeol ();
-
- if ((WithCrypto & APPLICATION_PGP)
-@@ -162,7 +162,7 @@ static void redraw_crypt_lines (HEADER *msg)
- && (msg->security & ENCRYPT)
- && SmimeCryptAlg
- && *SmimeCryptAlg) {
-- mvprintw (HDR_CRYPTINFO, 40, "%s%s", _("Encrypt with: "),
-+ mvprintw (HDR_CRYPTINFO, SidebarWidth + 40, "%s%s", _("Encrypt with: "),
- NONULL(SmimeCryptAlg));
- }
- }
-@@ -175,7 +175,7 @@ static void redraw_mix_line (LIST *chain)
- int c;
- char *t;
-
-- mvaddstr (HDR_MIX, 0, " Mix: ");
-+ mvaddstr (HDR_MIX, SidebarWidth, " Mix: ");
-
- if (!chain)
- {
-@@ -190,7 +190,7 @@ static void redraw_mix_line (LIST *chain)
- if (t && t[0] == '0' && t[1] == '\0')
- t = "";
-
-- if (c + mutt_strlen (t) + 2 >= COLS)
-+ if (c + mutt_strlen (t) + 2 >= COLS - SidebarWidth)
- break;
-
- addstr (NONULL(t));
-@@ -242,7 +242,7 @@ static void draw_envelope_addr (int line, ADDRESS *addr)
-
- buf[0] = 0;
- rfc822_write_address (buf, sizeof (buf), addr, 1);
-- mvprintw (line, 0, TITLE_FMT, Prompts[line - 1]);
-+ mvprintw (line, SidebarWidth, TITLE_FMT, Prompts[line - 1]);
- mutt_paddstr (W, buf);
- }
-
-@@ -252,10 +252,10 @@ static void draw_envelope (HEADER *msg, char *fcc)
- draw_envelope_addr (HDR_TO, msg->env->to);
- draw_envelope_addr (HDR_CC, msg->env->cc);
- draw_envelope_addr (HDR_BCC, msg->env->bcc);
-- mvprintw (HDR_SUBJECT, 0, TITLE_FMT, Prompts[HDR_SUBJECT - 1]);
-+ mvprintw (HDR_SUBJECT, SidebarWidth, TITLE_FMT, Prompts[HDR_SUBJECT - 1]);
- mutt_paddstr (W, NONULL (msg->env->subject));
- draw_envelope_addr (HDR_REPLYTO, msg->env->reply_to);
-- mvprintw (HDR_FCC, 0, TITLE_FMT, Prompts[HDR_FCC - 1]);
-+ mvprintw (HDR_FCC, SidebarWidth, TITLE_FMT, Prompts[HDR_FCC - 1]);
- mutt_paddstr (W, fcc);
-
- if (WithCrypto)
-@@ -266,7 +266,7 @@ static void draw_envelope (HEADER *msg, char *fcc)
- #endif
-
- SETCOLOR (MT_COLOR_STATUS);
-- mvaddstr (HDR_ATTACH - 1, 0, _("-- Attachments"));
-+ mvaddstr (HDR_ATTACH - 1, SidebarWidth, _("-- Attachments"));
- clrtoeol ();
-
- NORMAL_COLOR;
-@@ -302,7 +302,7 @@ static int edit_address_list (int line, ADDRESS **addr)
- /* redraw the expanded list so the user can see the result */
- buf[0] = 0;
- rfc822_write_address (buf, sizeof (buf), *addr, 1);
-- move (line, HDR_XOFFSET);
-+ move (line, HDR_XOFFSET+SidebarWidth);
- mutt_paddstr (W, buf);
-
- return 0;
-@@ -562,7 +562,7 @@ int mutt_compose_menu (HEADER *msg, /* structure for new message */
- if (mutt_get_field ("Subject: ", buf, sizeof (buf), 0) == 0)
- {
- mutt_str_replace (&msg->env->subject, buf);
-- move (HDR_SUBJECT, HDR_XOFFSET);
-+ move (HDR_SUBJECT, HDR_XOFFSET + SidebarWidth);
- if (msg->env->subject)
- mutt_paddstr (W, msg->env->subject);
- else
-@@ -580,7 +580,7 @@ int mutt_compose_menu (HEADER *msg, /* structure for new message */
- {
- strfcpy (fcc, buf, fcclen);
- mutt_pretty_mailbox (fcc, fcclen);
-- move (HDR_FCC, HDR_XOFFSET);
-+ move (HDR_FCC, HDR_XOFFSET + SidebarWidth);
- mutt_paddstr (W, fcc);
- fccSet = 1;
- }
-diff --git a/curs_main.c b/curs_main.c
-index 9d718ee..ea530a6 100644
---- a/curs_main.c
-+++ b/curs_main.c
-@@ -26,7 +26,9 @@
- #include "mailbox.h"
- #include "mapping.h"
- #include "sort.h"
-+#include "buffy.h"
- #include "mx.h"
-+#include "sidebar.h"
-
- #ifdef USE_POP
- #include "pop.h"
-@@ -596,8 +598,12 @@ int mutt_index_menu (void)
- menu->redraw |= REDRAW_STATUS;
- if (do_buffy_notify)
- {
-- if (mutt_buffy_notify () && option (OPTBEEPNEW))
-- beep ();
-+ if (mutt_buffy_notify ())
-+ {
-+ menu->redraw |= REDRAW_FULL;
-+ if (option (OPTBEEPNEW))
-+ beep ();
-+ }
- }
- else
- do_buffy_notify = 1;
-@@ -609,6 +615,7 @@ int mutt_index_menu (void)
- if (menu->redraw & REDRAW_FULL)
- {
- menu_redraw_full (menu);
-+ draw_sidebar(menu->menu);
- mutt_show_error ();
- }
-
-@@ -631,9 +638,12 @@ int mutt_index_menu (void)
-
- if (menu->redraw & REDRAW_STATUS)
- {
-+ DrawFullLine = 1;
- menu_status_line (buf, sizeof (buf), menu, NONULL (Status));
-+ DrawFullLine = 0;
- move (option (OPTSTATUSONTOP) ? 0 : LINES-2, 0);
- SETCOLOR (MT_COLOR_STATUS);
-+ set_buffystats(Context);
- mutt_paddstr (COLS, buf);
- NORMAL_COLOR;
- menu->redraw &= ~REDRAW_STATUS;
-@@ -653,7 +663,7 @@ int mutt_index_menu (void)
- menu->oldcurrent = -1;
-
- if (option (OPTARROWCURSOR))
-- move (menu->current - menu->top + menu->offset, 2);
-+ move (menu->current - menu->top + menu->offset, SidebarWidth + 2);
- else if (option (OPTBRAILLEFRIENDLY))
- move (menu->current - menu->top + menu->offset, 0);
- else
-@@ -1154,6 +1164,7 @@ int mutt_index_menu (void)
- menu->redraw = REDRAW_FULL;
- break;
-
-+ case OP_SIDEBAR_OPEN:
- case OP_MAIN_CHANGE_FOLDER:
- case OP_MAIN_NEXT_UNREAD_MAILBOX:
-
-@@ -1185,7 +1196,11 @@ int mutt_index_menu (void)
- {
- mutt_buffy (buf, sizeof (buf));
-
-- if (mutt_enter_fname (cp, buf, sizeof (buf), &menu->redraw, 1) == -1)
-+ if ( op == OP_SIDEBAR_OPEN ) {
-+ if(!CurBuffy)
-+ break;
-+ strncpy( buf, CurBuffy->path, sizeof(buf) );
-+ } else if (mutt_enter_fname (cp, buf, sizeof (buf), &menu->redraw, 1) == -1)
- {
- if (menu->menu == MENU_PAGER)
- {
-@@ -1203,6 +1218,7 @@ int mutt_index_menu (void)
- }
-
- mutt_expand_path (buf, sizeof (buf));
-+ set_curbuffy(buf);
- if (mx_get_magic (buf) <= 0)
- {
- mutt_error (_("%s is not a mailbox."), buf);
-@@ -2306,6 +2322,12 @@ int mutt_index_menu (void)
- mutt_what_key();
- break;
-
-+ case OP_SIDEBAR_SCROLL_UP:
-+ case OP_SIDEBAR_SCROLL_DOWN:
-+ case OP_SIDEBAR_NEXT:
-+ case OP_SIDEBAR_PREV:
-+ scroll_sidebar(op, menu->menu);
-+ break;
- default:
- if (menu->menu == MENU_MAIN)
- km_error_key (MENU_MAIN);
-diff --git a/flags.c b/flags.c
-index 133fa35..48fb287 100644
---- a/flags.c
-+++ b/flags.c
-@@ -22,8 +22,10 @@
-
- #include "mutt.h"
- #include "mutt_curses.h"
-+#include "mutt_menu.h"
- #include "sort.h"
- #include "mx.h"
-+#include "sidebar.h"
-
- void _mutt_set_flag (CONTEXT *ctx, HEADER *h, int flag, int bf, int upd_ctx)
- {
-@@ -290,6 +292,7 @@ void _mutt_set_flag (CONTEXT *ctx, HEADER *h, int flag, int bf, int upd_ctx)
- */
- if (h->searched && (changed != h->changed || deleted != ctx->deleted || tagged != ctx->tagged || flagged != ctx->flagged))
- h->searched = 0;
-+ draw_sidebar(0);
- }
-
- void mutt_tag_set_flag (int flag, int bf)
-diff --git a/functions.h b/functions.h
-index 26171a0..ef8937a 100644
---- a/functions.h
-+++ b/functions.h
-@@ -170,6 +170,11 @@ const struct binding_t OpMain[] = { /* map: index */
- { "decrypt-save", OP_DECRYPT_SAVE, NULL },
-
-
-+ { "sidebar-scroll-up", OP_SIDEBAR_SCROLL_UP, NULL },
-+ { "sidebar-scroll-down", OP_SIDEBAR_SCROLL_DOWN, NULL },
-+ { "sidebar-next", OP_SIDEBAR_NEXT, NULL },
-+ { "sidebar-prev", OP_SIDEBAR_PREV, NULL },
-+ { "sidebar-open", OP_SIDEBAR_OPEN, NULL },
- { NULL, 0, NULL }
- };
-
-@@ -274,6 +279,11 @@ const struct binding_t OpPager[] = { /* map: pager */
-
- { "what-key", OP_WHAT_KEY, NULL },
-
-+ { "sidebar-scroll-up", OP_SIDEBAR_SCROLL_UP, NULL },
-+ { "sidebar-scroll-down", OP_SIDEBAR_SCROLL_DOWN, NULL },
-+ { "sidebar-next", OP_SIDEBAR_NEXT, NULL },
-+ { "sidebar-prev", OP_SIDEBAR_PREV, NULL },
-+ { "sidebar-open", OP_SIDEBAR_OPEN, NULL },
- { NULL, 0, NULL }
- };
-
-diff --git a/globals.h b/globals.h
-index 282fde3..004c795 100644
---- a/globals.h
-+++ b/globals.h
-@@ -118,6 +118,7 @@ WHERE short SearchContext;
- WHERE char *SendCharset;
- WHERE char *Sendmail;
- WHERE char *Shell;
-+WHERE char *SidebarDelim;
- WHERE char *Signature;
- WHERE char *SimpleSearch;
- #if USE_SMTP
-@@ -214,6 +215,9 @@ WHERE short ScoreThresholdDelete;
- WHERE short ScoreThresholdRead;
- WHERE short ScoreThresholdFlag;
-
-+WHERE struct buffy_t *CurBuffy INITVAL(0);
-+WHERE short DrawFullLine INITVAL(0);
-+WHERE short SidebarWidth;
- #ifdef USE_IMAP
- WHERE short ImapKeepalive;
- WHERE short ImapPipelineDepth;
-diff --git a/imap/command.c b/imap/command.c
-index 32f8417..d68e3ab 100644
---- a/imap/command.c
-+++ b/imap/command.c
-@@ -1012,6 +1012,13 @@ static void cmd_parse_status (IMAP_DATA* idata, char* s)
- opened */
- status->uidnext = oldun;
-
-+ /* Added to make the sidebar show the correct numbers */
-+ if (status->messages)
-+ {
-+ inc->msgcount = status->messages;
-+ inc->msg_unread = status->unseen;
-+ }
-+
- FREE (&value);
- return;
- }
-diff --git a/imap/imap.c b/imap/imap.c
-index f476873..af3ac3d 100644
---- a/imap/imap.c
-+++ b/imap/imap.c
-@@ -1529,7 +1529,7 @@ int imap_buffy_check (int force)
-
- imap_munge_mbox_name (munged, sizeof (munged), name);
- snprintf (command, sizeof (command),
-- "STATUS %s (UIDNEXT UIDVALIDITY UNSEEN RECENT)", munged);
-+ "STATUS %s (UIDNEXT UIDVALIDITY UNSEEN RECENT MESSAGES)", munged);
-
- if (imap_exec (idata, command, IMAP_CMD_QUEUE) < 0)
- {
-diff --git a/init.h b/init.h
-index 35224c1..c664e5f 100644
---- a/init.h
-+++ b/init.h
-@@ -2030,6 +2030,27 @@ struct option_t MuttVars[] = {
- ** not used.
- ** (PGP only)
- */
-+ {"sidebar_delim", DT_STR, R_BOTH, UL &SidebarDelim, "|"},
-+ /*
-+ ** .pp
-+ ** This specifies the delimiter between the sidebar (if visible) and
-+ ** other screens.
-+ */
-+ { "sidebar_visible", DT_BOOL, R_BOTH, OPTSIDEBAR, 0 },
-+ /*
-+ ** .pp
-+ ** This specifies whether or not to show sidebar (left-side list of folders).
-+ */
-+ { "sidebar_sort", DT_BOOL, R_BOTH, OPTSIDEBARSORT, 0 },
-+ /*
-+ ** .pp
-+ ** This specifies whether or not to sort the sidebar alphabetically.
-+ */
-+ { "sidebar_width", DT_NUM, R_BOTH, UL &SidebarWidth, 0 },
-+ /*
-+ ** .pp
-+ ** The width of the sidebar.
-+ */
- { "pgp_use_gpg_agent", DT_BOOL, R_NONE, OPTUSEGPGAGENT, 0},
- /*
- ** .pp
-diff --git a/mailbox.h b/mailbox.h
-index 2b2c9a1..000503d 100644
---- a/mailbox.h
-+++ b/mailbox.h
-@@ -27,6 +27,7 @@
- #define M_NEWFOLDER (1<<4) /* create a new folder - same as M_APPEND, but uses
- * safe_fopen() for mbox-style folders.
- */
-+#define M_PEEK (1<<5) /* revert atime back after taking a look (if applicable) */
-
- /* mx_open_new_message() */
- #define M_ADD_FROM (1<<0) /* add a From_ line */
-diff --git a/mbox.c b/mbox.c
-index 6d3b6bd..fa82eb3 100644
---- a/mbox.c
-+++ b/mbox.c
-@@ -104,6 +104,7 @@ int mmdf_parse_mailbox (CONTEXT *ctx)
- mutt_perror (ctx->path);
- return (-1);
- }
-+ ctx->atime = sb.st_atime;
- ctx->mtime = sb.st_mtime;
- ctx->size = sb.st_size;
-
-@@ -255,6 +256,7 @@ int mbox_parse_mailbox (CONTEXT *ctx)
-
- ctx->size = sb.st_size;
- ctx->mtime = sb.st_mtime;
-+ ctx->atime = sb.st_atime;
-
- #ifdef NFS_ATTRIBUTE_HACK
- if (sb.st_mtime > sb.st_atime)
-diff --git a/menu.c b/menu.c
-index 27b5f8e..bc3a02f 100644
---- a/menu.c
-+++ b/menu.c
-@@ -24,6 +24,7 @@
- #include "mutt_curses.h"
- #include "mutt_menu.h"
- #include "mbyte.h"
-+#include "sidebar.h"
-
- extern size_t UngetCount;
-
-@@ -186,7 +187,7 @@ static void menu_pad_string (char *s, size_t n)
- {
- char *scratch = safe_strdup (s);
- int shift = option (OPTARROWCURSOR) ? 3 : 0;
-- int cols = COLS - shift;
-+ int cols = COLS - shift - SidebarWidth;
-
- mutt_format_string (s, n, cols, cols, FMT_LEFT, ' ', scratch, mutt_strlen (scratch), 1);
- s[n - 1] = 0;
-@@ -239,6 +240,7 @@ void menu_redraw_index (MUTTMENU *menu)
- int do_color;
- int attr;
-
-+ draw_sidebar(1);
- for (i = menu->top; i < menu->top + menu->pagelen; i++)
- {
- if (i < menu->max)
-@@ -249,7 +251,7 @@ void menu_redraw_index (MUTTMENU *menu)
- menu_pad_string (buf, sizeof (buf));
-
- ATTRSET(attr);
-- move(i - menu->top + menu->offset, 0);
-+ move(i - menu->top + menu->offset, SidebarWidth);
- do_color = 1;
-
- if (i == menu->current)
-@@ -272,7 +274,7 @@ void menu_redraw_index (MUTTMENU *menu)
- else
- {
- NORMAL_COLOR;
-- CLEARLINE(i - menu->top + menu->offset);
-+ CLEARLINE_WIN(i - menu->top + menu->offset);
- }
- }
- NORMAL_COLOR;
-@@ -289,7 +291,7 @@ void menu_redraw_motion (MUTTMENU *menu)
- return;
- }
-
-- move (menu->oldcurrent + menu->offset - menu->top, 0);
-+ move (menu->oldcurrent + menu->offset - menu->top, SidebarWidth);
- ATTRSET(menu->color (menu->oldcurrent));
-
- if (option (OPTARROWCURSOR))
-@@ -301,13 +303,13 @@ void menu_redraw_motion (MUTTMENU *menu)
- {
- menu_make_entry (buf, sizeof (buf), menu, menu->oldcurrent);
- menu_pad_string (buf, sizeof (buf));
-- move (menu->oldcurrent + menu->offset - menu->top, 3);
-+ move (menu->oldcurrent + menu->offset - menu->top, SidebarWidth + 3);
- print_enriched_string (menu->color(menu->oldcurrent), (unsigned char *) buf, 1);
- }
-
- /* now draw it in the new location */
- SETCOLOR(MT_COLOR_INDICATOR);
-- mvaddstr(menu->current + menu->offset - menu->top, 0, "->");
-+ mvaddstr(menu->current + menu->offset - menu->top, SidebarWidth, "->");
- }
- else
- {
-@@ -320,7 +322,7 @@ void menu_redraw_motion (MUTTMENU *menu)
- menu_make_entry (buf, sizeof (buf), menu, menu->current);
- menu_pad_string (buf, sizeof (buf));
- SETCOLOR(MT_COLOR_INDICATOR);
-- move(menu->current - menu->top + menu->offset, 0);
-+ move(menu->current - menu->top + menu->offset, SidebarWidth);
- print_enriched_string (menu->color(menu->current), (unsigned char *) buf, 0);
- }
- menu->redraw &= REDRAW_STATUS;
-@@ -332,7 +334,7 @@ void menu_redraw_current (MUTTMENU *menu)
- char buf[LONG_STRING];
- int attr = menu->color (menu->current);
-
-- move (menu->current + menu->offset - menu->top, 0);
-+ move (menu->current + menu->offset - menu->top, SidebarWidth);
- menu_make_entry (buf, sizeof (buf), menu, menu->current);
- menu_pad_string (buf, sizeof (buf));
-
-@@ -881,7 +883,7 @@ int mutt_menuLoop (MUTTMENU *menu)
-
-
- if (option (OPTARROWCURSOR))
-- move (menu->current - menu->top + menu->offset, 2);
-+ move (menu->current - menu->top + menu->offset, SidebarWidth + 2);
- else if (option (OPTBRAILLEFRIENDLY))
- move (menu->current - menu->top + menu->offset, 0);
- else
-diff --git a/mh.c b/mh.c
-index 63e12d2..4a84a99 100644
---- a/mh.c
-+++ b/mh.c
-@@ -295,6 +295,28 @@ void mh_buffy(BUFFY *b)
- mhs_free_sequences (&mhs);
- }
-
-+void mh_buffy_update (const char *path, int *msgcount, int *msg_unread, int *msg_flagged)
-+{
-+ int i;
-+ struct mh_sequences mhs;
-+ memset (&mhs, 0, sizeof (mhs));
-+
-+ if (mh_read_sequences (&mhs, path) < 0)
-+ return;
-+
-+ msgcount = 0;
-+ msg_unread = 0;
-+ msg_flagged = 0;
-+ for (i = 0; i <= mhs.max; i++)
-+ msgcount++;
-+ if (mhs_check (&mhs, i) & MH_SEQ_UNSEEN) {
-+ msg_unread++;
-+ }
-+ if (mhs_check (&mhs, i) & MH_SEQ_FLAGGED)
-+ msg_flagged++;
-+ mhs_free_sequences (&mhs);
-+}
-+
- static int mh_mkstemp (CONTEXT * dest, FILE ** fp, char **tgt)
- {
- int fd;
-diff --git a/mutt.h b/mutt.h
-index 01d47de..5f25406 100644
---- a/mutt.h
-+++ b/mutt.h
-@@ -435,6 +435,8 @@ enum
- OPTSAVEEMPTY,
- OPTSAVENAME,
- OPTSCORE,
-+ OPTSIDEBAR,
-+ OPTSIDEBARSORT,
- OPTSIGDASHES,
- OPTSIGONTOP,
- OPTSORTRE,
-@@ -880,6 +882,7 @@ typedef struct _context
- {
- char *path;
- FILE *fp;
-+ time_t atime;
- time_t mtime;
- off_t size;
- off_t vsize;
-@@ -920,6 +923,7 @@ typedef struct _context
- unsigned int quiet : 1; /* inhibit status messages? */
- unsigned int collapsed : 1; /* are all threads collapsed? */
- unsigned int closing : 1; /* mailbox is being closed */
-+ unsigned int peekonly : 1; /* just taking a glance, revert atime */
-
- /* driver hooks */
- void *data; /* driver specific data */
-diff --git a/mutt_curses.h b/mutt_curses.h
-index f8bc47c..ef9884e 100644
---- a/mutt_curses.h
-+++ b/mutt_curses.h
-@@ -64,6 +64,7 @@
- #undef lines
- #endif /* lines */
-
-+#define CLEARLINE_WIN(x) move(x,SidebarWidth), clrtoeol()
- #define CLEARLINE(x) move(x,0), clrtoeol()
- #define CENTERLINE(x,y) move(y, (COLS-strlen(x))/2), addstr(x)
- #define BEEP() do { if (option (OPTBEEP)) beep(); } while (0)
-@@ -121,6 +122,8 @@ enum
- MT_COLOR_UNDERLINE,
- MT_COLOR_INDEX,
- MT_COLOR_PROMPT,
-+ MT_COLOR_NEW,
-+ MT_COLOR_FLAGGED,
- MT_COLOR_MAX
- };
-
-diff --git a/muttlib.c b/muttlib.c
-index c1d565f..039e7c3 100644
---- a/muttlib.c
-+++ b/muttlib.c
-@@ -1279,6 +1279,8 @@ void mutt_FormatString (char *dest, /* output buffer */
- pl = pw = 1;
-
- /* see if there's room to add content, else ignore */
-+ if ( DrawFullLine )
-+ {
- if ((col < COLS && wlen < destlen) || soft)
- {
- int pad;
-@@ -1322,6 +1324,52 @@ void mutt_FormatString (char *dest, /* output buffer */
- col += wid;
- src += pl;
- }
-+ }
-+ else
-+ {
-+ if ((col < COLS-SidebarWidth && wlen < destlen) || soft)
-+ {
-+ int pad;
-+
-+ /* get contents after padding */
-+ mutt_FormatString (buf, sizeof (buf), 0, src + pl, callback, data, flags);
-+ len = mutt_strlen (buf);
-+ wid = mutt_strwidth (buf);
-+
-+ /* try to consume as many columns as we can, if we don't have
-+ * memory for that, use as much memory as possible */
-+ pad = (COLS - SidebarWidth - col - wid) / pw;
-+ if (pad > 0 && wlen + (pad * pl) + len > destlen)
-+ pad = ((signed)(destlen - wlen - len)) / pl;
-+ if (pad > 0)
-+ {
-+ while (pad--)
-+ {
-+ memcpy (wptr, src, pl);
-+ wptr += pl;
-+ wlen += pl;
-+ col += pw;
-+ }
-+ }
-+ else if (soft && pad < 0)
-+ {
-+ /* \0-terminate dest for length computation in mutt_wstr_trunc() */
-+ *wptr = 0;
-+ /* make sure right part is at most as wide as display */
-+ len = mutt_wstr_trunc (buf, destlen, COLS, &wid);
-+ /* truncate left so that right part fits completely in */
-+ wlen = mutt_wstr_trunc (dest, destlen - len, col + pad, &col);
-+ wptr = dest + wlen;
-+ }
-+ if (len + wlen > destlen)
-+ len = mutt_wstr_trunc (buf, destlen - wlen, COLS - SidebarWidth - col, NULL);
-+ memcpy (wptr, buf, len);
-+ wptr += len;
-+ wlen += len;
-+ col += wid;
-+ src += pl;
-+ }
-+ }
- break; /* skip rest of input */
- }
- else if (ch == '|')
-diff --git a/mx.c b/mx.c
-index 0a1a80e..e80b8ff 100644
---- a/mx.c
-+++ b/mx.c
-@@ -595,6 +595,7 @@ static int mx_open_mailbox_append (CONTEXT *ctx, int flags)
- * M_APPEND open mailbox for appending
- * M_READONLY open mailbox in read-only mode
- * M_QUIET only print error messages
-+ * M_PEEK revert atime where applicable
- * ctx if non-null, context struct to use
- */
- CONTEXT *mx_open_mailbox (const char *path, int flags, CONTEXT *pctx)
-@@ -617,6 +618,8 @@ CONTEXT *mx_open_mailbox (const char *path, int flags, CONTEXT *pctx)
- ctx->quiet = 1;
- if (flags & M_READONLY)
- ctx->readonly = 1;
-+ if (flags & M_PEEK)
-+ ctx->peekonly = 1;
-
- if (flags & (M_APPEND|M_NEWFOLDER))
- {
-@@ -721,9 +724,21 @@ CONTEXT *mx_open_mailbox (const char *path, int flags, CONTEXT *pctx)
- void mx_fastclose_mailbox (CONTEXT *ctx)
- {
- int i;
-+#ifndef BUFFY_SIZE
-+ struct utimbuf ut;
-+#endif
-
- if(!ctx)
- return;
-+#ifndef BUFFY_SIZE
-+ /* fix up the times so buffy won't get confused */
-+ if (ctx->peekonly && ctx->path && ctx->mtime > ctx->atime)
-+ {
-+ ut.actime = ctx->atime;
-+ ut.modtime = ctx->mtime;
-+ utime (ctx->path, &ut);
-+ }
-+#endif
-
- /* never announce that a mailbox we've just left has new mail. #3290
- * XXX: really belongs in mx_close_mailbox, but this is a nice hook point */
-diff --git a/mx.h b/mx.h
-index 2ef4ec7..4aabadf 100644
---- a/mx.h
-+++ b/mx.h
-@@ -60,6 +60,7 @@ void mbox_reset_atime (CONTEXT *, struct stat *);
- int mh_read_dir (CONTEXT *, const char *);
- int mh_sync_mailbox (CONTEXT *, int *);
- int mh_check_mailbox (CONTEXT *, int *);
-+void mh_buffy_update (const char *, int *, int *, int *);
- int mh_check_empty (const char *);
-
- int maildir_read_dir (CONTEXT *);
-diff --git a/pager.c b/pager.c
-index c99f1e4..5cfcb75 100644
---- a/pager.c
-+++ b/pager.c
-@@ -29,6 +29,7 @@
- #include "pager.h"
- #include "attach.h"
- #include "mbyte.h"
-+#include "sidebar.h"
-
- #include "mutt_crypt.h"
-
-@@ -1095,6 +1096,7 @@ static int format_line (struct line_t **lineInfo, int n, unsigned char *buf,
- wchar_t wc;
- mbstate_t mbstate;
- int wrap_cols = mutt_term_width ((flags & M_PAGER_NOWRAP) ? 0 : Wrap);
-+ wrap_cols -= SidebarWidth;
-
- if (check_attachment_marker ((char *)buf) == 0)
- wrap_cols = COLS;
-@@ -1746,7 +1748,7 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra)
- if ((redraw & REDRAW_BODY) || topline != oldtopline)
- {
- do {
-- move (bodyoffset, 0);
-+ move (bodyoffset, SidebarWidth);
- curline = oldtopline = topline;
- lines = 0;
- force_redraw = 0;
-@@ -1759,6 +1761,7 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra)
- &QuoteList, &q_level, &force_redraw, &SearchRE) > 0)
- lines++;
- curline++;
-+ move(lines + bodyoffset, SidebarWidth);
- }
- last_offset = lineInfo[curline].offset;
- } while (force_redraw);
-@@ -1771,6 +1774,7 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra)
- addch ('~');
- addch ('\n');
- lines++;
-+ move(lines + bodyoffset, SidebarWidth);
- }
- NORMAL_COLOR;
-
-@@ -1794,22 +1798,22 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra)
- strfcpy(pager_progress_str, (topline == 0) ? "all" : "end", sizeof(pager_progress_str));
-
- /* print out the pager status bar */
-- move (statusoffset, 0);
-+ move (statusoffset, SidebarWidth);
- SETCOLOR (MT_COLOR_STATUS);
-
- if (IsHeader (extra) || IsMsgAttach (extra))
- {
-- size_t l1 = COLS * MB_LEN_MAX;
-+ size_t l1 = (COLS-SidebarWidth) * MB_LEN_MAX;
- size_t l2 = sizeof (buffer);
- hfi.hdr = (IsHeader (extra)) ? extra->hdr : extra->bdy->hdr;
- mutt_make_string_info (buffer, l1 < l2 ? l1 : l2, NONULL (PagerFmt), &hfi, M_FORMAT_MAKEPRINT);
-- mutt_paddstr (COLS, buffer);
-+ mutt_paddstr (COLS-SidebarWidth, buffer);
- }
- else
- {
- char bn[STRING];
- snprintf (bn, sizeof (bn), "%s (%s)", banner, pager_progress_str);
-- mutt_paddstr (COLS, bn);
-+ mutt_paddstr (COLS-SidebarWidth, bn);
- }
- NORMAL_COLOR;
- if (option(OPTTSENABLED) && TSSupported)
-@@ -1826,16 +1830,21 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra)
- /* redraw the pager_index indicator, because the
- * flags for this message might have changed. */
- menu_redraw_current (index);
-+ draw_sidebar(MENU_PAGER);
-
- /* print out the index status bar */
- menu_status_line (buffer, sizeof (buffer), index, NONULL(Status));
-
-- move (indexoffset + (option (OPTSTATUSONTOP) ? 0 : (indexlen - 1)), 0);
-+ move (indexoffset + (option (OPTSTATUSONTOP) ? 0 : (indexlen - 1)), SidebarWidth);
- SETCOLOR (MT_COLOR_STATUS);
-- mutt_paddstr (COLS, buffer);
-+ mutt_paddstr (COLS-SidebarWidth, buffer);
- NORMAL_COLOR;
- }
-
-+ /* if we're not using the index, update every time */
-+ if ( index == 0 )
-+ draw_sidebar(MENU_PAGER);
-+
- redraw = 0;
-
- if (option(OPTBRAILLEFRIENDLY)) {
-@@ -2776,6 +2785,13 @@ search_next:
- mutt_what_key ();
- break;
-
-+ case OP_SIDEBAR_SCROLL_UP:
-+ case OP_SIDEBAR_SCROLL_DOWN:
-+ case OP_SIDEBAR_NEXT:
-+ case OP_SIDEBAR_PREV:
-+ scroll_sidebar(ch, MENU_PAGER);
-+ break;
-+
- default:
- ch = -1;
- break;
-diff --git a/sidebar.c b/sidebar.c
-new file mode 100644
-index 0000000..6098c2a
---- /dev/null
-+++ b/sidebar.c
-@@ -0,0 +1,333 @@
-+/*
-+ * Copyright (C) ????-2004 Justin Hibbits
-+ * Copyright (C) 2004 Thomer M. Gil
-+ *
-+ * This program is free software; you can redistribute it and/or modify
-+ * it under the terms of the GNU General Public License as published by
-+ * the Free Software Foundation; either version 2 of the License, or
-+ * (at your option) any later version.
-+ *
-+ * This program is distributed in the hope that it will be useful,
-+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
-+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-+ * GNU General Public License for more details.
-+ *
-+ * You should have received a copy of the GNU General Public License
-+ * along with this program; if not, write to the Free Software
-+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
-+ */
-+
-+
-+#if HAVE_CONFIG_H
-+# include "config.h"
-+#endif
-+
-+#include "mutt.h"
-+#include "mutt_menu.h"
-+#include "mutt_curses.h"
-+#include "sidebar.h"
-+#include "buffy.h"
-+#include
-+#include "keymap.h"
-+#include
-+
-+/*BUFFY *CurBuffy = 0;*/
-+static BUFFY *TopBuffy = 0;
-+static BUFFY *BottomBuffy = 0;
-+static int known_lines = 0;
-+
-+static int quick_log10(int n)
-+{
-+ char string[32];
-+ sprintf(string, "%d", n);
-+ return strlen(string);
-+}
-+
-+void calc_boundaries (int menu)
-+{
-+ BUFFY *tmp = Incoming;
-+
-+ if ( known_lines != LINES ) {
-+ TopBuffy = BottomBuffy = 0;
-+ known_lines = LINES;
-+ }
-+ for ( ; tmp->next != 0; tmp = tmp->next )
-+ tmp->next->prev = tmp;
-+
-+ if ( TopBuffy == 0 && BottomBuffy == 0 )
-+ TopBuffy = Incoming;
-+ if ( BottomBuffy == 0 ) {
-+ int count = LINES - 2 - (menu != MENU_PAGER || option(OPTSTATUSONTOP));
-+ BottomBuffy = TopBuffy;
-+ while ( --count && BottomBuffy->next )
-+ BottomBuffy = BottomBuffy->next;
-+ }
-+ else if ( TopBuffy == CurBuffy->next ) {
-+ int count = LINES - 2 - (menu != MENU_PAGER);
-+ BottomBuffy = CurBuffy;
-+ tmp = BottomBuffy;
-+ while ( --count && tmp->prev)
-+ tmp = tmp->prev;
-+ TopBuffy = tmp;
-+ }
-+ else if ( BottomBuffy == CurBuffy->prev ) {
-+ int count = LINES - 2 - (menu != MENU_PAGER);
-+ TopBuffy = CurBuffy;
-+ tmp = TopBuffy;
-+ while ( --count && tmp->next )
-+ tmp = tmp->next;
-+ BottomBuffy = tmp;
-+ }
-+}
-+
-+char *make_sidebar_entry(char *box, int size, int new, int flagged)
-+{
-+ static char *entry = 0;
-+ char *c;
-+ int i = 0;
-+ int delim_len = strlen(SidebarDelim);
-+
-+ c = realloc(entry, SidebarWidth - delim_len + 2);
-+ if ( c ) entry = c;
-+ entry[SidebarWidth - delim_len + 1] = 0;
-+ for (; i < SidebarWidth - delim_len + 1; entry[i++] = ' ' );
-+ i = strlen(box);
-+ strncpy( entry, box, i < (SidebarWidth - delim_len + 1) ? i : (SidebarWidth - delim_len + 1) );
-+
-+ if (size == -1)
-+ sprintf(entry + SidebarWidth - delim_len - 3, "?");
-+ else if ( new ) {
-+ if (flagged > 0) {
-+ sprintf(
-+ entry + SidebarWidth - delim_len - 5 - quick_log10(size) - quick_log10(new) - quick_log10(flagged),
-+ "% d(%d)[%d]", size, new, flagged);
-+ } else {
-+ sprintf(
-+ entry + SidebarWidth - delim_len - 3 - quick_log10(size) - quick_log10(new),
-+ "% d(%d)", size, new);
-+ }
-+ } else if (flagged > 0) {
-+ sprintf( entry + SidebarWidth - delim_len - 3 - quick_log10(size) - quick_log10(flagged), "% d[%d]", size, flagged);
-+ } else {
-+ sprintf( entry + SidebarWidth - delim_len - 1 - quick_log10(size), "% d", size);
-+ }
-+ return entry;
-+}
-+
-+void set_curbuffy(char buf[LONG_STRING])
-+{
-+ BUFFY* tmp = CurBuffy = Incoming;
-+
-+ if (!Incoming)
-+ return;
-+
-+ while(1) {
-+ if(!strcmp(tmp->path, buf)) {
-+ CurBuffy = tmp;
-+ break;
-+ }
-+
-+ if(tmp->next)
-+ tmp = tmp->next;
-+ else
-+ break;
-+ }
-+}
-+
-+int draw_sidebar(int menu) {
-+
-+ int lines = option(OPTHELP) ? 1 : 0;
-+ BUFFY *tmp;
-+#ifndef USE_SLANG_CURSES
-+ attr_t attrs;
-+#endif
-+ short delim_len = strlen(SidebarDelim);
-+ short color_pair;
-+
-+ static bool initialized = false;
-+ static int prev_show_value;
-+ static short saveSidebarWidth;
-+
-+ /* initialize first time */
-+ if(!initialized) {
-+ prev_show_value = option(OPTSIDEBAR);
-+ saveSidebarWidth = SidebarWidth;
-+ if(!option(OPTSIDEBAR)) SidebarWidth = 0;
-+ initialized = true;
-+ }
-+
-+ /* save or restore the value SidebarWidth */
-+ if(prev_show_value != option(OPTSIDEBAR)) {
-+ if(prev_show_value && !option(OPTSIDEBAR)) {
-+ saveSidebarWidth = SidebarWidth;
-+ SidebarWidth = 0;
-+ } else if(!prev_show_value && option(OPTSIDEBAR)) {
-+ SidebarWidth = saveSidebarWidth;
-+ }
-+ prev_show_value = option(OPTSIDEBAR);
-+ }
-+
-+
-+// if ( SidebarWidth == 0 ) return 0;
-+ if (SidebarWidth > 0 && option (OPTSIDEBAR)
-+ && delim_len >= SidebarWidth) {
-+ unset_option (OPTSIDEBAR);
-+ /* saveSidebarWidth = SidebarWidth; */
-+ if (saveSidebarWidth > delim_len) {
-+ SidebarWidth = saveSidebarWidth;
-+ mutt_error (_("Value for sidebar_delim is too long. Disabling sidebar."));
-+ sleep (2);
-+ } else {
-+ SidebarWidth = 0;
-+ mutt_error (_("Value for sidebar_delim is too long. Disabling sidebar. Please set your sidebar_width to a sane value."));
-+ sleep (4); /* the advise to set a sane value should be seen long enough */
-+ }
-+ saveSidebarWidth = 0;
-+ return (0);
-+ }
-+
-+ if ( SidebarWidth == 0 || !option(OPTSIDEBAR)) {
-+ if (SidebarWidth > 0) {
-+ saveSidebarWidth = SidebarWidth;
-+ SidebarWidth = 0;
-+ }
-+ unset_option(OPTSIDEBAR);
-+ return 0;
-+ }
-+
-+ /* get attributes for divider */
-+ SETCOLOR(MT_COLOR_STATUS);
-+#ifndef USE_SLANG_CURSES
-+ attr_get(&attrs, &color_pair, 0);
-+#else
-+ color_pair = attr_get();
-+#endif
-+ SETCOLOR(MT_COLOR_NORMAL);
-+
-+ /* draw the divider */
-+
-+ for ( ; lines < LINES-1-(menu != MENU_PAGER || option(OPTSTATUSONTOP)); lines++ ) {
-+ move(lines, SidebarWidth - delim_len);
-+ addstr(NONULL(SidebarDelim));
-+#ifndef USE_SLANG_CURSES
-+ mvchgat(lines, SidebarWidth - delim_len, delim_len, 0, color_pair, NULL);
-+#endif
-+ }
-+
-+ if ( Incoming == 0 ) return 0;
-+ lines = option(OPTHELP) ? 1 : 0; /* go back to the top */
-+
-+ if ( known_lines != LINES || TopBuffy == 0 || BottomBuffy == 0 )
-+ calc_boundaries(menu);
-+ if ( CurBuffy == 0 ) CurBuffy = Incoming;
-+
-+ tmp = TopBuffy;
-+
-+ SETCOLOR(MT_COLOR_NORMAL);
-+
-+ for ( ; tmp && lines < LINES-1 - (menu != MENU_PAGER || option(OPTSTATUSONTOP)); tmp = tmp->next ) {
-+ if ( tmp == CurBuffy )
-+ SETCOLOR(MT_COLOR_INDICATOR);
-+ else if ( tmp->msg_unread > 0 )
-+ SETCOLOR(MT_COLOR_NEW);
-+ else if ( tmp->msg_flagged > 0 )
-+ SETCOLOR(MT_COLOR_FLAGGED);
-+ else
-+ SETCOLOR(MT_COLOR_NORMAL);
-+
-+ move( lines, 0 );
-+ if ( Context && !strcmp( tmp->path, Context->path ) ) {
-+ tmp->msg_unread = Context->unread;
-+ tmp->msgcount = Context->msgcount;
-+ tmp->msg_flagged = Context->flagged;
-+ }
-+ // check whether Maildir is a prefix of the current folder's path
-+ short maildir_is_prefix = 0;
-+ if ( (strlen(tmp->path) > strlen(Maildir)) &&
-+ (strncmp(Maildir, tmp->path, strlen(Maildir)) == 0) )
-+ maildir_is_prefix = 1;
-+ // calculate depth of current folder and generate its display name with indented spaces
-+ int sidebar_folder_depth = 0;
-+ char *sidebar_folder_name;
-+ sidebar_folder_name = basename(tmp->path);
-+ if ( maildir_is_prefix ) {
-+ char *tmp_folder_name;
-+ int i;
-+ tmp_folder_name = tmp->path + strlen(Maildir);
-+ for (i = 0; i < strlen(tmp->path) - strlen(Maildir); i++) {
-+ if (tmp_folder_name[i] == '/') sidebar_folder_depth++;
-+ }
-+ if (sidebar_folder_depth > 0) {
-+ sidebar_folder_name = malloc(strlen(basename(tmp->path)) + sidebar_folder_depth + 1);
-+ for (i=0; i < sidebar_folder_depth; i++)
-+ sidebar_folder_name[i]=' ';
-+ sidebar_folder_name[i]=0;
-+ strncat(sidebar_folder_name, basename(tmp->path), strlen(basename(tmp->path)) + sidebar_folder_depth);
-+ }
-+ }
-+ printw( "%.*s", SidebarWidth - delim_len + 1,
-+ make_sidebar_entry(sidebar_folder_name, tmp->msgcount,
-+ tmp->msg_unread, tmp->msg_flagged));
-+ if (sidebar_folder_depth > 0)
-+ free(sidebar_folder_name);
-+ lines++;
-+ }
-+ SETCOLOR(MT_COLOR_NORMAL);
-+ for ( ; lines < LINES-1 - (menu != MENU_PAGER || option(OPTSTATUSONTOP)); lines++ ) {
-+ int i = 0;
-+ move( lines, 0 );
-+ for ( ; i < SidebarWidth - delim_len; i++ )
-+ addch(' ');
-+ }
-+ return 0;
-+}
-+
-+
-+void set_buffystats(CONTEXT* Context)
-+{
-+ BUFFY *tmp = Incoming;
-+ while(tmp) {
-+ if(Context && !strcmp(tmp->path, Context->path)) {
-+ tmp->msg_unread = Context->unread;
-+ tmp->msgcount = Context->msgcount;
-+ break;
-+ }
-+ tmp = tmp->next;
-+ }
-+}
-+
-+void scroll_sidebar(int op, int menu)
-+{
-+ if(!SidebarWidth) return;
-+ if(!CurBuffy) return;
-+
-+ switch (op) {
-+ case OP_SIDEBAR_NEXT:
-+ if ( CurBuffy->next == NULL ) return;
-+ CurBuffy = CurBuffy->next;
-+ break;
-+ case OP_SIDEBAR_PREV:
-+ if ( CurBuffy->prev == NULL ) return;
-+ CurBuffy = CurBuffy->prev;
-+ break;
-+ case OP_SIDEBAR_SCROLL_UP:
-+ CurBuffy = TopBuffy;
-+ if ( CurBuffy != Incoming ) {
-+ calc_boundaries(menu);
-+ CurBuffy = CurBuffy->prev;
-+ }
-+ break;
-+ case OP_SIDEBAR_SCROLL_DOWN:
-+ CurBuffy = BottomBuffy;
-+ if ( CurBuffy->next ) {
-+ calc_boundaries(menu);
-+ CurBuffy = CurBuffy->next;
-+ }
-+ break;
-+ default:
-+ return;
-+ }
-+ calc_boundaries(menu);
-+ draw_sidebar(menu);
-+}
-+
-diff --git a/sidebar.h b/sidebar.h
-new file mode 100644
-index 0000000..d195f11
---- /dev/null
-+++ b/sidebar.h
-@@ -0,0 +1,36 @@
-+/*
-+ * Copyright (C) ????-2004 Justin Hibbits
-+ * Copyright (C) 2004 Thomer M. Gil
-+ *
-+ * This program is free software; you can redistribute it and/or modify
-+ * it under the terms of the GNU General Public License as published by
-+ * the Free Software Foundation; either version 2 of the License, or
-+ * (at your option) any later version.
-+ *
-+ * This program is distributed in the hope that it will be useful,
-+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
-+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-+ * GNU General Public License for more details.
-+ *
-+ * You should have received a copy of the GNU General Public License
-+ * along with this program; if not, write to the Free Software
-+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
-+ */
-+
-+#ifndef SIDEBAR_H
-+#define SIDEBAR_H
-+
-+struct MBOX_LIST {
-+ char *path;
-+ int msgcount;
-+ int new;
-+} MBLIST;
-+
-+/* parameter is whether or not to go to the status line */
-+/* used for omitting the last | that covers up the status bar in the index */
-+int draw_sidebar(int);
-+void scroll_sidebar(int, int);
-+void set_curbuffy(char*);
-+void set_buffystats(CONTEXT*);
-+
-+#endif /* SIDEBAR_H */
diff --git a/pkgs/applications/networking/mailreaders/mutt/trash-folder.patch b/pkgs/applications/networking/mailreaders/mutt/trash-folder.patch
deleted file mode 100644
index ce47b0c30e5..00000000000
--- a/pkgs/applications/networking/mailreaders/mutt/trash-folder.patch
+++ /dev/null
@@ -1,316 +0,0 @@
-From: Cedric Duval
-Date: Thu, 27 Feb 2014 12:27:41 +0100
-Subject: trash-folder
-
-With this patch, if the trash variable is set to a path (unset by default), the
-deleted mails will be moved to a trash folder instead of being irremediably
-purged when syncing the mailbox.
-
-For instance, set trash="~/Mail/trash" will cause every deleted mail to go to
-this folder.
-
-Note that the append to the trash folder doesn't occur until the resync is
-done. This allows you to change your mind and undo deletes, and thus the moves
-to the trash folder are unnecessary.
-
-Notes
-
- * You might also want to have a look at the purge message feature below
- which is related to this patch.
- * IMAP is now supported. To retain the previous behavior, add this to your
- muttrc:
- folder-hook ^imap:// 'unset trash'
-
-FAQ
-
-Every once in a while, someone asks what are the advantages of this patch over
-a macro based solution. Here's an attempt to answer this question:
-
- * The folder history doesn't clutter up with unwanted trash entries.
- * Delayed move to the trash allows to change one's mind.
- * No need to treat the case of "normal folders" and trash folders
- separately with folder-hooks, and to create two sets of macros (one for
- the index, one for the pager).
- * Works not only with delete-message, but also with every deletion
- functions like delete-pattern, delete-thread or delete-subthread.
-
-To sum up, it's more integrated and transparent to the user.
-
-* Patch last synced with upstream:
- - Date: 2007-02-15
- - File: http://cedricduval.free.fr/mutt/patches/download/patch-1.5.5.1.cd.trash_folder.3.4
-
-* Changes made:
- - Updated to 1.5.13:
- - structure of _mutt_save_message changed (commands.c)
- - context of option (OPTCONFIRMAPPEND) changed (muttlib.c)
- - Fixed indentation of "appended" in mutt.h.
-
-Signed-off-by: Matteo F. Vescovi
-
-Gbp-Pq: Topic features
----
- commands.c | 1 +
- flags.c | 19 +++++++++++++++++-
- globals.h | 1 +
- imap/message.c | 2 ++
- init.h | 10 ++++++++++
- mutt.h | 3 +++
- muttlib.c | 4 +++-
- mx.c | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
- postpone.c | 3 +++
- 9 files changed, 103 insertions(+), 2 deletions(-)
-
-diff --git a/commands.c b/commands.c
-index 5dbd100..7fd014b 100644
---- a/commands.c
-+++ b/commands.c
-@@ -720,6 +720,7 @@ int _mutt_save_message (HEADER *h, CONTEXT *ctx, int delete, int decode, int dec
- if (option (OPTDELETEUNTAG))
- mutt_set_flag (Context, h, M_TAG, 0);
- }
-+ mutt_set_flag (Context, h, M_APPENDED, 1);
-
- return 0;
- }
-diff --git a/flags.c b/flags.c
-index f0f3d81..dfa6a50 100644
---- a/flags.c
-+++ b/flags.c
-@@ -65,7 +65,13 @@ void _mutt_set_flag (CONTEXT *ctx, HEADER *h, int flag, int bf, int upd_ctx)
- {
- h->deleted = 0;
- update = 1;
-- if (upd_ctx) ctx->deleted--;
-+ if (upd_ctx)
-+ {
-+ ctx->deleted--;
-+ if (h->appended)
-+ ctx->appended--;
-+ }
-+ h->appended = 0; /* when undeleting, also reset the appended flag */
- #ifdef USE_IMAP
- /* see my comment above */
- if (ctx->magic == M_IMAP)
-@@ -87,6 +93,17 @@ void _mutt_set_flag (CONTEXT *ctx, HEADER *h, int flag, int bf, int upd_ctx)
- }
- break;
-
-+ case M_APPENDED:
-+ if (bf)
-+ {
-+ if (!h->appended)
-+ {
-+ h->appended = 1;
-+ if (upd_ctx) ctx->appended++;
-+ }
-+ }
-+ break;
-+
- case M_NEW:
-
- if (!mutt_bit_isset(ctx->rights,M_ACL_SEEN))
-diff --git a/globals.h b/globals.h
-index e77030c..6a1b8da 100644
---- a/globals.h
-+++ b/globals.h
-@@ -144,6 +144,7 @@ WHERE char *Tochars;
- WHERE char *TSStatusFormat;
- WHERE char *TSIconFormat;
- WHERE short TSSupported;
-+WHERE char *TrashPath;
- WHERE char *Username;
- WHERE char *Visual;
-
-diff --git a/imap/message.c b/imap/message.c
-index 3877381..039fda6 100644
---- a/imap/message.c
-+++ b/imap/message.c
-@@ -884,6 +884,7 @@ int imap_copy_messages (CONTEXT* ctx, HEADER* h, char* dest, int delete)
- if (ctx->hdrs[n]->tagged)
- {
- mutt_set_flag (ctx, ctx->hdrs[n], M_DELETE, 1);
-+ mutt_set_flag (ctx, ctx->hdrs[n], M_APPENDED, 1);
- if (option (OPTDELETEUNTAG))
- mutt_set_flag (ctx, ctx->hdrs[n], M_TAG, 0);
- }
-@@ -891,6 +892,7 @@ int imap_copy_messages (CONTEXT* ctx, HEADER* h, char* dest, int delete)
- else
- {
- mutt_set_flag (ctx, h, M_DELETE, 1);
-+ mutt_set_flag (ctx, h, M_APPENDED, 1);
- if (option (OPTDELETEUNTAG))
- mutt_set_flag (ctx, h, M_TAG, 0);
- }
-diff --git a/init.h b/init.h
-index 6b49341..d3206f9 100644
---- a/init.h
-+++ b/init.h
-@@ -3341,6 +3341,16 @@ struct option_t MuttVars[] = {
- ** provided that ``$$ts_enabled'' has been set. This string is identical in
- ** formatting to the one used by ``$$status_format''.
- */
-+ { "trash", DT_PATH, R_NONE, UL &TrashPath, 0 },
-+ /*
-+ ** .pp
-+ ** If set, this variable specifies the path of the trash folder where the
-+ ** mails marked for deletion will be moved, instead of being irremediably
-+ ** purged.
-+ ** .pp
-+ ** NOTE: When you delete a message in the trash folder, it is really
-+ ** deleted, so that you have a way to clean the trash.
-+ */
- #ifdef USE_SOCKET
- { "tunnel", DT_STR, R_NONE, UL &Tunnel, UL 0 },
- /*
-diff --git a/mutt.h b/mutt.h
-index f8565fa..29bb6c2 100644
---- a/mutt.h
-+++ b/mutt.h
-@@ -185,6 +185,7 @@ enum
- M_DELETE,
- M_UNDELETE,
- M_DELETED,
-+ M_APPENDED,
- M_FLAG,
- M_TAG,
- M_UNTAG,
-@@ -713,6 +714,7 @@ typedef struct header
- unsigned int mime : 1; /* has a MIME-Version header? */
- unsigned int flagged : 1; /* marked important? */
- unsigned int tagged : 1;
-+ unsigned int appended : 1; /* has been saved */
- unsigned int deleted : 1;
- unsigned int changed : 1;
- unsigned int attach_del : 1; /* has an attachment marked for deletion */
-@@ -885,6 +887,7 @@ typedef struct _context
- int new; /* how many new messages? */
- int unread; /* how many unread messages? */
- int deleted; /* how many deleted messages */
-+ int appended; /* how many saved messages? */
- int flagged; /* how many flagged messages */
- int msgnotreadyet; /* which msg "new" in pager, -1 if none */
-
-diff --git a/muttlib.c b/muttlib.c
-index 02067cc..0fd9766 100644
---- a/muttlib.c
-+++ b/muttlib.c
-@@ -1505,7 +1505,9 @@ int mutt_save_confirm (const char *s, struct stat *st)
-
- if (magic > 0 && !mx_access (s, W_OK))
- {
-- if (option (OPTCONFIRMAPPEND))
-+ if (option (OPTCONFIRMAPPEND) &&
-+ (!TrashPath || (mutt_strcmp (s, TrashPath) != 0)))
-+ /* if we're appending to the trash, there's no point in asking */
- {
- snprintf (tmp, sizeof (tmp), _("Append messages to %s?"), s);
- if ((rc = mutt_yesorno (tmp, M_YES)) == M_NO)
-diff --git a/mx.c b/mx.c
-index 4c5cb07..c0a6d30 100644
---- a/mx.c
-+++ b/mx.c
-@@ -776,6 +776,53 @@ static int sync_mailbox (CONTEXT *ctx, int *index_hint)
- return rc;
- }
-
-+/* move deleted mails to the trash folder */
-+static int trash_append (CONTEXT *ctx)
-+{
-+ CONTEXT *ctx_trash;
-+ int i = 0;
-+ struct stat st, stc;
-+
-+ if (!TrashPath || !ctx->deleted ||
-+ (ctx->magic == M_MAILDIR && option (OPTMAILDIRTRASH)))
-+ return 0;
-+
-+ for (;i < ctx->msgcount && (!ctx->hdrs[i]->deleted ||
-+ ctx->hdrs[i]->appended); i++);
-+ if (i == ctx->msgcount)
-+ return 0; /* nothing to be done */
-+
-+ if (mutt_save_confirm (TrashPath, &st) != 0)
-+ {
-+ mutt_error _("message(s) not deleted");
-+ return -1;
-+ }
-+
-+ if (lstat (ctx->path, &stc) == 0 && stc.st_ino == st.st_ino
-+ && stc.st_dev == st.st_dev && stc.st_rdev == st.st_rdev)
-+ return 0; /* we are in the trash folder: simple sync */
-+
-+ if ((ctx_trash = mx_open_mailbox (TrashPath, M_APPEND, NULL)) != NULL)
-+ {
-+ for (i = 0 ; i < ctx->msgcount ; i++)
-+ if (ctx->hdrs[i]->deleted && !ctx->hdrs[i]->appended
-+ && mutt_append_message (ctx_trash, ctx, ctx->hdrs[i], 0, 0) == -1)
-+ {
-+ mx_close_mailbox (ctx_trash, NULL);
-+ return -1;
-+ }
-+
-+ mx_close_mailbox (ctx_trash, NULL);
-+ }
-+ else
-+ {
-+ mutt_error _("Can't open trash folder");
-+ return -1;
-+ }
-+
-+ return 0;
-+}
-+
- /* save changes and close mailbox */
- int mx_close_mailbox (CONTEXT *ctx, int *index_hint)
- {
-@@ -912,6 +959,7 @@ int mx_close_mailbox (CONTEXT *ctx, int *index_hint)
- if (mutt_append_message (&f, ctx, ctx->hdrs[i], 0, CH_UPDATE_LEN) == 0)
- {
- mutt_set_flag (ctx, ctx->hdrs[i], M_DELETE, 1);
-+ mutt_set_flag (ctx, ctx->hdrs[i], M_APPENDED, 1);
- }
- else
- {
-@@ -936,6 +984,14 @@ int mx_close_mailbox (CONTEXT *ctx, int *index_hint)
- return 0;
- }
-
-+ /* copy mails to the trash before expunging */
-+ if (purge && ctx->deleted && mutt_strcmp(ctx->path, TrashPath))
-+ if (trash_append (ctx) != 0)
-+ {
-+ ctx->closing = 0;
-+ return -1;
-+ }
-+
- #ifdef USE_IMAP
- /* allow IMAP to preserve the deleted flag across sessions */
- if (ctx->magic == M_IMAP)
-@@ -1133,6 +1189,12 @@ int mx_sync_mailbox (CONTEXT *ctx, int *index_hint)
- msgcount = ctx->msgcount;
- deleted = ctx->deleted;
-
-+ if (purge && ctx->deleted && mutt_strcmp(ctx->path, TrashPath))
-+ {
-+ if (trash_append (ctx) == -1)
-+ return -1;
-+ }
-+
- #ifdef USE_IMAP
- if (ctx->magic == M_IMAP)
- rc = imap_sync_mailbox (ctx, purge, index_hint);
-diff --git a/postpone.c b/postpone.c
-index a703161..7a4cbb1 100644
---- a/postpone.c
-+++ b/postpone.c
-@@ -277,6 +277,9 @@ int mutt_get_postponed (CONTEXT *ctx, HEADER *hdr, HEADER **cur, char *fcc, size
- /* finished with this message, so delete it. */
- mutt_set_flag (PostContext, h, M_DELETE, 1);
-
-+ /* and consider it saved, so that it won't be moved to the trash folder */
-+ mutt_set_flag (PostContext, h, M_APPENDED, 1);
-+
- /* update the count for the status display */
- PostCount = PostContext->msgcount - PostContext->deleted;
-
diff --git a/pkgs/applications/networking/syncthing/default.nix b/pkgs/applications/networking/syncthing/default.nix
index 87d74aeafd8..4529cf3bd78 100644
--- a/pkgs/applications/networking/syncthing/default.nix
+++ b/pkgs/applications/networking/syncthing/default.nix
@@ -1,13 +1,13 @@
{ stdenv, fetchgit, go }:
stdenv.mkDerivation rec {
- version = "0.13.9";
+ version = "0.14.0";
name = "syncthing-${version}";
src = fetchgit {
url = https://github.com/syncthing/syncthing;
rev = "refs/tags/v${version}";
- sha256 = "1ah3a86rjfqlx4mqyvn8j3r806i65mzhs5xnfg4aakzmwpr5zpx0";
+ sha256 = "15l3q3r6i3q95i474winswx4y149b5ic7xhpnj52s78fxd4va2q2";
};
buildInputs = [ go ];
diff --git a/pkgs/applications/networking/syncthing013/default.nix b/pkgs/applications/networking/syncthing013/default.nix
new file mode 100644
index 00000000000..b6d318011aa
--- /dev/null
+++ b/pkgs/applications/networking/syncthing013/default.nix
@@ -0,0 +1,38 @@
+{ stdenv, fetchgit, go }:
+
+stdenv.mkDerivation rec {
+ version = "0.13.10";
+ name = "syncthing-${version}";
+
+ src = fetchgit {
+ url = https://github.com/syncthing/syncthing;
+ rev = "refs/tags/v${version}";
+ sha256 = "07q3j6mnrza719rnvbkdsmvlkyr2pch5sj2l204m5iy5mxaghpx7";
+ };
+
+ buildInputs = [ go ];
+
+ buildPhase = ''
+ mkdir -p src/github.com/syncthing
+ ln -s $(pwd) src/github.com/syncthing/syncthing
+ export GOPATH=$(pwd)
+
+ # Syncthing's build.go script expects this working directory
+ cd src/github.com/syncthing/syncthing
+
+ go run build.go -no-upgrade -version v${version} install all
+ '';
+
+ installPhase = ''
+ mkdir -p $out/bin
+ cp bin/* $out/bin
+ '';
+
+ meta = {
+ homepage = https://www.syncthing.net/;
+ description = "Open Source Continuous File Synchronization";
+ license = stdenv.lib.licenses.mpl20;
+ maintainers = with stdenv.lib.maintainers; [pshendry];
+ platforms = with stdenv.lib.platforms; linux ++ freebsd ++ openbsd ++ netbsd;
+ };
+}
diff --git a/pkgs/applications/office/kmymoney/default.nix b/pkgs/applications/office/kmymoney/default.nix
index 8884c78e883..2516cfd4597 100644
--- a/pkgs/applications/office/kmymoney/default.nix
+++ b/pkgs/applications/office/kmymoney/default.nix
@@ -3,11 +3,12 @@
, doxygen, aqbanking, gwenhywfar }:
stdenv.mkDerivation rec {
- name = "kmymoney-4.7.2";
+ name = "kmymoney-${version}";
+ version = "4.8.0";
src = fetchurl {
- url = "mirror://sourceforge/kmymoney2/${name}.tar.xz";
- sha256 = "0g9rakjx7zmw4bf7m5516rrx0n3bl2by3nn24iiz9209yfgw5cmz";
+ url = "mirror://kde/stable/kmymoney/${version}/src/${name}.tar.xz";
+ sha256 = "1hlayhcmdfayma4hchv2bfyg82ry0h74hg4095d959mg19qkb9n2";
};
cmakeFlags = [
diff --git a/pkgs/applications/office/libreoffice/default.nix b/pkgs/applications/office/libreoffice/default.nix
index 9c1e1b78990..63af5babca2 100644
--- a/pkgs/applications/office/libreoffice/default.nix
+++ b/pkgs/applications/office/libreoffice/default.nix
@@ -124,6 +124,8 @@ in stdenv.mkDerivation rec {
sed -e /CppunitTest_sd_tiledrendering/d -i sd/Module_sd.mk
# one more fragile test?
sed -e '/CPPUNIT_TEST(testTdf96536);/d' -i sw/qa/extras/uiwriter/uiwriter.cxx
+ # rendering-dependent test
+ sed -e '/CPPUNIT_ASSERT_EQUAL(11148L, pOleObj->GetLogicRect().getWidth());/d ' -i sc/qa/unit/subsequent_filters-test.cxx
'';
makeFlags = "SHELL=${bash}/bin/bash";
diff --git a/pkgs/applications/office/libreoffice/still.nix b/pkgs/applications/office/libreoffice/still.nix
index b8ad900fb14..eadf4135630 100644
--- a/pkgs/applications/office/libreoffice/still.nix
+++ b/pkgs/applications/office/libreoffice/still.nix
@@ -124,6 +124,8 @@ in stdenv.mkDerivation rec {
sed -e /CppunitTest_sd_tiledrendering/d -i sd/Module_sd.mk
# one more fragile test?
sed -e '/CPPUNIT_TEST(testTdf96536);/d' -i sw/qa/extras/uiwriter/uiwriter.cxx
+ # rendering-dependent test
+ sed -e '/CPPUNIT_ASSERT_EQUAL(11148L, pOleObj->GetLogicRect().getWidth());/d ' -i sc/qa/unit/subsequent_filters-test.cxx
'';
makeFlags = "SHELL=${bash}/bin/bash";
diff --git a/pkgs/applications/office/mendeley/default.nix b/pkgs/applications/office/mendeley/default.nix
index 529c41ec899..5ad6df96325 100644
--- a/pkgs/applications/office/mendeley/default.nix
+++ b/pkgs/applications/office/mendeley/default.nix
@@ -19,7 +19,7 @@ let
url = "http://desktop-download.mendeley.com/download/apt/pool/main/m/mendeleydesktop/mendeleydesktop_${version}.deb";
sha256 = if stdenv.system == arch32
then "0lsmaw8zzyfvndsz1awz3vl5cdvsik9wc3ck8983y20awh7r9f4m"
- else "12p6rgxiqajnfgd8nmknyb8icdkln727sshba8x1xlxakxg5c4q4";
+ else "0q11v6dv7z5q4s9hlr1hmsd73nmkp8l0sj0b3hjxfblx4mqk6wl7";
deps = [
gcc.cc
diff --git a/pkgs/applications/office/planner/default.nix b/pkgs/applications/office/planner/default.nix
new file mode 100644
index 00000000000..9222ed5757c
--- /dev/null
+++ b/pkgs/applications/office/planner/default.nix
@@ -0,0 +1,45 @@
+{ stdenv, fetchurl
+, pkgconfig
+, intltool
+, gnome
+, libxslt
+, python
+}:
+
+let
+ version = "${major}.${minor}.${patch}";
+ major = "0";
+ minor = "14";
+ patch = "6";
+
+in stdenv.mkDerivation {
+ name = "planner-${version}";
+
+ src = fetchurl {
+ url = "http://ftp.gnome.org/pub/GNOME/sources/planner/${major}.${minor}/planner-${version}.tar.xz";
+ sha256 = "15h6ps58giy5r1g66sg1l4xzhjssl362mfny2x09khdqsvk2j38k";
+ };
+
+ buildInputs = [
+ pkgconfig
+ intltool
+ gnome.GConf
+ gnome.gtk
+ gnome.libgnomecanvas
+ gnome.libgnomeui
+ gnome.libglade
+ gnome.scrollkeeper
+ libxslt
+ python
+ ];
+
+ enableParallelBuilding = true;
+
+ meta = with stdenv.lib; {
+ homepage = https://wiki.gnome.org/Apps/Planner/;
+ description = "Project management application for GNOME";
+ license = licenses.gpl2;
+ platforms = platforms.linux;
+ maintainers = [ maintainers.rasendubi ];
+ };
+}
diff --git a/pkgs/applications/science/electronics/fritzing/default.nix b/pkgs/applications/science/electronics/fritzing/default.nix
index 110759ea292..3f80ed2866d 100644
--- a/pkgs/applications/science/electronics/fritzing/default.nix
+++ b/pkgs/applications/science/electronics/fritzing/default.nix
@@ -9,8 +9,18 @@ stdenv.mkDerivation rec {
sha256 = "181qnknq1j5x075icpw2qk0sc4wcj9f2hym533vs936is0wxp2gk";
};
+ unpackPhase = ''
+ tar xjf ${src}
+ '';
+
buildInputs = [ qtbase qtsvg boost qmakeHook ];
+ qmakeFlags = [ "phoenix.pro" ];
+
+ preConfigure = ''
+ cd fritzing-${version}.source
+ '';
+
meta = {
description = "An open source prototyping tool for Arduino-based projects";
homepage = http://fritzing.org/;
diff --git a/pkgs/applications/science/logic/coq/8.5.nix b/pkgs/applications/science/logic/coq/8.5.nix
index 1485626125d..eb74891f511 100644
--- a/pkgs/applications/science/logic/coq/8.5.nix
+++ b/pkgs/applications/science/logic/coq/8.5.nix
@@ -6,7 +6,7 @@
{stdenv, fetchurl, writeText, pkgconfig, ocaml, findlib, camlp5, ncurses, lablgtk ? null, csdp ? null}:
let
- version = "8.5pl1";
+ version = "8.5pl2";
coq-version = "8.5";
buildIde = lablgtk != null;
ideFlags = if buildIde then "-lablgtkdir ${lablgtk}/lib/ocaml/*/site-lib/lablgtk2 -coqide opt" else "";
@@ -24,7 +24,7 @@ stdenv.mkDerivation {
src = fetchurl {
url = "http://coq.inria.fr/distrib/V${version}/files/coq-${version}.tar.gz";
- sha256 = "1w2xvm6w16khfn63bp95s25hnkn2ny3w0yqg3lq63gp11aqpbyjb";
+ sha256 = "0wyywia0darak2zmc5v0ra9rn0b9whwdfiahralm8v5za499s8w3";
};
buildInputs = [ pkgconfig ocaml findlib camlp5 ncurses lablgtk ];
@@ -34,7 +34,7 @@ stdenv.mkDerivation {
RM=$(type -tp rm)
substituteInPlace configure --replace "/bin/uname" "$UNAME"
substituteInPlace tools/beautify-archive --replace "/bin/rm" "$RM"
- substituteInPlace configure.ml --replace "if arch = \"Darwin\" then \"md5" "if arch = \"Darwinx\" then \"md5"
+ substituteInPlace configure.ml --replace "if arch = \"Darwin\" || arch = \"FreeBSD\" then \"md5" "if arch = \"Darwinx\" then \"md5"
${csdpPatch}
'';
diff --git a/pkgs/applications/science/logic/tptp/default.nix b/pkgs/applications/science/logic/tptp/default.nix
index e9a89bc0dc6..32906b88d59 100644
--- a/pkgs/applications/science/logic/tptp/default.nix
+++ b/pkgs/applications/science/logic/tptp/default.nix
@@ -2,14 +2,14 @@
stdenv.mkDerivation rec {
name = "TPTP-${version}";
- version = "6.3.0";
+ version = "6.4.0";
src = fetchurl {
url = [
"http://www.cs.miami.edu/~tptp/TPTP/Distribution/TPTP-v${version}.tgz"
"http://www.cs.miami.edu/~tptp/TPTP/Archive/TPTP-v${version}/TPTP-v${version}.tgz"
];
- sha256 = "0xy4cqniyx9fv8r9mc5q5b7xl163pkr9hcmpq6gkls2a0pvg07w9";
+ sha256 = "1i5hi8grfl5zyh8py63zn39rg019bd90h2l312iswbgai6nyfdw0";
};
buildInputs = [ tcsh yap perl patchelf ];
diff --git a/pkgs/applications/science/logic/why3/default.nix b/pkgs/applications/science/logic/why3/default.nix
index 7825fc2761e..3891f3ca6d1 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.87.0";
+ version = "0.87.1";
src = fetchurl {
- url = https://gforge.inria.fr/frs/download.php/file/35643/why3-0.87.0.tar.gz;
- sha256 = "0c3vhcb70ay7iwvmq0m25fqh38y40c5x7mki4r9pxf13vgbs3xb0";
+ url = https://gforge.inria.fr/frs/download.php/file/35893/why3-0.87.1.tar.gz;
+ sha256 = "1ssik2f6fkpvwpdmxz8hrm3p62qas3sjlqya0r57s60ilpkgiwwb";
};
buildInputs = (with ocamlPackages; [
diff --git a/pkgs/applications/science/math/LiE/default.nix b/pkgs/applications/science/math/LiE/default.nix
index 233f44b44cc..b448b511421 100644
--- a/pkgs/applications/science/math/LiE/default.nix
+++ b/pkgs/applications/science/math/LiE/default.nix
@@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
cp -v Lie.exe $out
cp -v lie $out/bin
- cp -v LEARN LEARN.ind $out
- cp -v INFO.ind INFO.[0-4] $out
+ cp -v LEARN* $out
+ cp -v INFO* $out
'';
}
diff --git a/pkgs/applications/science/math/jags/default.nix b/pkgs/applications/science/math/jags/default.nix
index 9d70d268691..ceebfa458a8 100644
--- a/pkgs/applications/science/math/jags/default.nix
+++ b/pkgs/applications/science/math/jags/default.nix
@@ -1,10 +1,10 @@
{stdenv, fetchurl, gfortran, openblas}:
stdenv.mkDerivation rec {
- name = "JAGS-3.4.0";
+ name = "JAGS-4.1.0";
src = fetchurl {
url = "mirror://sourceforge/mcmc-jags/${name}.tar.gz";
- sha256 = "0ayqsz9kkmbss7mxlwr34ch2z1vsb65lryjzqpprab1ccyiaksib";
+ sha256 = "08pmrnbwibc0brgn5cx860jcl0s2xaw4amw7g45649r1bcdz7v25";
};
buildInputs = [gfortran openblas];
configureFlags = [ "--with-blas=-lopenblas" "--with-lapack=-lopenblas" ];
diff --git a/pkgs/applications/version-management/bitkeeper/default.nix b/pkgs/applications/version-management/bitkeeper/default.nix
new file mode 100644
index 00000000000..76083292482
--- /dev/null
+++ b/pkgs/applications/version-management/bitkeeper/default.nix
@@ -0,0 +1,52 @@
+{ stdenv, fetchurl, perl, gperf, bison, groff
+, pkgconfig, libXft, fontconfig, pcre
+, libtomcrypt, libtommath, lz4, zlib }:
+
+stdenv.mkDerivation rec {
+ name = "bitkeeper-${version}";
+ version = "7.3ce";
+
+ src = fetchurl {
+ url = "https://www.bitkeeper.org/downloads/${version}/bk-${version}.tar.gz";
+ sha256 = "0lk4vydpq5bi52m81h327gvzdzybf8kkak7yjwmpj6kg1jn9blaz";
+ };
+
+ enableParallelBuilding = true;
+
+ buildInputs = [
+ perl gperf bison groff libXft pkgconfig
+ pcre libtomcrypt libtommath lz4
+ ];
+
+ postPatch = ''
+ substituteInPlace port/unix_platform.sh \
+ --replace /bin/rm rm
+ substituteInPlace ./undo.c \
+ --replace /bin/cat cat
+ '';
+
+ sourceRoot = "bk-${version}/src";
+ buildPhase = ''
+ make -j6 V=1 p
+ make image
+ '';
+
+ installPhase = ''
+ ./utils/bk-* $out/bitkeeper
+ mkdir -p $out/bin
+ $out/bitkeeper/bk links $out/bin
+ chmod g-w $out
+ '';
+
+ meta = {
+ description = "A distributed version control system";
+ longDescription = ''
+ BitKeeper is a fast, enterprise-ready, distributed SCM that
+ scales up to very large projects and down to tiny ones.
+ '';
+ homepage = https://www.bitkeeper.org/;
+ license = stdenv.lib.licenses.asl20;
+ platforms = stdenv.lib.platforms.linux;
+ maintainers = with stdenv.lib.maintainers; [ wscott thoughtpolice ];
+ };
+}
diff --git a/pkgs/applications/version-management/git-and-tools/diff-so-fancy/default.nix b/pkgs/applications/version-management/git-and-tools/diff-so-fancy/default.nix
index 8f96f36cf86..a3881baf1e7 100644
--- a/pkgs/applications/version-management/git-and-tools/diff-so-fancy/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/diff-so-fancy/default.nix
@@ -2,7 +2,7 @@
stdenv.mkDerivation rec {
name = "diff-so-fancy-${version}";
- version = "0.10.0";
+ version = "0.10.1";
# perl is needed here so patchShebangs can do its job
buildInputs = [perl makeWrapper];
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
owner = "so-fancy";
repo = "diff-so-fancy";
rev = "v${version}";
- sha256 = "08dv9xlrsyjr1ylm83lbsv2p5asfia4ib97bwgcacsdxxh5zyqh9";
+ sha256 = "0wp5civn70jzil1gbygx6ccrxfrmc8xx90v7zgf36rqi2yhvv64m";
};
buildPhase = null;
diff --git a/pkgs/applications/version-management/git-and-tools/git/default.nix b/pkgs/applications/version-management/git-and-tools/git/default.nix
index 5849f0ffd6f..fa40f1a49a2 100644
--- a/pkgs/applications/version-management/git-and-tools/git/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/git/default.nix
@@ -10,7 +10,7 @@
}:
let
- version = "2.9.0";
+ version = "2.9.1";
svn = subversionClient.override { perlBindings = true; };
in
@@ -19,7 +19,7 @@ stdenv.mkDerivation {
src = fetchurl {
url = "https://www.kernel.org/pub/software/scm/git/git-${version}.tar.xz";
- sha256 = "02dl8yvvl7m4zy39s0xmqr958ah7krvkv94lmx4vz3wl95wsj7zl";
+ sha256 = "18l2jb4bkp9ljz6p2aviwzxqyzza9z3v6h1pnkz7kjf1fay61zp8";
};
patches = [
diff --git a/pkgs/applications/version-management/guitone/default.nix b/pkgs/applications/version-management/guitone/default.nix
index 8731cbfde19..8f8750b98c2 100644
--- a/pkgs/applications/version-management/guitone/default.nix
+++ b/pkgs/applications/version-management/guitone/default.nix
@@ -18,6 +18,8 @@ stdenv.mkDerivation rec {
buildInputs = [ qt4 qmake4Hook pkgconfig graphviz ];
+ qmakeFlags = [ "guitone.pro" ];
+
meta = {
description = "Qt4 based GUI for monotone";
homepage = http://guitone.thomaskeller.biz;
diff --git a/pkgs/applications/video/mpv/default.nix b/pkgs/applications/video/mpv/default.nix
index bd1af2ce29a..23f6daf0d61 100644
--- a/pkgs/applications/video/mpv/default.nix
+++ b/pkgs/applications/video/mpv/default.nix
@@ -62,11 +62,11 @@ in
stdenv.mkDerivation rec {
name = "mpv-${version}";
- version = "0.17.0";
+ version = "0.18.1";
src = fetchurl {
url = "https://github.com/mpv-player/mpv/archive/v${version}.tar.gz";
- sha256 = "0vms3viwqcwl1mrgmf2yy4c69fvv7xpbkyrl693l6zpwynqd4b30";
+ sha256 = "0ab3lkvx1j06x7qlp9m4r4zk28dr7z8ki3w4kfgkpm2axizxa4z4";
};
patchPhase = ''
diff --git a/pkgs/applications/video/openshot-qt/default.nix b/pkgs/applications/video/openshot-qt/default.nix
new file mode 100644
index 00000000000..5f142d715f5
--- /dev/null
+++ b/pkgs/applications/video/openshot-qt/default.nix
@@ -0,0 +1,48 @@
+{stdenv, fetchurl, fetchFromGitHub, callPackage, makeWrapper, doxygen
+, ffmpeg, python3Packages, qt55}:
+
+with stdenv.lib;
+
+let
+ libopenshot = callPackage ./libopenshot.nix {};
+in
+stdenv.mkDerivation rec {
+ name = "openshot-qt-${version}";
+ version = "2.0.7";
+
+ src = fetchFromGitHub {
+ owner = "OpenShot";
+ repo = "openshot-qt";
+ rev = "v${version}";
+ sha256 = "1s4b61fd8cyjy8kvc25mqd97dkxx6gqmz02i42rrcriz51pw8wgh";
+ };
+
+ buildInputs = [doxygen python3Packages.python makeWrapper ffmpeg];
+
+ propagatedBuildInputs = [
+ qt55.qtbase
+ qt55.qtmultimedia
+ libopenshot
+ ];
+
+ installPhase = ''
+ mkdir -p $(toPythonPath $out)
+ cp -r src/* $(toPythonPath $out)
+ mkdir -p $out/bin
+ echo "#/usr/bin/env sh" >$out/bin/openshot-qt
+ echo "exec ${python3Packages.python.interpreter} $(toPythonPath $out)/launch.py" >>$out/bin/openshot-qt
+ chmod +x $out/bin/openshot-qt
+ wrapProgram $out/bin/openshot-qt \
+ --prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${libopenshot}):$(toPythonPath ${python3Packages.pyqt5}):$(toPythonPath ${python3Packages.sip_4_16}):$(toPythonPath ${python3Packages.httplib2}):$PYTHONPATH"
+ '';
+
+ doCheck = false;
+
+ meta = {
+ homepage = "http://openshot.org/";
+ description = "Free, open-source video editor";
+ license = licenses.gpl3Plus;
+ maintainers = [maintainers.tohl];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/video/openshot-qt/libopenshot-audio.nix b/pkgs/applications/video/openshot-qt/libopenshot-audio.nix
new file mode 100644
index 00000000000..8b583d4ec5c
--- /dev/null
+++ b/pkgs/applications/video/openshot-qt/libopenshot-audio.nix
@@ -0,0 +1,31 @@
+{stdenv, fetchurl, fetchFromGitHub, cmake, doxygen
+, libX11, libXft, libXrandr, libXinerama, libXext, libXcursor, alsaLib}:
+
+with stdenv.lib;
+
+stdenv.mkDerivation rec {
+ name = "libopenshot-audio-${version}";
+ version = "0.1.1";
+
+ src = fetchFromGitHub {
+ owner = "OpenShot";
+ repo = "libopenshot-audio";
+ rev = "v${version}";
+ sha256 = "0pgw7vzx3znglwm58187ybhg5maa13n4xcy5hrhzfsp8bqhrwkc7";
+ };
+
+ buildInputs = [
+ cmake doxygen
+ libX11 libXft libXrandr libXinerama libXext libXcursor alsaLib
+ ];
+
+ doCheck = false;
+
+ meta = {
+ homepage = "http://openshot.org/";
+ description = "Free, open-source video editor";
+ license = licenses.gpl3Plus;
+ maintainers = [maintainers.tohl];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/video/openshot-qt/libopenshot.nix b/pkgs/applications/video/openshot-qt/libopenshot.nix
new file mode 100644
index 00000000000..2737c48ec83
--- /dev/null
+++ b/pkgs/applications/video/openshot-qt/libopenshot.nix
@@ -0,0 +1,46 @@
+{stdenv, fetchurl, fetchFromGitHub, callPackage, cmake, doxygen
+, imagemagick, ffmpeg, qt55, swig, python3, ruby, unittest-cpp}:
+
+with stdenv.lib;
+
+let
+ libopenshot_audio = callPackage ./libopenshot-audio.nix {};
+in
+stdenv.mkDerivation rec {
+ name = "libopenshot-${version}";
+ version = "0.1.1";
+
+ src = fetchFromGitHub {
+ owner = "OpenShot";
+ repo = "libopenshot";
+ rev = "v${version}";
+ sha256 = "12nfkris7spn8n4s8fvy2f6yk1hqh97wzh1z3fsdxldg4gppi903";
+ };
+
+ patchPhase = ''
+ sed -i 's/{UNITTEST++_INCLUDE_DIR}/ENV{UNITTEST++_INCLUDE_DIR}/g' tests/CMakeLists.txt
+ sed -i 's/{_REL_PYTHON_MODULE_PATH}/ENV{_REL_PYTHON_MODULE_PATH}/g' src/bindings/python/CMakeLists.txt
+ sed -i 's/{RUBY_VENDOR_ARCH_DIR}/ENV{RUBY_VENDOR_ARCH_DIR}/g' src/bindings/ruby/CMakeLists.txt
+ export _REL_PYTHON_MODULE_PATH=$(toPythonPath $out)
+ export RUBY_VENDOR_ARCH_DIR=$out/lib/ruby/site-packages
+ '';
+
+ buildInputs = [
+ cmake doxygen
+ imagemagick ffmpeg qt55.qtbase qt55.qtmultimedia swig python3 ruby
+ unittest-cpp
+ ];
+
+ LIBOPENSHOT_AUDIO_DIR = "${libopenshot_audio}";
+ "UNITTEST++_INCLUDE_DIR" = "${unittest-cpp}/include/UnitTest++";
+
+ doCheck = false;
+
+ meta = {
+ homepage = "http://openshot.org/";
+ description = "Free, open-source video editor";
+ license = licenses.gpl3Plus;
+ maintainers = [maintainers.tohl];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/virtualization/rkt/default.nix b/pkgs/applications/virtualization/rkt/default.nix
index 2fee98ac499..18e5d6dd4db 100644
--- a/pkgs/applications/virtualization/rkt/default.nix
+++ b/pkgs/applications/virtualization/rkt/default.nix
@@ -11,7 +11,7 @@ let
stage1Flavours = [ "coreos" "fly" ];
in stdenv.mkDerivation rec {
- version = "1.9.1";
+ version = "1.10.1";
name = "rkt-${version}";
BUILDDIR="build-${name}";
@@ -19,7 +19,7 @@ in stdenv.mkDerivation rec {
rev = "v${version}";
owner = "coreos";
repo = "rkt";
- sha256 = "094pqxcn91g1s3f0ly3z2lb11s4q3dn99h8cr7lqalkd0gj9l4xg";
+ sha256 = "0hy6b0lyjsh0m1ca7hga31nybrbi9wpf8c59wbzvm1wlnqzsjkqi";
};
stage1BaseImage = fetchurl {
@@ -50,7 +50,11 @@ in stdenv.mkDerivation rec {
installPhase = ''
mkdir -p $out/bin
- cp -Rv $BUILDDIR/bin/* $out/bin
+ cp -Rv $BUILDDIR/target/bin/rkt $out/bin
+
+ mkdir -p $out/lib/rkt/stage1-images/
+ cp -Rv $BUILDDIR/target/bin/stage1-*.aci $out/lib/rkt/stage1-images/
+
wrapProgram $out/bin/rkt \
--prefix LD_LIBRARY_PATH : ${systemd}/lib \
--prefix PATH : ${iptables}/bin
diff --git a/pkgs/applications/window-managers/compton/default.nix b/pkgs/applications/window-managers/compton/default.nix
index 7efacafd6a1..5a79c0829b5 100644
--- a/pkgs/applications/window-managers/compton/default.nix
+++ b/pkgs/applications/window-managers/compton/default.nix
@@ -1,10 +1,8 @@
-{ stdenv, fetchurl, pkgconfig
-, dbus, libconfig, libdrm, libxml2, mesa, pcre
-, libXcomposite, libXfixes, libXdamage, libXinerama
-, libXrandr, libXrender, libXext }:
+{ stdenv, fetchurl, pkgconfig, dbus, libconfig, libdrm, libxml2, mesa, pcre,
+ libXcomposite, libXfixes, libXdamage, libXinerama, libXrandr, libXrender,
+ libXext, xwininfo }:
stdenv.mkDerivation rec {
-
name = "compton-0.1_beta2";
src = fetchurl {
@@ -12,18 +10,36 @@ stdenv.mkDerivation rec {
sha256 = "1mpgn1d98dv66xs2j8gaxjiw26nzwl9a641lrday7h40g3k45g9v";
};
- buildInputs = [ pkgconfig dbus libconfig libdrm libxml2 mesa pcre
- libXcomposite libXfixes libXdamage libXinerama libXrandr libXrender libXext ];
+ buildInputs = [
+ pkgconfig
+ dbus
+ libconfig
+ libdrm
+ libxml2
+ mesa
+ pcre
+ libXcomposite
+ libXfixes
+ libXdamage
+ libXinerama
+ libXrandr
+ libXrender
+ libXext
+ ];
+
+ propagatedBuildInputs = [ xwininfo ];
+
installFlags = "PREFIX=$(out)";
meta = with stdenv.lib; {
homepage = https://github.com/chjj/compton/;
description = "A fork of XCompMgr, a sample compositing manager for X servers";
longDescription = ''
- A fork of XCompMgr, which is a sample compositing manager for X servers
- supporting the XFIXES, DAMAGE, RENDER, and COMPOSITE extensions. It enables
- basic eye-candy effects. This fork adds additional features, such as additional
- effects, and a fork at a well-defined and proper place.
+ A fork of XCompMgr, which is a sample compositing manager for X
+ servers supporting the XFIXES, DAMAGE, RENDER, and COMPOSITE
+ extensions. It enables basic eye-candy effects. This fork adds
+ additional features, such as additional effects, and a fork at a
+ well-defined and proper place.
'';
license = licenses.mit;
platforms = platforms.linux;
diff --git a/pkgs/applications/window-managers/compton/git.nix b/pkgs/applications/window-managers/compton/git.nix
index f4907f881af..afa7d123107 100644
--- a/pkgs/applications/window-managers/compton/git.nix
+++ b/pkgs/applications/window-managers/compton/git.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, asciidoc, dbus, docbook_xml_dtd_45,
docbook_xml_xslt, libconfig, libdrm, libxml2, libxslt, mesa, pcre,
pkgconfig, libXcomposite, libXdamage, libXext, libXfixes, libXinerama,
- libXrandr, libXrender }:
+ libXrandr, libXrender, xwininfo }:
stdenv.mkDerivation {
name = "compton-git-2015-09-21";
@@ -37,6 +37,8 @@ stdenv.mkDerivation {
pcre
];
+ propagatedBuildInputs = [ xwininfo ];
+
installFlags = "PREFIX=$(out)";
meta = with stdenv.lib; {
@@ -47,7 +49,7 @@ stdenv.mkDerivation {
longDescription = ''
A fork of XCompMgr, which is a sample compositing manager for X
servers supporting the XFIXES, DAMAGE, RENDER, and COMPOSITE
- extensions. It enables basic eye-candy effects. This fork adds
+ extensions. It enables basic eye-candy effects. This fork adds
additional features, such as additional effects, and a fork at a
well-defined and proper place.
'';
diff --git a/pkgs/applications/window-managers/i3/lock.nix b/pkgs/applications/window-managers/i3/lock.nix
index 56e0643811f..d9ea14828dd 100644
--- a/pkgs/applications/window-managers/i3/lock.nix
+++ b/pkgs/applications/window-managers/i3/lock.nix
@@ -2,11 +2,11 @@
pam, libX11, libev, cairo, libxkbcommon, libxkbfile }:
stdenv.mkDerivation rec {
- name = "i3lock-2.7";
+ name = "i3lock-2.8";
src = fetchurl {
url = "http://i3wm.org/i3lock/${name}.tar.bz2";
- sha256 = "1qlgafbyqjpqdfs50f2y0xphn2jdigafkqqsmpikk97cs0z1i0k8";
+ sha256 = "028fc0f74df10826514d5a4ed38f6895935d1f5d47ca9fcffc64b076aaf6e2f4";
};
buildInputs = [ which pkgconfig libxcb xcbutilkeysyms xcbutilimage pam libX11
diff --git a/pkgs/applications/window-managers/pekwm/default.nix b/pkgs/applications/window-managers/pekwm/default.nix
new file mode 100644
index 00000000000..60753e46840
--- /dev/null
+++ b/pkgs/applications/window-managers/pekwm/default.nix
@@ -0,0 +1,39 @@
+{ stdenv, fetchurl, pkgconfig
+, libpng, libjpeg
+, libXext, libXft, libXpm, libXrandr, libXinerama }:
+
+stdenv.mkDerivation rec {
+
+ name = "pekwm-${version}";
+ version = "0.1.17";
+
+ src = fetchurl {
+ url = "https://www.pekwm.org/projects/pekwm/files/${name}.tar.bz2";
+ sha256 = "003x6bxj1lb2ljxz3v414bn0rdl6z68c0r185fxwgs1qkyzx67wa";
+ };
+
+ buildInputs = [ pkgconfig libpng libjpeg
+ libXext libXft libXpm libXrandr libXinerama ];
+
+ meta = with stdenv.lib; {
+ description = "A lightweight window manager";
+ longDescription = ''
+ pekwm is a window manager that once upon a time was based on the
+ aewm++ window manager, but it has evolved enough that it no
+ longer resembles aewm++ at all. It has a much expanded
+ feature-set, including window grouping (similar to ion, pwm, or
+ fluxbox), autoproperties, xinerama, keygrabber that supports
+ keychains, and much more.
+ - Lightweight and Unobtrusive, a window manager shouldn't be
+ noticed.
+ - Very configurable, we all work and think in different ways.
+ - Automatic properties, for all the lazy people, make things
+ appear as they should when starting applications.
+ - Chainable Keygrabber, usability for everyone.
+ '';
+ homepage = https://www.pekwm.org;
+ license = licenses.gpl2;
+ maintainers = [ maintainers.AndersonTorres ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/window-managers/sway/default.nix b/pkgs/applications/window-managers/sway/default.nix
index 81fbedc4917..62b0b9c11ea 100644
--- a/pkgs/applications/window-managers/sway/default.nix
+++ b/pkgs/applications/window-managers/sway/default.nix
@@ -3,39 +3,41 @@
, wayland, wlc, libxkbcommon, pixman, fontconfig, pcre, json_c, dbus_libs
}:
-stdenv.mkDerivation rec {
- name = "sway-${version}";
- version = "0.7";
+let
+ version = "0.8";
+in
+ stdenv.mkDerivation rec {
+ name = "sway-${version}";
- src = fetchFromGitHub {
- owner = "Sircmpwn";
- repo = "sway";
- rev = "0.7";
- sha256 = "05mn68brqz7j3a1sb5xd3pxzzdd8swnhw2g7cc9f7rdjr5dlrjip";
- };
+ src = fetchFromGitHub {
+ owner = "Sircmpwn";
+ repo = "sway";
+ rev = "${version}";
+ sha256 = "10i62cn1z7fwg0jwkskmzcaha39lprkl4zvkp59jr5wvpjligdq3";
+ };
- nativeBuildInputs = [ makeWrapper cmake pkgconfig asciidoc libxslt docbook_xsl ];
+ nativeBuildInputs = [ makeWrapper cmake pkgconfig asciidoc libxslt docbook_xsl ];
- buildInputs = [ wayland wlc libxkbcommon pixman fontconfig pcre json_c dbus_libs pango cairo libinput ];
+ buildInputs = [ wayland wlc libxkbcommon pixman fontconfig pcre json_c dbus_libs pango cairo libinput ];
- patchPhase = ''
- sed -i s@/etc/sway@$out/etc/sway@g CMakeLists.txt;
- '';
+ patchPhase = ''
+ sed -i s@/etc/sway@$out/etc/sway@g CMakeLists.txt;
+ '';
- makeFlags = "PREFIX=$(out)";
- installPhase = "PREFIX=$out make install";
+ makeFlags = "PREFIX=$(out)";
+ installPhase = "PREFIX=$out make install";
- LD_LIBRARY_PATH = stdenv.lib.makeLibraryPath [ wlc dbus_libs ];
- preFixup = ''
- wrapProgram $out/bin/sway \
- --prefix LD_LIBRARY_PATH : "${LD_LIBRARY_PATH}";
- '';
+ LD_LIBRARY_PATH = stdenv.lib.makeLibraryPath [ wlc dbus_libs ];
+ preFixup = ''
+ wrapProgram $out/bin/sway \
+ --prefix LD_LIBRARY_PATH : "${LD_LIBRARY_PATH}";
+ '';
- meta = with stdenv.lib; {
- description = "i3-compatible window manager for Wayland";
- homepage = "http://swaywm.org";
- license = licenses.mit;
- platforms = platforms.linux;
- maintainers = with maintainers; [ ];
- };
-}
+ meta = with stdenv.lib; {
+ description = "i3-compatible window manager for Wayland";
+ homepage = "http://swaywm.org";
+ license = licenses.mit;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ ];
+ };
+ }
diff --git a/pkgs/build-support/buildenv/builder.pl b/pkgs/build-support/buildenv/builder.pl
index f6cfe52dc31..678f5a3fe9e 100755
--- a/pkgs/build-support/buildenv/builder.pl
+++ b/pkgs/build-support/buildenv/builder.pl
@@ -31,9 +31,23 @@ sub isInPathsToLink {
my %symlinks;
+# Add all pathsToLink and all parent directories.
+#
+# For "/a/b/c" that will include
+# [ "", "/a", "/a/b", "/a/b/c" ]
+#
+# That ensures the whole directory tree needed by pathsToLink is
+# created as directories and not symlinks.
+$symlinks{""} = ["", 0];
for my $p (@pathsToLink) {
- $p = "" if $p eq "/";
- $symlinks{$p} = ["", 0];
+ my @parts = split '/', $p;
+
+ my $cur = "";
+ for my $x (@parts) {
+ $cur = $cur . "/$x";
+ $cur = "" if $cur eq "/";
+ $symlinks{$cur} = ["", 0];
+ }
}
sub findFiles;
diff --git a/pkgs/build-support/docker/tarsum.go b/pkgs/build-support/docker/tarsum.go
index 4c25f11b71e..ad33bbac75b 100644
--- a/pkgs/build-support/docker/tarsum.go
+++ b/pkgs/build-support/docker/tarsum.go
@@ -1,24 +1,24 @@
package main
import (
- "tarsum"
- "io"
- "io/ioutil"
- "fmt"
- "os"
+ "fmt"
+ "io"
+ "io/ioutil"
+ "os"
+ "tarsum"
)
func main() {
- ts, err := tarsum.NewTarSum(os.Stdin, false, tarsum.Version1)
- if err != nil {
- fmt.Println(err)
- os.Exit(1)
- }
+ ts, err := tarsum.NewTarSum(os.Stdin, true, tarsum.Version1)
+ if err != nil {
+ fmt.Println(err)
+ os.Exit(1)
+ }
- if _, err = io.Copy(ioutil.Discard, ts); err != nil {
- fmt.Println(err)
- os.Exit(1)
- }
+ if _, err = io.Copy(ioutil.Discard, ts); err != nil {
+ fmt.Println(err)
+ os.Exit(1)
+ }
- fmt.Println(ts.Sum(nil))
-}
\ No newline at end of file
+ fmt.Println(ts.Sum(nil))
+}
diff --git a/pkgs/build-support/fetchmavenartifact/default.nix b/pkgs/build-support/fetchmavenartifact/default.nix
new file mode 100644
index 00000000000..a9c53249ae8
--- /dev/null
+++ b/pkgs/build-support/fetchmavenartifact/default.nix
@@ -0,0 +1,75 @@
+# Adaptation of the MIT-licensed work on `sbt2nix` done by Charles O'Farrell
+
+{ fetchurl, stdenv }:
+let
+ defaultRepos = [
+ http://central.maven.org/maven2
+ http://oss.sonatype.org/content/repositories/releases
+ http://oss.sonatype.org/content/repositories/public
+ http://repo.typesafe.com/typesafe/releases
+ ];
+in
+
+args@
+{ # Example: "org.apache.httpcomponents"
+ groupId
+, # Example: "httpclient"
+ artifactId
+, # Example: "4.3.6"
+ version
+, # List of maven repositories from where to fetch the artifact.
+ # Example: [ http://oss.sonatype.org/content/repositories/public ].
+ repos ? defaultRepos
+ # The `url` and `urls` parameters, if specified should point to the JAR
+ # file and will take precedence over the `repos` parameter. Only one of `url`
+ # and `urls` can be specified, not both.
+, url ? ""
+, urls ? []
+, # The rest of the arguments are just forwarded to `fetchurl`.
+ ...
+}:
+
+# only one of url and urls can be specified at a time.
+assert (url == "") || (urls == []);
+# if repos is empty, then url or urls must be specified.
+assert (repos != []) || (url != "") || (urls != []);
+
+
+let
+ name_ =
+ with stdenv.lib; concatStrings [
+ (replaceChars ["."] ["_"] groupId) "_"
+ (replaceChars ["."] ["_"] artifactId) "-"
+ version
+ ];
+ mkJarUrl = repoUrl:
+ with stdenv.lib; concatStringsSep "/" [
+ (removeSuffix "/" repoUrl)
+ (replaceChars ["."] ["/"] groupId)
+ artifactId
+ version
+ "${artifactId}-${version}.jar"
+ ];
+ urls_ =
+ if url != "" then [url]
+ else if urls != [] then urls
+ else map mkJarUrl repos;
+ jar =
+ fetchurl (
+ builtins.removeAttrs args ["groupId" "artifactId" "version" "repos" "url" ]
+ // { urls = urls_; name = "${name_}.jar"; }
+ );
+in
+ stdenv.mkDerivation {
+ name = name_;
+ phases = "installPhase fixupPhase";
+ # By moving the jar to $out/share/java we make it discoverable by java
+ # packages packages that mention this derivation in their buildInputs.
+ installPhase = ''
+ mkdir -p $out/share/java
+ ln -s ${jar} $out/share/java
+ '';
+ # We also add a `jar` attribute that can be used to easily obtain the path
+ # to the downloaded jar file.
+ passthru.jar = jar;
+ }
diff --git a/pkgs/build-support/fetchurl/mirrors.nix b/pkgs/build-support/fetchurl/mirrors.nix
index d97ecb32be5..68244a43e58 100644
--- a/pkgs/build-support/fetchurl/mirrors.nix
+++ b/pkgs/build-support/fetchurl/mirrors.nix
@@ -10,6 +10,7 @@ rec {
# SourceForge.
sourceforge = [
+ http://downloads.sourceforge.net/
http://prdownloads.sourceforge.net/
http://heanet.dl.sourceforge.net/sourceforge/
http://surfnet.dl.sourceforge.net/sourceforge/
diff --git a/pkgs/build-support/setup-hooks/patch-shebangs.sh b/pkgs/build-support/setup-hooks/patch-shebangs.sh
index 38660718d0e..4317a5f4dad 100644
--- a/pkgs/build-support/setup-hooks/patch-shebangs.sh
+++ b/pkgs/build-support/setup-hooks/patch-shebangs.sh
@@ -46,7 +46,8 @@ patchShebangs() {
args="$arg0 $args"
fi
- newInterpreterLine="$newPath $args"
+ # Strip trailing whitespace introduced when no arguments are present
+ newInterpreterLine="$(echo "$newPath $args" | sed 's/[[:space:]]*$//')"
if [ -n "$oldPath" -a "${oldPath:0:${#NIX_STORE}}" != "$NIX_STORE" ]; then
if [ -n "$newPath" -a "$newPath" != "$oldPath" ]; then
diff --git a/pkgs/build-support/trivial-builders.nix b/pkgs/build-support/trivial-builders.nix
index 18e49105ae7..8775286b117 100644
--- a/pkgs/build-support/trivial-builders.nix
+++ b/pkgs/build-support/trivial-builders.nix
@@ -49,15 +49,17 @@ rec {
# Create a forest of symlinks to the files in `paths'.
symlinkJoin =
- args@{ name
+ args_@{ name
, paths
, preferLocalBuild ? true
, allowSubstitutes ? false
, postBuild ? ""
, ...
}:
- runCommand name
- (removeAttrs args [ "name" "postBuild" ])
+ let
+ args = removeAttrs args_ [ "name" "postBuild" ]
+ // { inherit preferLocalBuild allowSubstitutes; }; # pass the defaults
+ in runCommand name args
''
mkdir -p $out
for i in $paths; do
diff --git a/pkgs/build-support/vm/default.nix b/pkgs/build-support/vm/default.nix
index 82cb72cb67e..fa7107bd738 100644
--- a/pkgs/build-support/vm/default.nix
+++ b/pkgs/build-support/vm/default.nix
@@ -319,6 +319,7 @@ rec {
origArgs = args;
origBuilder = builder;
QEMU_OPTS = "${QEMU_OPTS} -m ${toString memSize}";
+ passAsFile = []; # HACK fix - see https://github.com/NixOS/nixpkgs/issues/16742
});
diff --git a/pkgs/data/fonts/google-fonts/default.nix b/pkgs/data/fonts/google-fonts/default.nix
index e4c655877c8..0e41cd4e6b7 100644
--- a/pkgs/data/fonts/google-fonts/default.nix
+++ b/pkgs/data/fonts/google-fonts/default.nix
@@ -12,15 +12,22 @@ stdenv.mkDerivation rec {
phases = [ "unpackPhase" "installPhase" ];
installPhase = ''
- mkdir -p $out/share/fonts/truetype
- find . -name "*.ttf" -exec cp -v {} $out/share/fonts/truetype \;
+ dest=$out/share/fonts/truetype
+ mkdir -p $dest
+ find . -name "*.ttf" -exec cp -v {} $dest \;
+ chmod -x $dest/*.ttf
'';
+ outputHashAlgo = "sha256";
+ outputHashMode = "recursive";
+ outputHash = "0q03gg0sh2mljlbmhamnxz28d13znh9dzca84p554s7pwg6z4wca";
+
meta = with stdenv.lib; {
homepage = https://www.google.com/fontsl;
description = "Font files available from Google Font";
license = with licenses; [ asl20 ofl ufl ];
platforms = platforms.all;
+ hydraPlatforms = [];
maintainers = with maintainers; [ manveru ];
};
}
diff --git a/pkgs/data/fonts/liberationsansnarrow/binary.nix b/pkgs/data/fonts/liberationsansnarrow/binary.nix
new file mode 100644
index 00000000000..c7afc91af84
--- /dev/null
+++ b/pkgs/data/fonts/liberationsansnarrow/binary.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchurl, liberationsansnarrow }:
+
+stdenv.mkDerivation rec {
+ version = "1.07.3";
+ name = "liberationsansnarrow-${version}";
+ src = fetchurl {
+ url = "https://fedorahosted.org/releases/l/i/liberation-fonts/liberation-fonts-ttf-${version}.tar.gz";
+ sha256 = "0qkr7n97jmj4q85jr20nsf6n5b48j118l9hr88vijn22ikad4wsp";
+ };
+
+ phases = [ "unpackPhase" "installPhase" ];
+
+ installPhase = ''
+ mkdir -p $out/share/fonts/truetype
+ cp -v $(find . -name '*Narrow*.ttf') $out/share/fonts/truetype
+
+ mkdir -p "$out/doc/${name}"
+ cp -v AUTHORS ChangeLog COPYING License.txt README "$out/doc/${name}" || true
+ '';
+
+ inherit (liberationsansnarrow) meta;
+}
diff --git a/pkgs/data/fonts/liberationsansnarrow/default.nix b/pkgs/data/fonts/liberationsansnarrow/default.nix
new file mode 100644
index 00000000000..6a5e81cd3c7
--- /dev/null
+++ b/pkgs/data/fonts/liberationsansnarrow/default.nix
@@ -0,0 +1,39 @@
+{stdenv, fetchurl, fontforge, pythonPackages, python}:
+
+stdenv.mkDerivation rec {
+ pname = "liberationsansnarrow";
+ version = "1.07.3";
+ name = "${pname}";
+
+ src = fetchurl {
+ url = "https://fedorahosted.org/releases/l/i/liberation-fonts/liberation-fonts-ttf-${version}.tar.gz";
+ sha256 = "0qkr7n97jmj4q85jr20nsf6n5b48j118l9hr88vijn22ikad4wsp";
+ };
+
+ buildInputs = [ fontforge pythonPackages.fonttools python ];
+
+ installPhase = ''
+ mkdir -p $out/share/fonts/truetype
+ cp -v $(find . -name '*Narrow*.ttf') $out/share/fonts/truetype
+
+ mkdir -p "$out/doc/${name}"
+ cp -v AUTHORS ChangeLog COPYING License.txt README "$out/doc/${name}" || true
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Liberation Sans Narrow Font Family is a replacement for Arial Narrow";
+ longDescription = ''
+ Liberation Sans Narrow is a font originally created by Ascender
+ Inc and licensed to Oracle Corporation under a GPLv2 license. It is
+ metrically compatible with the commonly used Arial Narrow fonts
+ on Microsoft systems. It is no longer distributed with the
+ latest versions of the Liberation Fonts, as Red Hat has changed the
+ license to the Open Font License.
+ '';
+
+ license = licenses.gpl2;
+ homepage = https://fedorahosted.org/liberation-fonts/;
+ maintainers = [ maintainers.leenaars
+ ];
+ };
+}
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 0d21bf54666..588c6bc639b 100644
--- a/pkgs/desktops/gnome-3/3.18/core/gdm/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/core/gdm/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchurl, pkgconfig, glib, itstool, libxml2, xorg, dbus
, intltool, accountsservice, libX11, gnome3, systemd, gnome_session, autoreconfHook
-, gtk, libcanberra_gtk3, pam, libtool, gobjectIntrospection }:
+, gtk, libcanberra_gtk3, pam, libtool, gobjectIntrospection, plymouth }:
stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
@@ -13,12 +13,13 @@ stdenv.mkDerivation rec {
configureFlags = [ "--sysconfdir=/etc"
"--localstatedir=/var"
"--with-systemd=yes"
+ "--with-plymouth=yes"
"--with-systemdsystemunitdir=$(out)/etc/systemd/system" ];
buildInputs = [ pkgconfig glib itstool libxml2 intltool autoreconfHook
accountsservice gnome3.dconf systemd
gobjectIntrospection libX11 gtk
- libcanberra_gtk3 pam libtool ];
+ libcanberra_gtk3 pam libtool plymouth ];
#enableParallelBuilding = true; # problems compiling
diff --git a/pkgs/desktops/gnome-3/3.18/default.nix b/pkgs/desktops/gnome-3/3.18/default.nix
index d0a113ff0a4..78a892ebe3f 100644
--- a/pkgs/desktops/gnome-3/3.18/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/default.nix
@@ -3,7 +3,7 @@
let
pkgsFun = overrides:
- let
+ let
self = self_ // overrides;
self_ = with self; {
@@ -35,7 +35,7 @@ let
gnome-clocks gnome-music gnome-tweak-tool gnome-photos
nautilus-sendto dconf-editor vinagre gnome-weather gnome-logs
gnome-maps gnome-characters gnome-calendar accerciser gnome-nettool
- gnome-getting-started-docs
+ gnome-getting-started-docs gnome-software gnome-packagekit
];
gamesPackages = with gnome3; [ swell-foop lightsoff iagno
@@ -79,7 +79,7 @@ let
dconf = callPackage ./core/dconf { };
dconf-editor = callPackage ./core/dconf-editor { };
- empathy = callPackage ./core/empathy {
+ empathy = callPackage ./core/empathy {
webkitgtk = webkitgtk24x;
clutter-gst = pkgs.clutter-gst;
};
@@ -360,13 +360,13 @@ let
california = callPackage ./misc/california { };
- geary = callPackage ./misc/geary {
+ geary = callPackage ./misc/geary {
webkitgtk = webkitgtk24x;
};
gfbgraph = callPackage ./misc/gfbgraph { };
- gitg = callPackage ./misc/gitg {
+ gitg = callPackage ./misc/gitg {
webkitgtk = webkitgtk24x;
};
@@ -383,13 +383,17 @@ let
gpaste = callPackage ./misc/gpaste { };
pidgin-im-gnome-shell-extension = callPackage ./misc/pidgin { };
-
+
gtkhtml = callPackage ./misc/gtkhtml { };
pomodoro = callPackage ./misc/pomodoro { };
gnome-video-effects = callPackage ./misc/gnome-video-effects { };
+ gnome-software = callPackage ./misc/gnome-software { };
+
+ gnome-packagekit = callPackage ./misc/gnome-packagekit { };
+
};
in self; # pkgsFun
diff --git a/pkgs/desktops/gnome-3/3.18/misc/gnome-packagekit/default.nix b/pkgs/desktops/gnome-3/3.18/misc/gnome-packagekit/default.nix
new file mode 100644
index 00000000000..99cf939fb50
--- /dev/null
+++ b/pkgs/desktops/gnome-3/3.18/misc/gnome-packagekit/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchurl, pkgconfig, intltool, gnome3, libxslt, packagekit
+, fontconfig, libcanberra_gtk3, libnotify, wrapGAppsHook, dbus_glib, dbus_libs }:
+
+stdenv.mkDerivation rec {
+ name = "gnome-packagekit-${version}";
+ version = "3.18.0";
+
+ src = fetchurl {
+ url = "mirror://gnome/sources/gnome-packagekit/3.18/${name}.tar.xz";
+ sha256 = "0a7ww807b77yjf6l8s2ycpxx813lyncwaxq227jckphazpq65a50";
+ };
+
+ NIX_CFLAGS_COMPILE = "-I${dbus_glib.dev}/include/dbus-1.0 -I${dbus_libs.dev}/include/dbus-1.0";
+
+ nativeBuildInputs = [ pkgconfig intltool wrapGAppsHook ];
+ buildInputs = [ libxslt gnome3.gtk packagekit fontconfig
+ libcanberra_gtk3 libnotify dbus_glib dbus_libs ];
+
+ meta = with stdenv.lib; {
+ homepage = https://www.freedesktop.org/software/PackageKit/;
+ platforms = platforms.linux;
+ maintainers = gnome3.maintainers;
+ license = licenses.gpl2;
+ description = "Tools for installing software on the GNOME desktop using PackageKit";
+ };
+}
diff --git a/pkgs/desktops/gnome-3/3.18/misc/gnome-software/default.nix b/pkgs/desktops/gnome-3/3.18/misc/gnome-software/default.nix
new file mode 100644
index 00000000000..51efc0446ef
--- /dev/null
+++ b/pkgs/desktops/gnome-3/3.18/misc/gnome-software/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchurl, pkgconfig, intltool, gnome3, wrapGAppsHook, packagekit
+, appstream-glib, libsoup, polkit, attr, acl, libyaml, isocodes }:
+
+stdenv.mkDerivation rec {
+ name = "gnome-software-${version}";
+ version = "3.18.3";
+
+ src = fetchurl {
+ url = "mirror://gnome/sources/gnome-software/3.18/${name}.tar.xz";
+ sha256 = "0ywvjmn0cwr4kv2l6ic80ac7js7hpsp3g127cj7h256iaqgsaxnc";
+ };
+
+ nativeBuildInputs = [ pkgconfig intltool wrapGAppsHook ];
+ buildInputs = [ gnome3.gtk packagekit appstream-glib libsoup
+ gnome3.gsettings_desktop_schemas gnome3.gnome_desktop
+ polkit attr acl libyaml ];
+ propagatedBuildInputs = [ isocodes ];
+
+ postInstall = ''
+ mkdir -p $out/share/xml/
+ ln -s ${isocodes}/share/xml/iso-codes $out/share/xml/iso-codes
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = https://www.freedesktop.org/software/PackageKit/;
+ platforms = platforms.linux;
+ maintainers = gnome3.maintainers;
+ license = licenses.gpl2;
+ description = "GNOME Software lets you install and update applications and system extensions.";
+ };
+}
diff --git a/pkgs/desktops/gnome-3/3.20/apps/evolution/src.nix b/pkgs/desktops/gnome-3/3.20/apps/evolution/src.nix
index c68ee65cb8b..9c55a6b60e2 100644
--- a/pkgs/desktops/gnome-3/3.20/apps/evolution/src.nix
+++ b/pkgs/desktops/gnome-3/3.20/apps/evolution/src.nix
@@ -1,10 +1,11 @@
# Autogenerated by maintainers/scripts/gnome.sh update
-fetchurl: {
- name = "evolution-3.20.2";
+fetchurl: rec {
+ major = "3.20";
+ name = "evolution-${major}.4";
src = fetchurl {
- url = mirror://gnome/sources/evolution/3.20/evolution-3.20.2.tar.xz;
- sha256 = "66fa6e18c4e6a29c44870d5786e4dbb82507a8254bca9e27e802625081fca630";
+ url = "mirror://gnome/sources/evolution/${major}/${name}.tar.xz";
+ sha256 = "1g1nai6jz0irz94d06vx8gbwbzdp7r53qjxvjfhdqhlhnhy76a9c";
};
}
diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-photos/src.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-photos/src.nix
index 48d0cc38519..c24de8525a8 100644
--- a/pkgs/desktops/gnome-3/3.20/apps/gnome-photos/src.nix
+++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-photos/src.nix
@@ -1,10 +1,10 @@
# Autogenerated by maintainers/scripts/gnome.sh update
fetchurl: {
- name = "gnome-photos-3.20.1";
+ name = "gnome-photos-3.20.2";
src = fetchurl {
- url = mirror://gnome/sources/gnome-photos/3.20/gnome-photos-3.20.1.tar.xz;
- sha256 = "7639cc9367aa0f4bbf54aa46edaeedb91fcce85d387e8ffb669470710e247e5a";
+ url = mirror://gnome/sources/gnome-photos/3.20/gnome-photos-3.20.2.tar.xz;
+ sha256 = "ec6b95ad1c4aeeb065a65d2d48335036c0750761c7f6762bafcf874791272b46";
};
}
diff --git a/pkgs/desktops/gnome-3/3.20/core/dconf-editor/src.nix b/pkgs/desktops/gnome-3/3.20/core/dconf-editor/src.nix
index 5980c0fc6af..ee04b9cd463 100644
--- a/pkgs/desktops/gnome-3/3.20/core/dconf-editor/src.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/dconf-editor/src.nix
@@ -1,10 +1,10 @@
# Autogenerated by maintainers/scripts/gnome.sh update
fetchurl: {
- name = "dconf-editor-3.20.2";
+ name = "dconf-editor-3.20.3";
src = fetchurl {
- url = mirror://gnome/sources/dconf-editor/3.20/dconf-editor-3.20.2.tar.xz;
- sha256 = "486dcb60001b934186f3c3591897d986459bf240f35641fbb59ee957c15af2be";
+ url = mirror://gnome/sources/dconf-editor/3.20/dconf-editor-3.20.3.tar.xz;
+ sha256 = "a8721499a277550b28d8dd94dafbea6efeb95fa153020da10603d0d4d628c579";
};
}
diff --git a/pkgs/desktops/gnome-3/3.20/core/eog/src.nix b/pkgs/desktops/gnome-3/3.20/core/eog/src.nix
index 90a4a8537fb..1aaf23319c4 100644
--- a/pkgs/desktops/gnome-3/3.20/core/eog/src.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/eog/src.nix
@@ -1,10 +1,10 @@
# Autogenerated by maintainers/scripts/gnome.sh update
fetchurl: {
- name = "eog-3.20.2";
+ name = "eog-3.20.3";
src = fetchurl {
- url = mirror://gnome/sources/eog/3.20/eog-3.20.2.tar.xz;
- sha256 = "d7d022af85ea0046e90b02fc94672757300bbbdb422eef2be2afc99fc2cd87e7";
+ url = mirror://gnome/sources/eog/3.20/eog-3.20.3.tar.xz;
+ sha256 = "16308c389deced3acb801dcc180c5e5e18b1db6ba5bd5835b5320cba9b0d2c26";
};
}
diff --git a/pkgs/desktops/gnome-3/3.20/core/epiphany/src.nix b/pkgs/desktops/gnome-3/3.20/core/epiphany/src.nix
index 1738b14e17b..457814913d6 100644
--- a/pkgs/desktops/gnome-3/3.20/core/epiphany/src.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/epiphany/src.nix
@@ -1,10 +1,10 @@
# Autogenerated by maintainers/scripts/gnome.sh update
fetchurl: {
- name = "epiphany-3.20.2";
+ name = "epiphany-3.20.3";
src = fetchurl {
- url = mirror://gnome/sources/epiphany/3.20/epiphany-3.20.2.tar.xz;
- sha256 = "d107ea1d621e91b1c5a7b51435fa81684d4cd4dd2c6fd71adf95e9a46fe6237a";
+ url = mirror://gnome/sources/epiphany/3.20/epiphany-3.20.3.tar.xz;
+ sha256 = "4d9de1bdb44c14adf25aa6dc02ea3de60925cff5eb01fe89545e6032c9b424a2";
};
}
diff --git a/pkgs/desktops/gnome-3/3.20/core/evince/src.nix b/pkgs/desktops/gnome-3/3.20/core/evince/src.nix
index 1f20db4a97e..6f924bbbc1b 100644
--- a/pkgs/desktops/gnome-3/3.20/core/evince/src.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/evince/src.nix
@@ -1,10 +1,10 @@
# Autogenerated by maintainers/scripts/gnome.sh update
fetchurl: {
- name = "evince-3.20.0";
+ name = "evince-3.20.1";
src = fetchurl {
- url = mirror://gnome/sources/evince/3.20/evince-3.20.0.tar.xz;
- sha256 = "cf8358a453686c2a7f85d245f83fe918c0ce02eb6532339f3e02e31249a5a280";
+ url = mirror://gnome/sources/evince/3.20/evince-3.20.1.tar.xz;
+ sha256 = "fc7ac23036939c24f02e9fed6dd6e28a85b4b00b60fa4b591b86443251d20055";
};
}
diff --git a/pkgs/desktops/gnome-3/3.20/core/evolution-data-server/src.nix b/pkgs/desktops/gnome-3/3.20/core/evolution-data-server/src.nix
index 82ea796c3b0..cdb3dacf7ab 100644
--- a/pkgs/desktops/gnome-3/3.20/core/evolution-data-server/src.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/evolution-data-server/src.nix
@@ -1,10 +1,11 @@
# Autogenerated by maintainers/scripts/gnome.sh update
-fetchurl: {
- name = "evolution-data-server-3.20.2";
+fetchurl: rec {
+ major = "3.20";
+ name = "evolution-data-server-${major}.4";
src = fetchurl {
- url = mirror://gnome/sources/evolution-data-server/3.20/evolution-data-server-3.20.2.tar.xz;
- sha256 = "8cdc74b08f1404f5df4b8cf5ccc4999a3e70a1db9ce472f71b623266941ffad9";
+ url = "mirror://gnome/sources/evolution-data-server/${major}/${name}.tar.xz";
+ sha256 = "03h81dnk34b3xf2065rymr1jd7as4dmpd89hyf380c5np36f6l7j";
};
}
diff --git a/pkgs/desktops/gnome-3/3.20/core/gdm/default.nix b/pkgs/desktops/gnome-3/3.20/core/gdm/default.nix
index 4b951ce5ade..25a44d90a5b 100644
--- a/pkgs/desktops/gnome-3/3.20/core/gdm/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/gdm/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchurl, pkgconfig, glib, itstool, libxml2, xorg, dbus
, intltool, accountsservice, libX11, gnome3, systemd, gnome_session, autoreconfHook
-, gtk, libcanberra_gtk3, pam, libtool, gobjectIntrospection }:
+, gtk, libcanberra_gtk3, pam, libtool, gobjectIntrospection, plymouth }:
stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
@@ -13,12 +13,13 @@ stdenv.mkDerivation rec {
configureFlags = [ "--sysconfdir=/etc"
"--localstatedir=/var"
"--with-systemd=yes"
+ "--with-plymouth=yes"
"--with-systemdsystemunitdir=$(out)/etc/systemd/system" ];
buildInputs = [ pkgconfig glib itstool libxml2 intltool autoreconfHook
accountsservice gnome3.dconf systemd
gobjectIntrospection libX11 gtk
- libcanberra_gtk3 pam libtool ];
+ libcanberra_gtk3 pam libtool plymouth ];
#enableParallelBuilding = true; # problems compiling
diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-bluetooth/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-bluetooth/src.nix
index 6da79276afc..474d4722b4a 100644
--- a/pkgs/desktops/gnome-3/3.20/core/gnome-bluetooth/src.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/gnome-bluetooth/src.nix
@@ -1,12 +1,10 @@
# Autogenerated by maintainers/scripts/gnome.sh update
-fetchurl: rec {
- major = "3.18";
- minor = "3";
- name = "gnome-bluetooth-${major}.${minor}";
+fetchurl: {
+ name = "gnome-bluetooth-3.20.0";
src = fetchurl {
- url = "mirror://gnome/sources/gnome-bluetooth/${major}/${name}.tar.xz";
- sha256 = "1qwc9q7x22sc71zhqv4db78rqzxl6fqfw6d978ydqap54c2bg0g4";
+ url = mirror://gnome/sources/gnome-bluetooth/3.20/gnome-bluetooth-3.20.0.tar.xz;
+ sha256 = "93b3ca16b348a168d044b3f777049b7dba2a9292c4adb2751a771e3bc5e4eb53";
};
}
diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-online-accounts/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-online-accounts/src.nix
index 7680208c27a..4c263d9d2d6 100644
--- a/pkgs/desktops/gnome-3/3.20/core/gnome-online-accounts/src.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/gnome-online-accounts/src.nix
@@ -1,10 +1,11 @@
# Autogenerated by maintainers/scripts/gnome.sh update
-fetchurl: {
- name = "gnome-online-accounts-3.20.1";
+fetchurl: rec {
+ major = "3.20";
+ name = "gnome-online-accounts-${major}.2";
src = fetchurl {
- url = mirror://gnome/sources/gnome-online-accounts/3.20/gnome-online-accounts-3.20.1.tar.xz;
- sha256 = "c37aebc1e12f31f5516d33a354181e4d202a07da4f7d3a95b0da8cf0028c0c93";
+ url = "mirror://gnome/sources/gnome-online-accounts/${major}/${name}.tar.xz";
+ sha256 = "1pf1rn1i7dqll9ph6scg2g281njx5pq6z0wyj9493m474nfmsmab";
};
}
diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-screenshot/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-screenshot/src.nix
index af6007fa233..d6b0e28a0c2 100644
--- a/pkgs/desktops/gnome-3/3.20/core/gnome-screenshot/src.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/gnome-screenshot/src.nix
@@ -1,10 +1,10 @@
# Autogenerated by maintainers/scripts/gnome.sh update
fetchurl: {
- name = "gnome-screenshot-3.18.0";
+ name = "gnome-screenshot-3.20.1";
src = fetchurl {
- url = mirror://gnome/sources/gnome-screenshot/3.18/gnome-screenshot-3.18.0.tar.xz;
- sha256 = "eba64dbf4acf0ab8222fec549d0a4f2dd7dbd51c255e7978dedf1f5c06a98841";
+ url = mirror://gnome/sources/gnome-screenshot/3.20/gnome-screenshot-3.20.1.tar.xz;
+ sha256 = "06a89b6887146cdbbeb64adf11bdae21acf22b0422337041c66eedb21ef7e143";
};
}
diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-session/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-session/src.nix
index 28d8496a354..06c40b6c2cf 100644
--- a/pkgs/desktops/gnome-3/3.20/core/gnome-session/src.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/gnome-session/src.nix
@@ -1,10 +1,11 @@
# Autogenerated by maintainers/scripts/gnome.sh update
-fetchurl: {
- name = "gnome-session-3.20.1";
+fetchurl: rec {
+ major = "3.20";
+ name = "gnome-session-${major}.2";
src = fetchurl {
- url = mirror://gnome/sources/gnome-session/3.20/gnome-session-3.20.1.tar.xz;
- sha256 = "2ae9f53dc74f851222fbefbe0dc08db0a78cc76ceeb156f92ebd4d40fd038913";
+ url = "mirror://gnome/sources/gnome-session/${major}/${name}.tar.xz";
+ sha256 = "1npnjm6wirz2v0liv7n23ivp2w0y1q230qcdb681hhzmp7h9fpq2";
};
}
diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-shell/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-shell/src.nix
index 3033cdffa33..df4994cead0 100644
--- a/pkgs/desktops/gnome-3/3.20/core/gnome-shell/src.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/gnome-shell/src.nix
@@ -1,10 +1,10 @@
# Autogenerated by maintainers/scripts/gnome.sh update
fetchurl: {
- name = "gnome-shell-3.20.2";
+ name = "gnome-shell-3.20.3";
src = fetchurl {
- url = mirror://gnome/sources/gnome-shell/3.20/gnome-shell-3.20.2.tar.xz;
- sha256 = "eaff6b177cc5bab16b252c45393a6c9305ad3837a288e738388c7b4d4bae13cd";
+ url = mirror://gnome/sources/gnome-shell/3.20/gnome-shell-3.20.3.tar.xz;
+ sha256 = "b23fd558623bfdc726066be3f47bb5fb8ed9c0ad980a95d6afc6397b6d41171e";
};
}
diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-software/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-software/default.nix
new file mode 100644
index 00000000000..7c258e9cf21
--- /dev/null
+++ b/pkgs/desktops/gnome-3/3.20/core/gnome-software/default.nix
@@ -0,0 +1,27 @@
+{ stdenv, fetchurl, pkgconfig, intltool, gnome3, wrapGAppsHook, packagekit
+, appstream-glib, libsoup, polkit, attr, acl, libyaml, isocodes, gtkspell3
+, json_glib }:
+
+stdenv.mkDerivation rec {
+ inherit (import ./src.nix fetchurl) name src;
+
+ nativeBuildInputs = [ pkgconfig intltool wrapGAppsHook ];
+ buildInputs = [ gnome3.gtk packagekit appstream-glib libsoup
+ gnome3.gsettings_desktop_schemas gnome3.gnome_desktop
+ gtkspell3 json_glib
+ polkit attr acl libyaml ];
+ propagatedBuildInputs = [ isocodes ];
+
+ postInstall = ''
+ mkdir -p $out/share/xml/
+ ln -s ${isocodes}/share/xml/iso-codes $out/share/xml/iso-codes
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = https://www.freedesktop.org/software/PackageKit/;
+ platforms = platforms.linux;
+ maintainers = gnome3.maintainers;
+ license = licenses.gpl2;
+ description = "GNOME Software lets you install and update applications and system extensions.";
+ };
+}
diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-software/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-software/src.nix
new file mode 100644
index 00000000000..4d377903cc1
--- /dev/null
+++ b/pkgs/desktops/gnome-3/3.20/core/gnome-software/src.nix
@@ -0,0 +1,10 @@
+# Autogenerated by maintainers/scripts/gnome.sh update
+
+fetchurl: {
+ name = "gnome-software-3.20.0";
+
+ src = fetchurl {
+ url = mirror://gnome/sources/gnome-software/3.20/gnome-software-3.20.0.tar.xz;
+ sha256 = "0w0bp29fm13a235gq8vylihzjfxx20ri46w4w2syaw0cixxihbix";
+ };
+}
diff --git a/pkgs/desktops/gnome-3/3.20/core/gtksourceview/src.nix b/pkgs/desktops/gnome-3/3.20/core/gtksourceview/src.nix
index 63de05e8820..4f80104cc3b 100644
--- a/pkgs/desktops/gnome-3/3.20/core/gtksourceview/src.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/gtksourceview/src.nix
@@ -1,10 +1,10 @@
# Autogenerated by maintainers/scripts/gnome.sh update
fetchurl: {
- name = "gtksourceview-3.20.3";
+ name = "gtksourceview-3.20.4";
src = fetchurl {
- url = mirror://gnome/sources/gtksourceview/3.20/gtksourceview-3.20.3.tar.xz;
- sha256 = "53069c6e2645716d5dc3dc875b2fe7aacbe70e6560f8dc01c66597231886a8df";
+ url = mirror://gnome/sources/gtksourceview/3.20/gtksourceview-3.20.4.tar.xz;
+ sha256 = "7a0e6ac95ff3862bd8ef77a40e95a942939e73cb407f2eb67af600d7ce533d01";
};
}
diff --git a/pkgs/desktops/gnome-3/3.20/core/mutter/src.nix b/pkgs/desktops/gnome-3/3.20/core/mutter/src.nix
index 47acaa6b58e..89f05f8ed1b 100644
--- a/pkgs/desktops/gnome-3/3.20/core/mutter/src.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/mutter/src.nix
@@ -1,10 +1,10 @@
# Autogenerated by maintainers/scripts/gnome.sh update
fetchurl: {
- name = "mutter-3.20.2";
+ name = "mutter-3.20.3";
src = fetchurl {
- url = mirror://gnome/sources/mutter/3.20/mutter-3.20.2.tar.xz;
- sha256 = "1e8c46a81e21f382f56729282fcd0bb1c3a2067135f4b0f3651b307bf7a5b454";
+ url = mirror://gnome/sources/mutter/3.20/mutter-3.20.3.tar.xz;
+ sha256 = "142c5271df4bde968c725ed09026173292c07b4dd7ba75f19c4b14fc363af916";
};
}
diff --git a/pkgs/desktops/gnome-3/3.20/default.nix b/pkgs/desktops/gnome-3/3.20/default.nix
index fe122d75e97..6e7b16e7733 100644
--- a/pkgs/desktops/gnome-3/3.20/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/default.nix
@@ -3,7 +3,7 @@
let
pkgsFun = overrides:
- let
+ let
self = self_ // overrides;
self_ = with self; {
@@ -35,7 +35,7 @@ let
gnome-clocks gnome-music gnome-tweak-tool gnome-photos
nautilus-sendto dconf-editor vinagre gnome-weather gnome-logs
gnome-maps gnome-characters gnome-calendar accerciser gnome-nettool
- gnome-getting-started-docs
+ gnome-getting-started-docs gnome-packagekit gnome-software
];
gamesPackages = with gnome3; [ swell-foop lightsoff iagno
@@ -149,6 +149,8 @@ let
gnome_settings_daemon = callPackage ./core/gnome-settings-daemon { };
+ gnome-software = callPackage ./core/gnome-software { };
+
gnome-system-log = callPackage ./core/gnome-system-log { };
gnome-system-monitor = callPackage ./core/gnome-system-monitor { };
@@ -359,13 +361,13 @@ let
california = callPackage ./misc/california { };
- geary = callPackage ./misc/geary {
+ geary = callPackage ./misc/geary {
webkitgtk = webkitgtk24x;
};
gfbgraph = callPackage ./misc/gfbgraph { };
- gitg = callPackage ./misc/gitg {
+ gitg = callPackage ./misc/gitg {
webkitgtk = webkitgtk24x;
};
@@ -393,6 +395,8 @@ let
gnome-video-effects = callPackage ./misc/gnome-video-effects { };
+ gnome-packagekit = callPackage ./misc/gnome-packagekit { };
+
};
in self; # pkgsFun
diff --git a/pkgs/desktops/gnome-3/3.20/games/gnome-mines/src.nix b/pkgs/desktops/gnome-3/3.20/games/gnome-mines/src.nix
index 5dbae647661..9894d501122 100644
--- a/pkgs/desktops/gnome-3/3.20/games/gnome-mines/src.nix
+++ b/pkgs/desktops/gnome-3/3.20/games/gnome-mines/src.nix
@@ -1,10 +1,10 @@
# Autogenerated by maintainers/scripts/gnome.sh update
fetchurl: {
- name = "gnome-mines-3.20.0";
+ name = "gnome-mines-3.20.1";
src = fetchurl {
- url = mirror://gnome/sources/gnome-mines/3.20/gnome-mines-3.20.0.tar.xz;
- sha256 = "7775c8d19cda9663a3e6b69d921c9de869278aeff93e249099af2d3c19b970a6";
+ url = mirror://gnome/sources/gnome-mines/3.20/gnome-mines-3.20.1.tar.xz;
+ sha256 = "5815e886d92817d4127b9e94bf63cb91e2bf371029d18efdf9f195e2400e2b3b";
};
}
diff --git a/pkgs/desktops/gnome-3/3.20/games/gnome-sudoku/src.nix b/pkgs/desktops/gnome-3/3.20/games/gnome-sudoku/src.nix
index 2a83f89bb9b..8cc9731e370 100644
--- a/pkgs/desktops/gnome-3/3.20/games/gnome-sudoku/src.nix
+++ b/pkgs/desktops/gnome-3/3.20/games/gnome-sudoku/src.nix
@@ -1,10 +1,11 @@
# Autogenerated by maintainers/scripts/gnome.sh update
-fetchurl: {
- name = "gnome-sudoku-3.20.2";
+fetchurl: rec {
+ major = "3.20";
+ name = "gnome-sudoku-${major}.4";
src = fetchurl {
- url = mirror://gnome/sources/gnome-sudoku/3.20/gnome-sudoku-3.20.2.tar.xz;
- sha256 = "9c7e737686e88c20e83ca366bfc0a20194b7fe4af7c74ab752d98f0af1df3553";
+ url = "mirror://gnome/sources/gnome-sudoku/${major}/${name}.tar.xz";
+ sha256 = "1hw6r0yfg60ynp4gxnqm6zrsklzn0d6lb88vybdbifzrlaww8xwh";
};
}
diff --git a/pkgs/desktops/gnome-3/3.20/misc/gitg/src.nix b/pkgs/desktops/gnome-3/3.20/misc/gitg/src.nix
index ad05a219b25..805380c9d60 100644
--- a/pkgs/desktops/gnome-3/3.20/misc/gitg/src.nix
+++ b/pkgs/desktops/gnome-3/3.20/misc/gitg/src.nix
@@ -1,10 +1,10 @@
# Autogenerated by maintainers/scripts/gnome.sh update
fetchurl: {
- name = "gitg-3.20.0";
+ name = "gitg-3.20.1";
src = fetchurl {
- url = mirror://gnome/sources/gitg/3.20/gitg-3.20.0.tar.xz;
- sha256 = "1f09f61208349d003f228e51dc9709bd3426960f5585c0e38197bd02b51f3346";
+ url = mirror://gnome/sources/gitg/3.20/gitg-3.20.1.tar.xz;
+ sha256 = "104420bcdd765fa2196a7b146ba1e0fa82a5686ed5ba9af40e31e88e601aa585";
};
}
diff --git a/pkgs/desktops/gnome-3/3.20/misc/gnome-packagekit/default.nix b/pkgs/desktops/gnome-3/3.20/misc/gnome-packagekit/default.nix
new file mode 100644
index 00000000000..ee3dd60e59a
--- /dev/null
+++ b/pkgs/desktops/gnome-3/3.20/misc/gnome-packagekit/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl, pkgconfig, intltool, gnome3, libxslt, packagekit
+, fontconfig, libcanberra_gtk3, libnotify, wrapGAppsHook, dbus_glib, dbus_libs }:
+
+stdenv.mkDerivation rec {
+ inherit (import ./src.nix fetchurl) name src;
+
+ NIX_CFLAGS_COMPILE = "-I${dbus_glib.dev}/include/dbus-1.0 -I${dbus_libs.dev}/include/dbus-1.0";
+
+ nativeBuildInputs = [ pkgconfig intltool wrapGAppsHook ];
+ buildInputs = [ libxslt gnome3.gtk packagekit fontconfig
+ libcanberra_gtk3 libnotify dbus_glib dbus_libs ];
+
+ meta = with stdenv.lib; {
+ homepage = https://www.freedesktop.org/software/PackageKit/;
+ platforms = platforms.linux;
+ maintainers = gnome3.maintainers;
+ license = licenses.gpl2;
+ description = "Tools for installing software on the GNOME desktop using PackageKit";
+ };
+}
diff --git a/pkgs/desktops/gnome-3/3.20/misc/gnome-packagekit/src.nix b/pkgs/desktops/gnome-3/3.20/misc/gnome-packagekit/src.nix
new file mode 100644
index 00000000000..71de360f24f
--- /dev/null
+++ b/pkgs/desktops/gnome-3/3.20/misc/gnome-packagekit/src.nix
@@ -0,0 +1,10 @@
+# Autogenerated by maintainers/scripts/gnome.sh update
+
+fetchurl: {
+ name = "gnome-packagekit-3.20.0";
+
+ src = fetchurl {
+ url = mirror://gnome/sources/gnome-packagekit/3.20/gnome-packagekit-3.20.0.tar.xz;
+ sha256 = "0wf5r0qrdlalbr73fpfaapq61vlya3nwygsv4wm2bxaf56v5sjmq";
+ };
+}
diff --git a/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/default.nix b/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/default.nix
index 986d4058af9..e6c4b8c8202 100644
--- a/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/default.nix
@@ -1,9 +1,11 @@
-{ stdenv, intltool, fetchurl, python, pygobject3, atk
+{ stdenv, intltool, fetchurl, atk
, pkgconfig, gtk3, glib, libsoup
-, bash, makeWrapper, itstool, libxml2, python3Packages
-, gnome3, librsvg, gdk_pixbuf, file, libnotify }:
+, bash, makeWrapper, itstool, libxml2, python2Packages
+, gnome3, librsvg, gdk_pixbuf, file, libnotify, gobjectIntrospection, wrapGAppsHook }:
-stdenv.mkDerivation rec {
+let
+ python = python2Packages.python.withPackages ( ps: with ps; [ pygobject3 ] );
+in stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
doCheck = true;
@@ -15,17 +17,15 @@ stdenv.mkDerivation rec {
buildInputs = [ pkgconfig gtk3 glib intltool itstool libxml2
gnome3.gsettings_desktop_schemas makeWrapper file
gdk_pixbuf gnome3.defaultIconTheme librsvg
- python pygobject3 libnotify gnome3.gnome_shell
+ libnotify gnome3.gnome_shell
libsoup gnome3.gnome_settings_daemon gnome3.nautilus
- gnome3.gnome_desktop ];
+ gnome3.gnome_desktop wrapGAppsHook ];
- 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" \
- --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \
- --prefix PYTHONPATH : "$PYTHONPATH:$(toPythonPath $out)"
- '';
+ propagatedBuildInputs = [ python gobjectIntrospection ];
+
+ PYTHONPATH = "$out/${python.python.sitePackages}";
+
+ wrapPrefixVariables = [ "PYTHONPATH" ];
patches = [
./find_gsettings.patch
diff --git a/pkgs/desktops/gnome-3/3.20/misc/gspell/src.nix b/pkgs/desktops/gnome-3/3.20/misc/gspell/src.nix
index 3758936d175..248e3915152 100644
--- a/pkgs/desktops/gnome-3/3.20/misc/gspell/src.nix
+++ b/pkgs/desktops/gnome-3/3.20/misc/gspell/src.nix
@@ -1,10 +1,10 @@
fetchurl: rec {
major = "1.0";
- minor = "0";
+ minor = "3";
name = "gspell-${major}.${minor}";
src = fetchurl {
url = "mirror://gnome/sources/gspell/${major}/${name}.tar.xz";
- sha256 = "1nkpy005qyrfdklrjnvx5xksd3dv27fmn48wi12q8c8whxy2al3a";
+ sha256 = "1m8v4rqaxjsblccc3nnirkbkzgqm90vfpzp3x08lkqriqvk0anfr";
};
}
diff --git a/pkgs/desktops/gnome-3/3.20/misc/pidgin/default.nix b/pkgs/desktops/gnome-3/3.20/misc/pidgin/default.nix
index 64f7920d9af..e3f6bca10a4 100644
--- a/pkgs/desktops/gnome-3/3.20/misc/pidgin/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/misc/pidgin/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, glib }:
stdenv.mkDerivation rec {
- version = "1.0";
+ version = "1.0.1";
basename = "pidgin-im-gnome-shell-extension";
name = "${basename}-${version}";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
owner = "muffinmad";
repo = "${basename}";
rev = "v${version}";
- sha256 = "0vj4w9qqx9gads24w3f6v6mfh5va28bp8rc4w7lz0vhp7njmy1yy";
+ sha256 = "1567s2sfqig4jw0nrn134f5vkx0yq31q044grv3xk4vpl1f3z2lr";
};
buildInputs = [ glib ];
diff --git a/pkgs/desktops/kde-5/applications-16.04/ark.nix b/pkgs/desktops/kde-5/applications-16.04/ark.nix
deleted file mode 100644
index 331c8c647ca..00000000000
--- a/pkgs/desktops/kde-5/applications-16.04/ark.nix
+++ /dev/null
@@ -1,46 +0,0 @@
-{ kdeApp
-, lib
-, extra-cmake-modules
-, kdoctools
-, karchive
-, kconfig
-, kcrash
-, kdbusaddons
-, ki18n
-, kiconthemes
-, khtml
-, kio
-, kservice
-, kpty
-, kwidgetsaddons
-, libarchive
-, p7zip
-, unrar
-, unzipNLS
-, zip
-}:
-
-let PATH = lib.makeBinPath [
- p7zip unrar unzipNLS zip
- ];
-in
-
-kdeApp {
- name = "ark";
- nativeBuildInputs = [
- extra-cmake-modules
- kdoctools
- ];
- propagatedBuildInputs = [
- khtml ki18n kio karchive kconfig kcrash kdbusaddons kiconthemes kservice
- kpty kwidgetsaddons libarchive
- ];
- postInstall = ''
- wrapQtProgram "$out/bin/ark" \
- --prefix PATH : "${PATH}"
- '';
- meta = {
- license = with lib.licenses; [ gpl2 lgpl3 ];
- maintainers = [ lib.maintainers.ttuegel ];
- };
-}
diff --git a/pkgs/desktops/kde-5/applications-16.04/srcs.nix b/pkgs/desktops/kde-5/applications-16.04/srcs.nix
deleted file mode 100644
index 6193253e96d..00000000000
--- a/pkgs/desktops/kde-5/applications-16.04/srcs.nix
+++ /dev/null
@@ -1,2093 +0,0 @@
-# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh
-{ fetchurl, mirror }:
-
-{
- akonadi = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/akonadi-16.04.2.tar.xz";
- sha256 = "0k28dyfpnnnsx6i7cvx1ahmcac1kc2bgzzwqk7mpcwpsmjm0s66v";
- name = "akonadi-16.04.2.tar.xz";
- };
- };
- akonadi-calendar = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/akonadi-calendar-16.04.2.tar.xz";
- sha256 = "0fmq28b1smins3hvhg64rysjqwvqb38x6ybppz3hzqsq6mdmnc7a";
- name = "akonadi-calendar-16.04.2.tar.xz";
- };
- };
- akonadi-search = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/akonadi-search-16.04.2.tar.xz";
- sha256 = "03j7vmccsyr6glc1q2da6znlrkpcvqywzqrb2ychnfmrgjc0xnh4";
- name = "akonadi-search-16.04.2.tar.xz";
- };
- };
- analitza = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/analitza-16.04.2.tar.xz";
- sha256 = "16b1fqkiznds6lv09wcc13n9g8q1a9x6d0k2f7qcd075riq8qp9h";
- name = "analitza-16.04.2.tar.xz";
- };
- };
- ark = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/ark-16.04.2.tar.xz";
- sha256 = "02mfwhn5cqxf3a55bm6ij6vmmkyfhacv4apn16bcq458yckjxmhg";
- name = "ark-16.04.2.tar.xz";
- };
- };
- artikulate = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/artikulate-16.04.2.tar.xz";
- sha256 = "0xil6a2vkji91fhwl9r4cifgg1rf0jp0wzqrqavcb22amfx5j1qn";
- name = "artikulate-16.04.2.tar.xz";
- };
- };
- audiocd-kio = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/audiocd-kio-16.04.2.tar.xz";
- sha256 = "1f7im7qzaz6rk8va6fhn3h5zwq0vfh4mfn01j1kc92kz7g7303k8";
- name = "audiocd-kio-16.04.2.tar.xz";
- };
- };
- baloo-widgets = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/baloo-widgets-16.04.2.tar.xz";
- sha256 = "0hff48c51vsdqkvha5s0aw4sml9gkk3g241dv91qavg513mcs6ns";
- name = "baloo-widgets-16.04.2.tar.xz";
- };
- };
- blinken = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/blinken-16.04.2.tar.xz";
- sha256 = "016vk89axs0bvn4hsdmvx0cks9f87x3czrdn6n01cvzlspgl23sg";
- name = "blinken-16.04.2.tar.xz";
- };
- };
- bomber = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/bomber-16.04.2.tar.xz";
- sha256 = "0rzqgydpqaynnfbgajka7hkb0gj360i0chy0q7brha1cilglz9f6";
- name = "bomber-16.04.2.tar.xz";
- };
- };
- bovo = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/bovo-16.04.2.tar.xz";
- sha256 = "0iiwqna6h2y698cq7llf6djq5l0bvhg1yxlj3mqkjafgq2542dq5";
- name = "bovo-16.04.2.tar.xz";
- };
- };
- calendarsupport = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/calendarsupport-16.04.2.tar.xz";
- sha256 = "14g5cwj92hkkjpcs2glgimimkcrkl49wckrjnnymmkmj53qf85bs";
- name = "calendarsupport-16.04.2.tar.xz";
- };
- };
- cantor = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/cantor-16.04.2.tar.xz";
- sha256 = "0l2hkpinh4vxgrfs2vjjpp2995q4c89fa8hwf0d92ri3smrfmmrp";
- name = "cantor-16.04.2.tar.xz";
- };
- };
- cervisia = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/cervisia-16.04.2.tar.xz";
- sha256 = "07wbwydq532jhz5xrd6n92r94fxbvlll3mg0hlz2rizc008ni2z4";
- name = "cervisia-16.04.2.tar.xz";
- };
- };
- dolphin = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/dolphin-16.04.2.tar.xz";
- sha256 = "0fs53lxknzzqxrghdb4ba5swrhxfgisqdc69fm7znsjqzpk4l7v2";
- name = "dolphin-16.04.2.tar.xz";
- };
- };
- dolphin-plugins = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/dolphin-plugins-16.04.2.tar.xz";
- sha256 = "078aqhfybyr6k5s716pwjr94rlv1iklq1l2fapyjqfd92ffxnb9c";
- name = "dolphin-plugins-16.04.2.tar.xz";
- };
- };
- dragon = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/dragon-16.04.2.tar.xz";
- sha256 = "160qj3ka3wqs35v01769jijfxc08vlzlbgr99z7acnicv3s2p4j4";
- name = "dragon-16.04.2.tar.xz";
- };
- };
- eventviews = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/eventviews-16.04.2.tar.xz";
- sha256 = "1m6kj8y310kxgw3nkrn4wvgnziqx7igbjyd3jq1459issfiv89ay";
- name = "eventviews-16.04.2.tar.xz";
- };
- };
- ffmpegthumbs = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/ffmpegthumbs-16.04.2.tar.xz";
- sha256 = "0l0fgnq25j3xbnxl78pl03gr4rx8lndy7254487yqh6gcq9ir4q0";
- name = "ffmpegthumbs-16.04.2.tar.xz";
- };
- };
- filelight = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/filelight-16.04.2.tar.xz";
- sha256 = "0rl2rc7p92bawzyfplnfmg020yvjrdslk3vr3fn37zriaq8nsdx3";
- name = "filelight-16.04.2.tar.xz";
- };
- };
- gpgmepp = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/gpgmepp-16.04.2.tar.xz";
- sha256 = "0p3szvx59hrfwg81nf3bwxy2wyan0y8ahri70icq4dq6wr1qswg8";
- name = "gpgmepp-16.04.2.tar.xz";
- };
- };
- granatier = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/granatier-16.04.2.tar.xz";
- sha256 = "131q61zc78mw26bg3z0fn61iw5jp656lizlh3bq2kw76n6gcar3q";
- name = "granatier-16.04.2.tar.xz";
- };
- };
- grantleetheme = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/grantleetheme-16.04.2.tar.xz";
- sha256 = "1glwcs4j19pbfsqq79krq8v62h8pdmm327jhsiwcbxzxmnl30r5p";
- name = "grantleetheme-16.04.2.tar.xz";
- };
- };
- gwenview = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/gwenview-16.04.2.tar.xz";
- sha256 = "1p1wfdgyl94mis8zvwqd32sk2wfwycz6ppsznaksvxjrzwlyxbl0";
- name = "gwenview-16.04.2.tar.xz";
- };
- };
- incidenceeditor = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/incidenceeditor-16.04.2.tar.xz";
- sha256 = "1q9vy4l1ysxjnjdgq78gy5sj35z4wxjx379l1jspcdq2ibnqisl0";
- name = "incidenceeditor-16.04.2.tar.xz";
- };
- };
- jovie = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/jovie-16.04.2.tar.xz";
- sha256 = "02jslqk8yi54s8qhz796aj7z00h6swhpzqp28idh0fc9hzn5slpm";
- name = "jovie-16.04.2.tar.xz";
- };
- };
- juk = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/juk-16.04.2.tar.xz";
- sha256 = "05f3nj3ch4cjglj9xs0j580xks5xsa1wf94kw3vz5qsswsi3h93v";
- name = "juk-16.04.2.tar.xz";
- };
- };
- kaccessible = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kaccessible-16.04.2.tar.xz";
- sha256 = "12ffbhc8wgqb0qcr03s9dch0s13dxa3fgs18vinjqswmsrg7f99a";
- name = "kaccessible-16.04.2.tar.xz";
- };
- };
- kaccounts-integration = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kaccounts-integration-16.04.2.tar.xz";
- sha256 = "0l9hlk4a3ryrjhppyp0l0qygfgqxf3m5977cybyzmsnf8yj0aqg7";
- name = "kaccounts-integration-16.04.2.tar.xz";
- };
- };
- kaccounts-providers = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kaccounts-providers-16.04.2.tar.xz";
- sha256 = "1kldqkxvaw0782yixig6dsr5r9ybpqf043qdzw5hm5rdrzssr4j0";
- name = "kaccounts-providers-16.04.2.tar.xz";
- };
- };
- kajongg = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kajongg-16.04.2.tar.xz";
- sha256 = "0g1fmy7m9a8n0z6p1dgdyinv6yfkp91jxji5vm7yrlkkas7l0x0v";
- name = "kajongg-16.04.2.tar.xz";
- };
- };
- kalarmcal = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kalarmcal-16.04.2.tar.xz";
- sha256 = "1y3bhphg4lb9dayycp2xpdvzmk8n47qlz6cxxasyr8kc32v6i1a7";
- name = "kalarmcal-16.04.2.tar.xz";
- };
- };
- kalgebra = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kalgebra-16.04.2.tar.xz";
- sha256 = "02xh19igwwdvmw233flvvwjh01kph314z88vd4fzkczn000nqfax";
- name = "kalgebra-16.04.2.tar.xz";
- };
- };
- kalzium = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kalzium-16.04.2.tar.xz";
- sha256 = "18q6mbdc40my0xk2n28fmjvcyqv46jckqslkgr183yhy0aqbdgh0";
- name = "kalzium-16.04.2.tar.xz";
- };
- };
- kamera = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kamera-16.04.2.tar.xz";
- sha256 = "1ix30y9hvh1dn4xvgmg1y70bj2xdvkl5x5jwhppccb1ck2jlmp7g";
- name = "kamera-16.04.2.tar.xz";
- };
- };
- kanagram = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kanagram-16.04.2.tar.xz";
- sha256 = "17d9jw9fj1x3v6l6q2n3z5b92gpvg8fydbpinym9wzjrixpcqx1q";
- name = "kanagram-16.04.2.tar.xz";
- };
- };
- kapman = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kapman-16.04.2.tar.xz";
- sha256 = "0bi4mvashs5y5wr9fi8rmmq4f3ww9qixh850ar778dwdf11cy9vc";
- name = "kapman-16.04.2.tar.xz";
- };
- };
- kapptemplate = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kapptemplate-16.04.2.tar.xz";
- sha256 = "0xs8bfknfa38fhn1jnk7xxmlsgrwnvbg78fjpq8mfnjlzi9xf55c";
- name = "kapptemplate-16.04.2.tar.xz";
- };
- };
- kate = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kate-16.04.2.tar.xz";
- sha256 = "04b89mp11jbi6dpwmq9g7j9c4favykbxbsc34li7cisr1d8nfxyv";
- name = "kate-16.04.2.tar.xz";
- };
- };
- katomic = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/katomic-16.04.2.tar.xz";
- sha256 = "0vj41ad41bw7dy94i7aw74211r45p703ajh8kgk32zv1157h30va";
- name = "katomic-16.04.2.tar.xz";
- };
- };
- kblackbox = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kblackbox-16.04.2.tar.xz";
- sha256 = "1ad9px5d4z0c9ap4cl7jxvh6scid965d2phspcvhy68yc4pxk161";
- name = "kblackbox-16.04.2.tar.xz";
- };
- };
- kblocks = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kblocks-16.04.2.tar.xz";
- sha256 = "1iyymacvzi8acbq0vlhcw0zdykkafjj674s997mz7pzbb5q7rli3";
- name = "kblocks-16.04.2.tar.xz";
- };
- };
- kblog = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kblog-16.04.2.tar.xz";
- sha256 = "0ljc22dhvjb2j0qz6h693h8sxixjsd01lgrx9g0r1qi9zy55kdk0";
- name = "kblog-16.04.2.tar.xz";
- };
- };
- kbounce = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kbounce-16.04.2.tar.xz";
- sha256 = "19jj1abv0831zkql1khd1n6yp9gwd6znf3x4w0c1yijnhr91aja5";
- name = "kbounce-16.04.2.tar.xz";
- };
- };
- kbreakout = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kbreakout-16.04.2.tar.xz";
- sha256 = "1czfnzndwf2g796nc7pn4wvkm1gfzizjf92inni16f7s1mqka420";
- name = "kbreakout-16.04.2.tar.xz";
- };
- };
- kbruch = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kbruch-16.04.2.tar.xz";
- sha256 = "1dbaympl6kf96zc93p5jawb0w77rcjhj8akrsbwrhvkzz3a9nfvh";
- name = "kbruch-16.04.2.tar.xz";
- };
- };
- kcachegrind = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kcachegrind-16.04.2.tar.xz";
- sha256 = "105pr1njfj8r4i9lcgd2h3f2k1np19ajjvlykxa8ibim99nhj062";
- name = "kcachegrind-16.04.2.tar.xz";
- };
- };
- kcalc = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kcalc-16.04.2.tar.xz";
- sha256 = "1pgsbyffij6iil0bgpvxfb1wdikj90n2q0ykazahclnraqc3swl6";
- name = "kcalc-16.04.2.tar.xz";
- };
- };
- kcalcore = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kcalcore-16.04.2.tar.xz";
- sha256 = "18w11kyyrchzdcqff2w4bzbspbaak513kqvkas87ainzp29zqs1p";
- name = "kcalcore-16.04.2.tar.xz";
- };
- };
- kcalutils = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kcalutils-16.04.2.tar.xz";
- sha256 = "17c6c5ybyb9asvn3r5bq03hbpkbb5hifvhqlimgbr54ldrm5k950";
- name = "kcalutils-16.04.2.tar.xz";
- };
- };
- kcharselect = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kcharselect-16.04.2.tar.xz";
- sha256 = "0qwks9l6ihzfbfcricy3zmpbdq0hlc5hal6zsb3b3j2pcrb95x4l";
- name = "kcharselect-16.04.2.tar.xz";
- };
- };
- kcolorchooser = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kcolorchooser-16.04.2.tar.xz";
- sha256 = "0809rjs7z711fc07bmm95psy80h0knz579dzk9jbphrnj8irmbqk";
- name = "kcolorchooser-16.04.2.tar.xz";
- };
- };
- kcontacts = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kcontacts-16.04.2.tar.xz";
- sha256 = "1gdbwq5vqgcn2xpl0q676awvc7k8w7fqh5wvmq6s4qdc2i1knlxn";
- name = "kcontacts-16.04.2.tar.xz";
- };
- };
- kcron = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kcron-16.04.2.tar.xz";
- sha256 = "0qmw74c292mbpj683znr3ax1m6mkdyprgw3ql2xc0bl65vxspl00";
- name = "kcron-16.04.2.tar.xz";
- };
- };
- kde-baseapps = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-baseapps-16.04.2.tar.xz";
- sha256 = "1rcwxjvr8b4gdd71dab56057g1z136hpcik15qavxvzk0218n3b4";
- name = "kde-baseapps-16.04.2.tar.xz";
- };
- };
- kdebugsettings = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kdebugsettings-16.04.2.tar.xz";
- sha256 = "0sk1marscwq8r032824igyingk25sk6xhzx8y131b592mwjqaabc";
- name = "kdebugsettings-16.04.2.tar.xz";
- };
- };
- kde-dev-scripts = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-dev-scripts-16.04.2.tar.xz";
- sha256 = "0xj9l7sv83ccqi1makxdw20kzwpjfk0gdmagbg8wxr0zrmmzwrzk";
- name = "kde-dev-scripts-16.04.2.tar.xz";
- };
- };
- kde-dev-utils = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-dev-utils-16.04.2.tar.xz";
- sha256 = "1n0m28w29pjmacpyrb0rian3zc8fi829x0pmf1j0k43lfp6m5f6m";
- name = "kde-dev-utils-16.04.2.tar.xz";
- };
- };
- kdeedu-data = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kdeedu-data-16.04.2.tar.xz";
- sha256 = "0kpax6ydfzqr4nh5bf7yxij1cfj0vjwpj2s7l0nxg3a3hw1m91xr";
- name = "kdeedu-data-16.04.2.tar.xz";
- };
- };
- kdegraphics-mobipocket = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kdegraphics-mobipocket-16.04.2.tar.xz";
- sha256 = "1vs68j28i0p0l7lzq9dyjbbx8h8vf5q6lcp624xcnfbhhgczcwjx";
- name = "kdegraphics-mobipocket-16.04.2.tar.xz";
- };
- };
- kdegraphics-strigi-analyzer = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kdegraphics-strigi-analyzer-16.04.2.tar.xz";
- sha256 = "05xjbjfx7gid3vhw56x6vl2xq577dj1lamqjfjwia0a1y8k2jcci";
- name = "kdegraphics-strigi-analyzer-16.04.2.tar.xz";
- };
- };
- kdegraphics-thumbnailers = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kdegraphics-thumbnailers-16.04.2.tar.xz";
- sha256 = "1w8zy6zir0yxy1189kbww70sxgb1qcdr3hx4564ac5mnsqi6yyna";
- name = "kdegraphics-thumbnailers-16.04.2.tar.xz";
- };
- };
- kde-l10n-ar = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ar-16.04.2.tar.xz";
- sha256 = "12zg36ghyirgazrk19iyk1lcxs3wb92a1bawvgpfz5k8lr8b063s";
- name = "kde-l10n-ar-16.04.2.tar.xz";
- };
- };
- kde-l10n-ast = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ast-16.04.2.tar.xz";
- sha256 = "08ca94pln9ylhdlmf6gm4h0k9ggyiz760jrpl27j62940nkzw462";
- name = "kde-l10n-ast-16.04.2.tar.xz";
- };
- };
- kde-l10n-bg = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-bg-16.04.2.tar.xz";
- sha256 = "15gxgi9p61xva4js94dc7nn27lsfcaalbbas41j6zyvzkychvfdc";
- name = "kde-l10n-bg-16.04.2.tar.xz";
- };
- };
- kde-l10n-bs = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-bs-16.04.2.tar.xz";
- sha256 = "0441gcmwvgrwwdzb7zgbdm2mfc630znylhzkn80nrjryr0g7m75m";
- name = "kde-l10n-bs-16.04.2.tar.xz";
- };
- };
- kde-l10n-ca = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ca-16.04.2.tar.xz";
- sha256 = "059n0ycci6nxsmh2sn8j3npd4h64v2bs0phw7yg990vdnzxfrxxh";
- name = "kde-l10n-ca-16.04.2.tar.xz";
- };
- };
- kde-l10n-ca_valencia = {
- version = "ca_valencia-16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ca@valencia-16.04.2.tar.xz";
- sha256 = "0xzhkirfhkd1gm93mw2xi529qlyyljs8vxd36bq2df63a45bjzpa";
- name = "kde-l10n-ca_valencia-16.04.2.tar.xz";
- };
- };
- kde-l10n-cs = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-cs-16.04.2.tar.xz";
- sha256 = "18nfigrna4kpmpiiyasqirh57jf46l6y1vms97m12jkbx4awdxjn";
- name = "kde-l10n-cs-16.04.2.tar.xz";
- };
- };
- kde-l10n-da = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-da-16.04.2.tar.xz";
- sha256 = "0rz5i9q1jhcdh2fa1rh0zw751wwividy3q2z5ijs4ir5yn2qygph";
- name = "kde-l10n-da-16.04.2.tar.xz";
- };
- };
- kde-l10n-de = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-de-16.04.2.tar.xz";
- sha256 = "1vqb1q1jg3lz9qgv4zx1s4gyg3w3zllj92n50pqxzcbfdwajhwp6";
- name = "kde-l10n-de-16.04.2.tar.xz";
- };
- };
- kde-l10n-el = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-el-16.04.2.tar.xz";
- sha256 = "159s1pl21n2pl3ppjgmshz0a374ic3dsrkkwsjnpvi20hhblvzl9";
- name = "kde-l10n-el-16.04.2.tar.xz";
- };
- };
- kde-l10n-en_GB = {
- version = "en_GB-16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-en_GB-16.04.2.tar.xz";
- sha256 = "0y6y0f6w1fjdh0ppirdlpw1ywa8mqffwqhyczy0bnws3pbravpii";
- name = "kde-l10n-en_GB-16.04.2.tar.xz";
- };
- };
- kde-l10n-eo = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-eo-16.04.2.tar.xz";
- sha256 = "1g4giais33yj061ikzxf26s6ahhczyg4kdaq54f58lj2sy86x86f";
- name = "kde-l10n-eo-16.04.2.tar.xz";
- };
- };
- kde-l10n-es = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-es-16.04.2.tar.xz";
- sha256 = "0r33v69axgb283zypb9bck2xy3x02d36230qiyvghnpw0kbhxr60";
- name = "kde-l10n-es-16.04.2.tar.xz";
- };
- };
- kde-l10n-et = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-et-16.04.2.tar.xz";
- sha256 = "0676ddhr7gvkr0a319yz4hx3macqfcaal4gbzcggnfxl639j65ab";
- name = "kde-l10n-et-16.04.2.tar.xz";
- };
- };
- kde-l10n-eu = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-eu-16.04.2.tar.xz";
- sha256 = "1af71wkzsr6whmqxjbicz6vs94miw0nz23ifsh45bnlbjdmkrfk7";
- name = "kde-l10n-eu-16.04.2.tar.xz";
- };
- };
- kde-l10n-fa = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-fa-16.04.2.tar.xz";
- sha256 = "0cpslb17x7k1xjcrp35wp54xmbka0k8z3qwwz20x7bbv9hdind5k";
- name = "kde-l10n-fa-16.04.2.tar.xz";
- };
- };
- kde-l10n-fi = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-fi-16.04.2.tar.xz";
- sha256 = "0x952d7yhm2dgj5pqm6spiwmnfphqarny5w27fpywi7fs9dnan9f";
- name = "kde-l10n-fi-16.04.2.tar.xz";
- };
- };
- kde-l10n-fr = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-fr-16.04.2.tar.xz";
- sha256 = "1ay2rn9ki077sml0cjbyhca6f1rmdpmsrq0drrsh5qbn3z0ija73";
- name = "kde-l10n-fr-16.04.2.tar.xz";
- };
- };
- kde-l10n-ga = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ga-16.04.2.tar.xz";
- sha256 = "16vn7nmjfp9bgmr41z71800zsgq4x19lay48ls2fgvgpjk6m3m66";
- name = "kde-l10n-ga-16.04.2.tar.xz";
- };
- };
- kde-l10n-gl = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-gl-16.04.2.tar.xz";
- sha256 = "1hsl3mn7wsgl40wnbyd3ilqp0cdivj9alg4wxmdlz33ybw58apvy";
- name = "kde-l10n-gl-16.04.2.tar.xz";
- };
- };
- kde-l10n-he = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-he-16.04.2.tar.xz";
- sha256 = "03ifbz9id9dhq04hi2z9zkmbp7aijdkfhrv242k4fvrj2ri0zj2z";
- name = "kde-l10n-he-16.04.2.tar.xz";
- };
- };
- kde-l10n-hi = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-hi-16.04.2.tar.xz";
- sha256 = "1iwlgg632dfzw7nhn892cnk28q4qwd4iirwsbz6lzfh8bpnibna5";
- name = "kde-l10n-hi-16.04.2.tar.xz";
- };
- };
- kde-l10n-hr = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-hr-16.04.2.tar.xz";
- sha256 = "1b77mmd50mq7gfxkxjpifsdb6q1m5d7l9cg6w4l1l1mdmkh60nxn";
- name = "kde-l10n-hr-16.04.2.tar.xz";
- };
- };
- kde-l10n-hu = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-hu-16.04.2.tar.xz";
- sha256 = "10338x2r4w8cbr4hkpyia444zgr475p780i3z2317wr7iwq7sfja";
- name = "kde-l10n-hu-16.04.2.tar.xz";
- };
- };
- kde-l10n-ia = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ia-16.04.2.tar.xz";
- sha256 = "109w8nz412fmvld9ban5g2dcaziiq1bjbwh37r3fm4fqbf3c29kz";
- name = "kde-l10n-ia-16.04.2.tar.xz";
- };
- };
- kde-l10n-id = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-id-16.04.2.tar.xz";
- sha256 = "1z6gbv4ipdr1qqanlpa9v3xcb8xq4a5gvbq1g0xibgs1mykn441j";
- name = "kde-l10n-id-16.04.2.tar.xz";
- };
- };
- kde-l10n-is = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-is-16.04.2.tar.xz";
- sha256 = "07r6g2i4f76ag5f60hnn0602q4c3qzpz2fz9wggrdn9wq3mfagda";
- name = "kde-l10n-is-16.04.2.tar.xz";
- };
- };
- kde-l10n-it = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-it-16.04.2.tar.xz";
- sha256 = "0gnjd7crlffjnpnci38d3p9d7j62yknm1swjb15pkrrph7ga31x9";
- name = "kde-l10n-it-16.04.2.tar.xz";
- };
- };
- kde-l10n-ja = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ja-16.04.2.tar.xz";
- sha256 = "1ciij3r7lxmpghv6wvc1i0dhdbzq92r54c6sl8jrpwc301a3si0v";
- name = "kde-l10n-ja-16.04.2.tar.xz";
- };
- };
- kde-l10n-kk = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-kk-16.04.2.tar.xz";
- sha256 = "0qqyl7zndccnh6z49r1x61y6s7ycpq158yp1wy686q7b84zf47wx";
- name = "kde-l10n-kk-16.04.2.tar.xz";
- };
- };
- kde-l10n-km = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-km-16.04.2.tar.xz";
- sha256 = "0p6cgbngbx72cz3qzmbwcn237f0ibnvk55vzdiiwysdlg4zq4nnj";
- name = "kde-l10n-km-16.04.2.tar.xz";
- };
- };
- kde-l10n-ko = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ko-16.04.2.tar.xz";
- sha256 = "0rqsxfq42gxz5ygfsnfsymz0vf0bgk0dwnwcaczv0frjg1mxg8pb";
- name = "kde-l10n-ko-16.04.2.tar.xz";
- };
- };
- kde-l10n-lt = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-lt-16.04.2.tar.xz";
- sha256 = "0x4mqy1m6ybzf70amkzq8c6jzb2idyqpd3d9cqmx56aibs1bmnr3";
- name = "kde-l10n-lt-16.04.2.tar.xz";
- };
- };
- kde-l10n-lv = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-lv-16.04.2.tar.xz";
- sha256 = "1w5ry4br8dzb0vwr9vqd6z4ns89zpjwmr8md4vwp59nc80x4583k";
- name = "kde-l10n-lv-16.04.2.tar.xz";
- };
- };
- kde-l10n-mr = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-mr-16.04.2.tar.xz";
- sha256 = "1bj7adx1h66l6pwcnb17vkhv1iarslbsk73nsxcvkz53sw1l7mrh";
- name = "kde-l10n-mr-16.04.2.tar.xz";
- };
- };
- kde-l10n-nb = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-nb-16.04.2.tar.xz";
- sha256 = "100zma2jp7gfqjc8xzzqqjcvqqqn0g7baiv4r2l24m0cx37m3ndf";
- name = "kde-l10n-nb-16.04.2.tar.xz";
- };
- };
- kde-l10n-nds = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-nds-16.04.2.tar.xz";
- sha256 = "1v8qwjhrjyyjqhbdiznqbhvvb2vg7in1zsjyzjwyimqkm2qca8nh";
- name = "kde-l10n-nds-16.04.2.tar.xz";
- };
- };
- kde-l10n-nl = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-nl-16.04.2.tar.xz";
- sha256 = "1djdvm3nklssgqnz9xgi3sc0vvjrfi0fnpjbyc87r2vg7q33iccq";
- name = "kde-l10n-nl-16.04.2.tar.xz";
- };
- };
- kde-l10n-nn = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-nn-16.04.2.tar.xz";
- sha256 = "0lbk48q8j3clpv867hfpj5qxzxizmx3x6rz87c3qn09kg1nng93z";
- name = "kde-l10n-nn-16.04.2.tar.xz";
- };
- };
- kde-l10n-pa = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-pa-16.04.2.tar.xz";
- sha256 = "129p7x37yx1f3q0n5x7brnkrisnfj7x1m92mnqqmjlsf47na4l97";
- name = "kde-l10n-pa-16.04.2.tar.xz";
- };
- };
- kde-l10n-pl = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-pl-16.04.2.tar.xz";
- sha256 = "0dp3rn1vh4q1ks7165zdjn4avyplg5kg2nbkqg8jcm8702v0f674";
- name = "kde-l10n-pl-16.04.2.tar.xz";
- };
- };
- kde-l10n-pt = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-pt-16.04.2.tar.xz";
- sha256 = "1irk84qzsxa0s6q7jwq3qzc76vkx4i3gd3ymmrw40376n1c2wiv8";
- name = "kde-l10n-pt-16.04.2.tar.xz";
- };
- };
- kde-l10n-pt_BR = {
- version = "pt_BR-16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-pt_BR-16.04.2.tar.xz";
- sha256 = "1f7r17zm4bq32xypccmgkaj80hyjrc4dvqd2gkk04pq8kqv22924";
- name = "kde-l10n-pt_BR-16.04.2.tar.xz";
- };
- };
- kde-l10n-ro = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ro-16.04.2.tar.xz";
- sha256 = "172z2vzlldk2g7a65r9dvbsspxszha1m9q2qkzaq9hciklgznr64";
- name = "kde-l10n-ro-16.04.2.tar.xz";
- };
- };
- kde-l10n-ru = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ru-16.04.2.tar.xz";
- sha256 = "060s0gcy1mv7wqmk33ambqcn7dd589vvccjxkwvbqwsn0lsjykyb";
- name = "kde-l10n-ru-16.04.2.tar.xz";
- };
- };
- kde-l10n-sk = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-sk-16.04.2.tar.xz";
- sha256 = "1353kldi2gvhrnb3dpyhnf3lbj22jcd5ri5ar5j7bq4v2jzb36nl";
- name = "kde-l10n-sk-16.04.2.tar.xz";
- };
- };
- kde-l10n-sl = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-sl-16.04.2.tar.xz";
- sha256 = "1ibwa1884l4w5z7ys62pqs359c8aa0m9w5chn6l3p55qlkzvf007";
- name = "kde-l10n-sl-16.04.2.tar.xz";
- };
- };
- kde-l10n-sr = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-sr-16.04.2.tar.xz";
- sha256 = "0zs31gr7lz7fcvcv106aj2ilbkjcd5mqbfvpj6zqkrmjcyi8j6a8";
- name = "kde-l10n-sr-16.04.2.tar.xz";
- };
- };
- kde-l10n-sv = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-sv-16.04.2.tar.xz";
- sha256 = "16h8gvzd52zah3643jxaab1aik93b31hbv07z2mipdpdl2fzl039";
- name = "kde-l10n-sv-16.04.2.tar.xz";
- };
- };
- kde-l10n-tr = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-tr-16.04.2.tar.xz";
- sha256 = "0mysq61p6ph4wrrjkd0nrq6w6mxcsg0q9infrp5sgpaqqds58yia";
- name = "kde-l10n-tr-16.04.2.tar.xz";
- };
- };
- kde-l10n-ug = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ug-16.04.2.tar.xz";
- sha256 = "198f8fk0pw79z7n0b7q5vpsmwfjg2a6l1vwl9qab5a97bcwq4l4d";
- name = "kde-l10n-ug-16.04.2.tar.xz";
- };
- };
- kde-l10n-uk = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-uk-16.04.2.tar.xz";
- sha256 = "18wjsab7dv9li5p6k087h9w3kf9rr5hy08yms1wd3wn2gg566nbi";
- name = "kde-l10n-uk-16.04.2.tar.xz";
- };
- };
- kde-l10n-wa = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-wa-16.04.2.tar.xz";
- sha256 = "1qmrkhf9lfccsvj966pv045i0z56642l7jzd0ry4n0ifngancvqp";
- name = "kde-l10n-wa-16.04.2.tar.xz";
- };
- };
- kde-l10n-zh_CN = {
- version = "zh_CN-16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-zh_CN-16.04.2.tar.xz";
- sha256 = "1vcbjl49721gnbg03f07azwr30hv7y0szaagp1kxw8npa1yk9dn2";
- name = "kde-l10n-zh_CN-16.04.2.tar.xz";
- };
- };
- kde-l10n-zh_TW = {
- version = "zh_TW-16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-zh_TW-16.04.2.tar.xz";
- sha256 = "1i8ax0cn59plqiq6sd1x0svjq2w37dr2x616q730hjygkks306ik";
- name = "kde-l10n-zh_TW-16.04.2.tar.xz";
- };
- };
- kdelibs = {
- version = "4.14.21";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kdelibs-4.14.21.tar.xz";
- sha256 = "0hi2rdx3z3xiqbyi1hx04ls88irl30x8as1c9c07zrd4d1qpazs8";
- name = "kdelibs-4.14.21.tar.xz";
- };
- };
- kdenetwork-filesharing = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kdenetwork-filesharing-16.04.2.tar.xz";
- sha256 = "026g1m7ch8vy8ckqc9j4aapp8s7c4v59jdj4qx5z8jy7n27645z2";
- name = "kdenetwork-filesharing-16.04.2.tar.xz";
- };
- };
- kdenetwork-strigi-analyzers = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kdenetwork-strigi-analyzers-16.04.2.tar.xz";
- sha256 = "03jcl9ibhlqlijkps8ab95prp9bqswi82pd79j2dcqgldy681zm9";
- name = "kdenetwork-strigi-analyzers-16.04.2.tar.xz";
- };
- };
- kdenlive = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kdenlive-16.04.2.tar.xz";
- sha256 = "00pn2szyiny137j3kvymcdh28cjpbw5k65ziiljaiw0q6a558ibj";
- name = "kdenlive-16.04.2.tar.xz";
- };
- };
- kdepim = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kdepim-16.04.2.tar.xz";
- sha256 = "1vvgblkdz9v5cv01saaph8mxhf7pc1lg9z8aasisx6m14131wdqj";
- name = "kdepim-16.04.2.tar.xz";
- };
- };
- kdepim-addons = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kdepim-addons-16.04.2.tar.xz";
- sha256 = "185cp7ld9yjap74xknn9cq0j3ch6l0gpkxgyxr1ngfdvmbwswyrs";
- name = "kdepim-addons-16.04.2.tar.xz";
- };
- };
- kdepim-apps-libs = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kdepim-apps-libs-16.04.2.tar.xz";
- sha256 = "1f5mq58zxa9zpif4f8b72w762l8di5gx9zxlpzc62k80z6z5hc3d";
- name = "kdepim-apps-libs-16.04.2.tar.xz";
- };
- };
- kdepimlibs = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kdepimlibs-16.04.2.tar.xz";
- sha256 = "11rdb7558b7lvawqvanvdbvq9kmapngmid1fzx0ai5xza7miiplc";
- name = "kdepimlibs-16.04.2.tar.xz";
- };
- };
- kdepim-runtime = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kdepim-runtime-16.04.2.tar.xz";
- sha256 = "0rf2axz23lzk4g8686brs8hswj3f0is08vvhcx7y960g7yikm2r2";
- name = "kdepim-runtime-16.04.2.tar.xz";
- };
- };
- kde-runtime = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kde-runtime-16.04.2.tar.xz";
- sha256 = "070m7x0b97073pnqcy6bcl1yj6zh9vd855638sd8xpxjvqfsf5b9";
- name = "kde-runtime-16.04.2.tar.xz";
- };
- };
- kdesdk-kioslaves = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kdesdk-kioslaves-16.04.2.tar.xz";
- sha256 = "0fnr1rqzwlpmgikj3if5xqgnazf5rbnyw69b8lsxxvbs7fy23xmi";
- name = "kdesdk-kioslaves-16.04.2.tar.xz";
- };
- };
- kdesdk-strigi-analyzers = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kdesdk-strigi-analyzers-16.04.2.tar.xz";
- sha256 = "0jj1zr044pqn45zndlkdywnjyvm6qyiiaxxhq6vfmi6b54rxdfv3";
- name = "kdesdk-strigi-analyzers-16.04.2.tar.xz";
- };
- };
- kdesdk-thumbnailers = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kdesdk-thumbnailers-16.04.2.tar.xz";
- sha256 = "02w5a8q6yn550iwsnjnika9kxpk5ap84d3bij02rym6as36hhdji";
- name = "kdesdk-thumbnailers-16.04.2.tar.xz";
- };
- };
- kdewebdev = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kdewebdev-16.04.2.tar.xz";
- sha256 = "1hx51mr6lv9mfx35cf24rp7hn47pwbsnjk4qsb7hlv0049jvidgp";
- name = "kdewebdev-16.04.2.tar.xz";
- };
- };
- kdf = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kdf-16.04.2.tar.xz";
- sha256 = "191xzqrdbv38xcxpzr5h24a33l3w8pvjrpymilwbjyjf621h649l";
- name = "kdf-16.04.2.tar.xz";
- };
- };
- kdgantt2 = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kdgantt2-16.04.2.tar.xz";
- sha256 = "12xj5sqf1l4i7sakpa5845hdmxb62gbj08irg7dq55wxk6jz1a0r";
- name = "kdgantt2-16.04.2.tar.xz";
- };
- };
- kdiamond = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kdiamond-16.04.2.tar.xz";
- sha256 = "0vyyj4ab2avbwy998skr5728221by5l730q2lx9n886wig6w4r34";
- name = "kdiamond-16.04.2.tar.xz";
- };
- };
- kfloppy = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kfloppy-16.04.2.tar.xz";
- sha256 = "0dp921jpwrdq892dgi5axij822zkfkmclr94g5sbpv223gx2ds3p";
- name = "kfloppy-16.04.2.tar.xz";
- };
- };
- kfourinline = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kfourinline-16.04.2.tar.xz";
- sha256 = "0dxxi36pp4k0brv7x2aqycs26kpjgrsydqn2rw0k25gka5msrsm2";
- name = "kfourinline-16.04.2.tar.xz";
- };
- };
- kgeography = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kgeography-16.04.2.tar.xz";
- sha256 = "1rmwcv0pa043k12l64pa8wg1iq2iyv07h04mvj99957856qyzkcj";
- name = "kgeography-16.04.2.tar.xz";
- };
- };
- kget = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kget-16.04.2.tar.xz";
- sha256 = "0mgjpl15m9pihprksy1bbzydp0vbkklkcjd04hfsd0nq0g5dxkpx";
- name = "kget-16.04.2.tar.xz";
- };
- };
- kgoldrunner = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kgoldrunner-16.04.2.tar.xz";
- sha256 = "0ijby2k9ggsqcwrhbwy4w0jazvmy68j5k1hcw1p7vq15s5j2rp1k";
- name = "kgoldrunner-16.04.2.tar.xz";
- };
- };
- kgpg = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kgpg-16.04.2.tar.xz";
- sha256 = "1hqnk5xik1v89d8q2z6y6yp844z9h8v9lc689kszv9prwswg1xj8";
- name = "kgpg-16.04.2.tar.xz";
- };
- };
- khangman = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/khangman-16.04.2.tar.xz";
- sha256 = "12hhvkd6zqj1s5kn0yw8fk8mpwnxhgsapwn702hcvfz1lxkd9qy4";
- name = "khangman-16.04.2.tar.xz";
- };
- };
- khelpcenter = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/khelpcenter-16.04.2.tar.xz";
- sha256 = "06ph45mfadhb12bdcp2rgbvfsq9n2s6wdl5x3fy0hpy58w6yy4cd";
- name = "khelpcenter-16.04.2.tar.xz";
- };
- };
- kholidays = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kholidays-16.04.2.tar.xz";
- sha256 = "1ha5yhjyfblh6j1wfx05433cclgnch8maic495ica014lcdb9ff0";
- name = "kholidays-16.04.2.tar.xz";
- };
- };
- kidentitymanagement = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kidentitymanagement-16.04.2.tar.xz";
- sha256 = "0g3cw81c0549237qlhrx0bna5avnsryniq3gccwy862lsgj92nhv";
- name = "kidentitymanagement-16.04.2.tar.xz";
- };
- };
- kig = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kig-16.04.2.tar.xz";
- sha256 = "07zqs1sbj6vfjfckvf5d4dw43cnc84bivrv3qldlg77k99z0x0wa";
- name = "kig-16.04.2.tar.xz";
- };
- };
- kigo = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kigo-16.04.2.tar.xz";
- sha256 = "057nfhngiwf5cfn8xaysii26b4b16105hw1a98kgf8aynyasrd19";
- name = "kigo-16.04.2.tar.xz";
- };
- };
- killbots = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/killbots-16.04.2.tar.xz";
- sha256 = "0k9psr5w4nbfymldr6x8i5mc91fxzgv4khygfw6bi0w1zdlbp7s3";
- name = "killbots-16.04.2.tar.xz";
- };
- };
- kimap = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kimap-16.04.2.tar.xz";
- sha256 = "0i4hfbm2ch71fj52fc08p0rmsqx8r9hw8ia1r2nipv8wl33a099x";
- name = "kimap-16.04.2.tar.xz";
- };
- };
- kio-extras = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kio-extras-16.04.2.tar.xz";
- sha256 = "1qi580d3aqhkh80sj7vphchsl7xfcjbc100cg81b7rdwpa4qv0aq";
- name = "kio-extras-16.04.2.tar.xz";
- };
- };
- kiriki = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kiriki-16.04.2.tar.xz";
- sha256 = "0pq5ai3f27fn7hh3ni0s99ja94nmrlcy3vhvl4h0f94q16lwwhvf";
- name = "kiriki-16.04.2.tar.xz";
- };
- };
- kiten = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kiten-16.04.2.tar.xz";
- sha256 = "1bxvf01k75yhahq97199q6cf3xcjdc92kn8wr628k3wd6xnqcn0a";
- name = "kiten-16.04.2.tar.xz";
- };
- };
- kjumpingcube = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kjumpingcube-16.04.2.tar.xz";
- sha256 = "115nd7z983cdhcrw3fknha4ham9avjx9vy278xijkqh5m9b5xczj";
- name = "kjumpingcube-16.04.2.tar.xz";
- };
- };
- kldap = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kldap-16.04.2.tar.xz";
- sha256 = "198y963y9ydd4gav5f7fdnarf7kmbpjafqw19z3r22hmqikbc1gq";
- name = "kldap-16.04.2.tar.xz";
- };
- };
- kleopatra = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kleopatra-16.04.2.tar.xz";
- sha256 = "064rc6nrgpkvxjxzmavs7f28dczv6szqnx78say0zxa34azl88vh";
- name = "kleopatra-16.04.2.tar.xz";
- };
- };
- klettres = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/klettres-16.04.2.tar.xz";
- sha256 = "1fy41zw1rc9ggsy04q9qscwz3yn58nsj8xjhr7iwvhk2qhhzyw1v";
- name = "klettres-16.04.2.tar.xz";
- };
- };
- klickety = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/klickety-16.04.2.tar.xz";
- sha256 = "0rz89s4fwbf1qm52ca17y2r9xsfb406xwjbz9mfyil1x80cyahdm";
- name = "klickety-16.04.2.tar.xz";
- };
- };
- klines = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/klines-16.04.2.tar.xz";
- sha256 = "1djhxqvjcqlv4bagcg03k7dngygn8ywqwhhjsc0ql6a1nbrfkh1q";
- name = "klines-16.04.2.tar.xz";
- };
- };
- kmag = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kmag-16.04.2.tar.xz";
- sha256 = "0m7502q0n76cs009giac90sgf8hhza3c8zf5ypb7aydnixcvligs";
- name = "kmag-16.04.2.tar.xz";
- };
- };
- kmahjongg = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kmahjongg-16.04.2.tar.xz";
- sha256 = "09b336jfw7zafzpiddxadvf0h7ch2l5ksdzz1salhqqnqxg271mn";
- name = "kmahjongg-16.04.2.tar.xz";
- };
- };
- kmailtransport = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kmailtransport-16.04.2.tar.xz";
- sha256 = "1dz3w9gxc14bkdp1h05ppw6c3m29kw9ky9c5ajvi6gckynjkg0dz";
- name = "kmailtransport-16.04.2.tar.xz";
- };
- };
- kmbox = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kmbox-16.04.2.tar.xz";
- sha256 = "1mkwv695bzjszrpsv8bpjlid4f933jnkf7vc1l8wlamik88y5i7x";
- name = "kmbox-16.04.2.tar.xz";
- };
- };
- kmime = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kmime-16.04.2.tar.xz";
- sha256 = "0h1a43yi7nzj6s3j5v6v9dp5r2qbbhdamnl2d8jpqkl5hnxf0mlq";
- name = "kmime-16.04.2.tar.xz";
- };
- };
- kmines = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kmines-16.04.2.tar.xz";
- sha256 = "1c4yp6zsva1dyr34cprxmy11iq3p3xxz7j8g8bl35qp95l8cwwhl";
- name = "kmines-16.04.2.tar.xz";
- };
- };
- kmix = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kmix-16.04.2.tar.xz";
- sha256 = "092l0myv9dhx534j96qwqy1gddzc64r15wnansifnn0miv1rsnmb";
- name = "kmix-16.04.2.tar.xz";
- };
- };
- kmousetool = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kmousetool-16.04.2.tar.xz";
- sha256 = "0r4wv17l2xm85nncxz7fagfp7z0fi5hbhc28bqnaggc4yz3jbh7d";
- name = "kmousetool-16.04.2.tar.xz";
- };
- };
- kmouth = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kmouth-16.04.2.tar.xz";
- sha256 = "0xfv9hd8cdszvllwd56qwcg8x3fcz4d64zhf4mi2f3v47a9wrir4";
- name = "kmouth-16.04.2.tar.xz";
- };
- };
- kmplot = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kmplot-16.04.2.tar.xz";
- sha256 = "0bvxgj34llgpk6gv9wv1infb782z6fgigcpiv00xqlr7pgkhsns2";
- name = "kmplot-16.04.2.tar.xz";
- };
- };
- knavalbattle = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/knavalbattle-16.04.2.tar.xz";
- sha256 = "0abwxqy82xrhyfixxj3rivkflj5dkrc82131hmjd35c1lcabh4aw";
- name = "knavalbattle-16.04.2.tar.xz";
- };
- };
- knetwalk = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/knetwalk-16.04.2.tar.xz";
- sha256 = "13399nqhja4wlf3d8zy6ia7ayjsb8kyrmjx6dsw1hdbpgfdj29w0";
- name = "knetwalk-16.04.2.tar.xz";
- };
- };
- kolf = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kolf-16.04.2.tar.xz";
- sha256 = "0h5a20pra3ip6a3cf5kivpbyky5fkhzknkx80dcwi36g4q9qryyh";
- name = "kolf-16.04.2.tar.xz";
- };
- };
- kollision = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kollision-16.04.2.tar.xz";
- sha256 = "09xc2mgipw4a8cmgdqs5mr9r144wjkn2656nidvdxwhizm05k5ib";
- name = "kollision-16.04.2.tar.xz";
- };
- };
- kolourpaint = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kolourpaint-16.04.2.tar.xz";
- sha256 = "0ffnfzmsds5n60w2b7x43q64bvws8z1hs9m80jh4xcz3p2ybkwlg";
- name = "kolourpaint-16.04.2.tar.xz";
- };
- };
- kompare = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kompare-16.04.2.tar.xz";
- sha256 = "09xjws4kb66r6m65srsjx37dvhyj6ifj5yixb77njfkcf140060p";
- name = "kompare-16.04.2.tar.xz";
- };
- };
- konquest = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/konquest-16.04.2.tar.xz";
- sha256 = "1b81z9z7rcbm75phpc7rz5s2159b6f98g3kkry7b1hlh51qajd3v";
- name = "konquest-16.04.2.tar.xz";
- };
- };
- konsole = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/konsole-16.04.2.tar.xz";
- sha256 = "1pp7xfh472vwk4nnhcga73zkb4bxqnmk70dxnn0kxj6z55igrp19";
- name = "konsole-16.04.2.tar.xz";
- };
- };
- kontactinterface = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kontactinterface-16.04.2.tar.xz";
- sha256 = "1yax2bwxhr15pqwy63ki5zriz01l5phvbx2f9whpbccmpbsd3yyh";
- name = "kontactinterface-16.04.2.tar.xz";
- };
- };
- kopete = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kopete-16.04.2.tar.xz";
- sha256 = "16j3j6z0irmqrm4cgm9vwa5nd4rixyirn0hpi2kanzy6m8j623nf";
- name = "kopete-16.04.2.tar.xz";
- };
- };
- kpat = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kpat-16.04.2.tar.xz";
- sha256 = "1qmcnx0zmks37fzr6chx409frb08g61cx0rn2gwad57f3id3dh2m";
- name = "kpat-16.04.2.tar.xz";
- };
- };
- kpimtextedit = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kpimtextedit-16.04.2.tar.xz";
- sha256 = "0r36knm4w4micchjibiika373z9lzqkzhc7pfa38zwpd529wxfk4";
- name = "kpimtextedit-16.04.2.tar.xz";
- };
- };
- kppp = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kppp-16.04.2.tar.xz";
- sha256 = "14p07ph8kc1wlfzf8lbmqhpv5iix392fc81y56bc48ba28czsmp6";
- name = "kppp-16.04.2.tar.xz";
- };
- };
- kqtquickcharts = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kqtquickcharts-16.04.2.tar.xz";
- sha256 = "1bdkv3jpvacliz8120cch415jwlg65gd3xyz5ixkynxzkmilj3kx";
- name = "kqtquickcharts-16.04.2.tar.xz";
- };
- };
- krdc = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/krdc-16.04.2.tar.xz";
- sha256 = "1qn7mci4mschz8a94na6xakl982hrj0g4ccw1hfrhlzyxa7hfx74";
- name = "krdc-16.04.2.tar.xz";
- };
- };
- kremotecontrol = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kremotecontrol-16.04.2.tar.xz";
- sha256 = "1z37qmmp688mn9kiprmnl2zdira60as1bsfn0zy24jnnkskvr3ga";
- name = "kremotecontrol-16.04.2.tar.xz";
- };
- };
- kreversi = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kreversi-16.04.2.tar.xz";
- sha256 = "1b7aqv33qkx18g9bkcna0z7027c4j2kwx6naldhgq3dxgg22gi6k";
- name = "kreversi-16.04.2.tar.xz";
- };
- };
- krfb = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/krfb-16.04.2.tar.xz";
- sha256 = "11arv0h0sgnk21lmw9mzj43cijchljpwy09ifii9a8xxn0cczf5x";
- name = "krfb-16.04.2.tar.xz";
- };
- };
- kross-interpreters = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kross-interpreters-16.04.2.tar.xz";
- sha256 = "1z8sv8vyfi1nx70f72qx5xgaxa8qklm1a1nq0p5x4jl22gf981qz";
- name = "kross-interpreters-16.04.2.tar.xz";
- };
- };
- kruler = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kruler-16.04.2.tar.xz";
- sha256 = "12gm8zy0233djdgfn2clsyamlc5q013pblyv70f5z0j8s2a8293h";
- name = "kruler-16.04.2.tar.xz";
- };
- };
- ksaneplugin = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/ksaneplugin-16.04.2.tar.xz";
- sha256 = "0y5yvr09g9x9k8lswpjbhkd6fnbw80dajrjjsjws5rfvi388ps7c";
- name = "ksaneplugin-16.04.2.tar.xz";
- };
- };
- kscd = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kscd-16.04.2.tar.xz";
- sha256 = "0k2q1fqrbpsbjlzyk1az1pyd76dqqwmmdandj7c6aqbl332dca5g";
- name = "kscd-16.04.2.tar.xz";
- };
- };
- kshisen = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kshisen-16.04.2.tar.xz";
- sha256 = "1wl7bv18jvwy44hxa3ys3aaxw0hx68vk3b3vwr381729c0njxzrl";
- name = "kshisen-16.04.2.tar.xz";
- };
- };
- ksirk = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/ksirk-16.04.2.tar.xz";
- sha256 = "17j2k8gnx0fh5v6592wfkcl5lbz2fgjv0na423gjij6rvvnb1xxs";
- name = "ksirk-16.04.2.tar.xz";
- };
- };
- ksnakeduel = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/ksnakeduel-16.04.2.tar.xz";
- sha256 = "1v0pnkkzk1j2cgkf58vk3ly9yvxyqq2y9xvfnpzv939f8sl10qa7";
- name = "ksnakeduel-16.04.2.tar.xz";
- };
- };
- kspaceduel = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kspaceduel-16.04.2.tar.xz";
- sha256 = "0jspmg7gkjawb50mlafxcaimqm3xp4gpw7a2dm895z8f6lhp0q4q";
- name = "kspaceduel-16.04.2.tar.xz";
- };
- };
- ksquares = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/ksquares-16.04.2.tar.xz";
- sha256 = "0l0s978551ziw79sck2fji474pgynvx4ny87f3faplz6adpvclmd";
- name = "ksquares-16.04.2.tar.xz";
- };
- };
- kstars = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kstars-16.04.2.tar.xz";
- sha256 = "1v29ky6id80wgkhj23vb4c1a905zi8xkwyx1fjdqm0b0783p5w0f";
- name = "kstars-16.04.2.tar.xz";
- };
- };
- ksudoku = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/ksudoku-16.04.2.tar.xz";
- sha256 = "0ymxjcbjd0dpsjl3jjr4bxj3xbhkpv1zr9mf2fxjpnfz3js9zf7q";
- name = "ksudoku-16.04.2.tar.xz";
- };
- };
- ksystemlog = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/ksystemlog-16.04.2.tar.xz";
- sha256 = "0i74xfhfmyxp2i94fdivlf3z38mak78j8yy8by652143g0gz61nz";
- name = "ksystemlog-16.04.2.tar.xz";
- };
- };
- kteatime = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kteatime-16.04.2.tar.xz";
- sha256 = "1y7ih9ii3hk91pbyp7bwgiy8g6hb3bsnjc5a6nlghc3d79zvq77y";
- name = "kteatime-16.04.2.tar.xz";
- };
- };
- ktimer = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/ktimer-16.04.2.tar.xz";
- sha256 = "06isrcpcbr9n7lhrqv9ahvms8vqz2azw0p6v29sihwskcw933yf0";
- name = "ktimer-16.04.2.tar.xz";
- };
- };
- ktnef = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/ktnef-16.04.2.tar.xz";
- sha256 = "1picfgmy9m3rfzp2hwgz7npijrb0x8w1zyy7gz4q37g3577gjm79";
- name = "ktnef-16.04.2.tar.xz";
- };
- };
- ktouch = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/ktouch-16.04.2.tar.xz";
- sha256 = "1jcgg5fxnn4fsv2gjiwijd2k9rw2ljffvw5dqg0pwkmikp7f4pmd";
- name = "ktouch-16.04.2.tar.xz";
- };
- };
- ktp-accounts-kcm = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/ktp-accounts-kcm-16.04.2.tar.xz";
- sha256 = "1pzwpfp93p47zghqwfqhgk16j9ar52zcx0kfacpy8z7014wsj02k";
- name = "ktp-accounts-kcm-16.04.2.tar.xz";
- };
- };
- ktp-approver = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/ktp-approver-16.04.2.tar.xz";
- sha256 = "1q74di50kl46px23fp4lmx5l0j9ndlxhsfvn78j42lfp6wkgqi8c";
- name = "ktp-approver-16.04.2.tar.xz";
- };
- };
- ktp-auth-handler = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/ktp-auth-handler-16.04.2.tar.xz";
- sha256 = "15dm09i4bny5b1958390r1wjsm26kkhmxlfrgd9az4yln8pmidmh";
- name = "ktp-auth-handler-16.04.2.tar.xz";
- };
- };
- ktp-call-ui = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/ktp-call-ui-16.04.2.tar.xz";
- sha256 = "0wf6wmxzzpsnwglyf46q6mwznl0r5lmzf8n39a62qf84jgxj3p7v";
- name = "ktp-call-ui-16.04.2.tar.xz";
- };
- };
- ktp-common-internals = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/ktp-common-internals-16.04.2.tar.xz";
- sha256 = "04177adil082qfrq7y4lg06hzmx8kcpbdgfisa59wsmmcyydziy1";
- name = "ktp-common-internals-16.04.2.tar.xz";
- };
- };
- ktp-contact-list = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/ktp-contact-list-16.04.2.tar.xz";
- sha256 = "017mz9z8248d9hmz37dsnjdfjk4m58y546aq6y93mahywl0dccia";
- name = "ktp-contact-list-16.04.2.tar.xz";
- };
- };
- ktp-contact-runner = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/ktp-contact-runner-16.04.2.tar.xz";
- sha256 = "0c3gl5ass4nfmrbvynj8hf3iyrrybn9h4bm07l84hky2bmhqjhkw";
- name = "ktp-contact-runner-16.04.2.tar.xz";
- };
- };
- ktp-desktop-applets = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/ktp-desktop-applets-16.04.2.tar.xz";
- sha256 = "1fmm4vi6r9hhj4xaz6lz3rx04l6fkhqq9qrcxbv5xbrif0jw82f6";
- name = "ktp-desktop-applets-16.04.2.tar.xz";
- };
- };
- ktp-filetransfer-handler = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/ktp-filetransfer-handler-16.04.2.tar.xz";
- sha256 = "0zlmy9fs8qvk6jzdp9zs3y4jz5nz5asxvcics4hcpbl5s4b5nyf0";
- name = "ktp-filetransfer-handler-16.04.2.tar.xz";
- };
- };
- ktp-kded-module = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/ktp-kded-module-16.04.2.tar.xz";
- sha256 = "0bnqv87gbv9idspp7yh8y690d66l0j3x70krg413xk8pqs012r15";
- name = "ktp-kded-module-16.04.2.tar.xz";
- };
- };
- ktp-send-file = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/ktp-send-file-16.04.2.tar.xz";
- sha256 = "1nqw7b66z4fkcvbm7cl9vdwwwsbylk0mbj5rs37laddjyn0igcnq";
- name = "ktp-send-file-16.04.2.tar.xz";
- };
- };
- ktp-text-ui = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/ktp-text-ui-16.04.2.tar.xz";
- sha256 = "1ls9ns6wb6wvcxli4almc2dv7gzihsihdpb1i171c3yr16d5kmvf";
- name = "ktp-text-ui-16.04.2.tar.xz";
- };
- };
- ktuberling = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/ktuberling-16.04.2.tar.xz";
- sha256 = "15r6m3861cpnmzyrxf5ixqwp6vvjd875237bbb6h881hgw9xfv57";
- name = "ktuberling-16.04.2.tar.xz";
- };
- };
- kturtle = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kturtle-16.04.2.tar.xz";
- sha256 = "12z7r1fprz83da34msnns6s3ar1734y6cxh0infv758nvmykhkqn";
- name = "kturtle-16.04.2.tar.xz";
- };
- };
- kubrick = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kubrick-16.04.2.tar.xz";
- sha256 = "16mjswzybnpb1iwzaygkva99lf551fz4864mngav1v0v6489ryc1";
- name = "kubrick-16.04.2.tar.xz";
- };
- };
- kuser = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kuser-16.04.2.tar.xz";
- sha256 = "0cxag2p88959vk11qdcxhb3kmr18wrk5chf5644phapyns8lm0i6";
- name = "kuser-16.04.2.tar.xz";
- };
- };
- kwalletmanager = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kwalletmanager-16.04.2.tar.xz";
- sha256 = "1l37ykkkfy8m9x9v9x5yr701nvgxwsx9npqfhlrgaq0clq0xvsxd";
- name = "kwalletmanager-16.04.2.tar.xz";
- };
- };
- kwordquiz = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/kwordquiz-16.04.2.tar.xz";
- sha256 = "0nra7gpqfrnl0hl2ankzkbdfqrs3iwr6x6harrhcaxmszpbiw7fa";
- name = "kwordquiz-16.04.2.tar.xz";
- };
- };
- libgravatar = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/libgravatar-16.04.2.tar.xz";
- sha256 = "1rw800ch89gd1xsbgm9wz7vbayyvrli7gcnn9miaqhhjgcgpjs6p";
- name = "libgravatar-16.04.2.tar.xz";
- };
- };
- libkcddb = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/libkcddb-16.04.2.tar.xz";
- sha256 = "14dsc35kh843xsva0csqkv2rgyspvg3ld3gjr8ks4zp7ry1wi6gj";
- name = "libkcddb-16.04.2.tar.xz";
- };
- };
- libkcompactdisc = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/libkcompactdisc-16.04.2.tar.xz";
- sha256 = "05k19a7mhk5xxd8k653i8xqc58xjrxyphdwsw746cvw3nqpiiaml";
- name = "libkcompactdisc-16.04.2.tar.xz";
- };
- };
- libkdcraw = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/libkdcraw-16.04.2.tar.xz";
- sha256 = "1kcyhc8gi2av109nracm42q91k7ndmj7yw8q52ssfzkbw4r8c9yw";
- name = "libkdcraw-16.04.2.tar.xz";
- };
- };
- libkdeedu = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/libkdeedu-16.04.2.tar.xz";
- sha256 = "15prm6lfhpys4n6rsbvfqcm2w3sr315lynsnww8740nk59sjm45f";
- name = "libkdeedu-16.04.2.tar.xz";
- };
- };
- libkdegames = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/libkdegames-16.04.2.tar.xz";
- sha256 = "1b87g8jihyfzpvws6xwx8cbc118nfdwksh0j2sl7hbnnkgc6s6ia";
- name = "libkdegames-16.04.2.tar.xz";
- };
- };
- libkdepim = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/libkdepim-16.04.2.tar.xz";
- sha256 = "0p2p19qqdnkpvp1dnm0idffg0x03dwqkrjy426l8ahabl0xp8pl4";
- name = "libkdepim-16.04.2.tar.xz";
- };
- };
- libkeduvocdocument = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/libkeduvocdocument-16.04.2.tar.xz";
- sha256 = "002scb7b174d03ady232dc2drnphnw51a9a0wb3rdm3kip4m85k1";
- name = "libkeduvocdocument-16.04.2.tar.xz";
- };
- };
- libkexiv2 = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/libkexiv2-16.04.2.tar.xz";
- sha256 = "11d33wdlhlpbjkrfawb45py5akzd4nyry0vi28mx4hkk5glbhd82";
- name = "libkexiv2-16.04.2.tar.xz";
- };
- };
- libkface = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/libkface-16.04.2.tar.xz";
- sha256 = "1r97j4dkm509r7nvbdpqnvfzlznlvqbsq9lghqrrcaafizrz074h";
- name = "libkface-16.04.2.tar.xz";
- };
- };
- libkgeomap = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/libkgeomap-16.04.2.tar.xz";
- sha256 = "0xvgg9cb63bpl9fc68l038zlz38l175n7q3jpcqnx15f6qb8vcpk";
- name = "libkgeomap-16.04.2.tar.xz";
- };
- };
- libkipi = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/libkipi-16.04.2.tar.xz";
- sha256 = "02gknmsqh9x31p83y7nb550yjr6rfnsdh3m1yqm5n3jyjdmfxd66";
- name = "libkipi-16.04.2.tar.xz";
- };
- };
- libkleo = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/libkleo-16.04.2.tar.xz";
- sha256 = "1bdfqnrslzmsk7dg3f8g1p4b2m5hd5hvh1ws9phkhilhcxp2b33v";
- name = "libkleo-16.04.2.tar.xz";
- };
- };
- libkmahjongg = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/libkmahjongg-16.04.2.tar.xz";
- sha256 = "0chszdkcyjmny8j5nhbl9y6334qb7wy3ll16p829cy8k2hj69pb4";
- name = "libkmahjongg-16.04.2.tar.xz";
- };
- };
- libkomparediff2 = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/libkomparediff2-16.04.2.tar.xz";
- sha256 = "035m9da6cnn0masfn79cmd43fviapr7fldl0diiwpcmjwkpmrp1v";
- name = "libkomparediff2-16.04.2.tar.xz";
- };
- };
- libksane = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/libksane-16.04.2.tar.xz";
- sha256 = "1s150l0kcmp98l134k8gwhzwzv4kk3583wv0lxd3l9li2940sjdp";
- name = "libksane-16.04.2.tar.xz";
- };
- };
- libksieve = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/libksieve-16.04.2.tar.xz";
- sha256 = "1i51zp4fkyyrh0f998i25yx7i7a9g9kcw5pfaisprh84rbyrdq1w";
- name = "libksieve-16.04.2.tar.xz";
- };
- };
- lokalize = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/lokalize-16.04.2.tar.xz";
- sha256 = "0cnrh49c14j64lv67ylm4fczbwbnrja8g4bwzqaaz1sm1ncxmyr3";
- name = "lokalize-16.04.2.tar.xz";
- };
- };
- lskat = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/lskat-16.04.2.tar.xz";
- sha256 = "0qd5z1c5c8b2vn3rpgms0bqzdbh69ji8h14ascis4znrq2hqc6p2";
- name = "lskat-16.04.2.tar.xz";
- };
- };
- mailcommon = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/mailcommon-16.04.2.tar.xz";
- sha256 = "0bcl0kqyqqhmnjli7qb4k1mgh1wwwbf622sxp9p0y91wwgy2y5f1";
- name = "mailcommon-16.04.2.tar.xz";
- };
- };
- mailimporter = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/mailimporter-16.04.2.tar.xz";
- sha256 = "1r9y91xbbyhd0rabwavi1q16a8rbi63zlsnkb0q64sw73bbyh3zz";
- name = "mailimporter-16.04.2.tar.xz";
- };
- };
- marble = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/marble-16.04.2.tar.xz";
- sha256 = "04wg317ypp25aszgla1vrjdc18p8xvjj1xizj4crzg85n700d81j";
- name = "marble-16.04.2.tar.xz";
- };
- };
- messagelib = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/messagelib-16.04.2.tar.xz";
- sha256 = "0kj7y0l7xgc7km3xnbnzy9316mz81hgv8hh8p5qjczy0bi77cy9c";
- name = "messagelib-16.04.2.tar.xz";
- };
- };
- minuet = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/minuet-16.04.2.tar.xz";
- sha256 = "1iph3g6fp96w686xm38cknqqp7kd1xb3cn7zlx7v32d12n4iasxq";
- name = "minuet-16.04.2.tar.xz";
- };
- };
- mplayerthumbs = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/mplayerthumbs-16.04.2.tar.xz";
- sha256 = "1zr2c5f48xrzyljbycnlg4z5j6fyqrp6545vd0iwaid3nnzxp7q4";
- name = "mplayerthumbs-16.04.2.tar.xz";
- };
- };
- okteta = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/okteta-16.04.2.tar.xz";
- sha256 = "0h5b0b64zs7v2q8wz738dd9llnifjamvq9gb1g05fvq258qan49z";
- name = "okteta-16.04.2.tar.xz";
- };
- };
- okular = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/okular-16.04.2.tar.xz";
- sha256 = "1iw92rkbzsk82gx1ks0iqciv7d4561ab5z65jdn1aszdw5agjs2s";
- name = "okular-16.04.2.tar.xz";
- };
- };
- palapeli = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/palapeli-16.04.2.tar.xz";
- sha256 = "103y3xmbr6km1r1ljmb66sn1d8rha7qkkssqyg1gnxq5xi4wwj1w";
- name = "palapeli-16.04.2.tar.xz";
- };
- };
- parley = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/parley-16.04.2.tar.xz";
- sha256 = "1f8xx30wkw7h4qpg4vpxxmhmibivn5si84bpql2nyjnrjqcaj4af";
- name = "parley-16.04.2.tar.xz";
- };
- };
- picmi = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/picmi-16.04.2.tar.xz";
- sha256 = "05i6d99pbihprl0525w3glxwbgygqincxdmvcma691r4xwdvi8p1";
- name = "picmi-16.04.2.tar.xz";
- };
- };
- pimcommon = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/pimcommon-16.04.2.tar.xz";
- sha256 = "02x63vg599876sldwafvcjb13nf7bivahsh6gg0lkhkqq8gbxd2l";
- name = "pimcommon-16.04.2.tar.xz";
- };
- };
- poxml = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/poxml-16.04.2.tar.xz";
- sha256 = "1d3jswsdzsglk4kwqjivwi2h7br6xw9h4y1bcdqq1n1ibzr9cxap";
- name = "poxml-16.04.2.tar.xz";
- };
- };
- print-manager = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/print-manager-16.04.2.tar.xz";
- sha256 = "0sm6qnd2lk6c354fdah6rj9y2v9aiiss1h4nrpvc4rvb9yxi9hiz";
- name = "print-manager-16.04.2.tar.xz";
- };
- };
- rocs = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/rocs-16.04.2.tar.xz";
- sha256 = "0gfqcvijqxvgyjz5gv9zaj72a351fkac1w0qz8yfbrsch8f190z6";
- name = "rocs-16.04.2.tar.xz";
- };
- };
- signon-kwallet-extension = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/signon-kwallet-extension-16.04.2.tar.xz";
- sha256 = "1hbk5ssi4byi5hbb1gy8337iv1mb2c5l8sw0ckxa8mz7iqd5kg96";
- name = "signon-kwallet-extension-16.04.2.tar.xz";
- };
- };
- spectacle = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/spectacle-16.04.2.tar.xz";
- sha256 = "0yz7gw6x746xqxsgn0iv94zsxx6l8kk5zkyzp0cx3vga925pbpvj";
- name = "spectacle-16.04.2.tar.xz";
- };
- };
- step = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/step-16.04.2.tar.xz";
- sha256 = "14f1i8ssqyp97v4pjl6rhjd2qx9fjxzndbmssm9rww7dv3kgb3p0";
- name = "step-16.04.2.tar.xz";
- };
- };
- svgpart = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/svgpart-16.04.2.tar.xz";
- sha256 = "1zviplnlbl261icdp9c143jw5i90k386xn2jxyf6i2vc1bw8s98w";
- name = "svgpart-16.04.2.tar.xz";
- };
- };
- sweeper = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/sweeper-16.04.2.tar.xz";
- sha256 = "0p58h2dbwdvmrbd897h1wv3bsdfqrgvvqdq1dr6nlicwlp1dxjs1";
- name = "sweeper-16.04.2.tar.xz";
- };
- };
- syndication = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/syndication-16.04.2.tar.xz";
- sha256 = "1yg32bhb3d0y9fl1sgb3g1ky7vww7ax1w91k7sg3w30s7zi6668m";
- name = "syndication-16.04.2.tar.xz";
- };
- };
- umbrello = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/umbrello-16.04.2.tar.xz";
- sha256 = "0avx8s889xiwjcfx5ihj3clr10w1ax4h92pb9zvzx8nrfqp23xgl";
- name = "umbrello-16.04.2.tar.xz";
- };
- };
- zeroconf-ioslave = {
- version = "16.04.2";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.2/src/zeroconf-ioslave-16.04.2.tar.xz";
- sha256 = "1ly4x8js0y88nrjddcvbbv4c9gac27y9vpzzr33alr76w6g22kk1";
- name = "zeroconf-ioslave-16.04.2.tar.xz";
- };
- };
-}
diff --git a/pkgs/desktops/kde-5/applications/ark/default.nix b/pkgs/desktops/kde-5/applications/ark/default.nix
new file mode 100644
index 00000000000..0af13b645e1
--- /dev/null
+++ b/pkgs/desktops/kde-5/applications/ark/default.nix
@@ -0,0 +1,35 @@
+{
+ kdeApp, lib,
+
+ extra-cmake-modules, kdoctools, makeQtWrapper,
+
+ karchive, kconfig, kcrash, kdbusaddons, ki18n, kiconthemes, khtml, kio,
+ kservice, kpty, kwidgetsaddons, libarchive,
+
+ # Archive tools
+ p7zip, unrar, unzipNLS, zip
+}:
+
+kdeApp {
+ name = "ark";
+ nativeBuildInputs = [
+ extra-cmake-modules kdoctools makeQtWrapper
+ ];
+ propagatedBuildInputs = [
+ khtml ki18n kio karchive kconfig kcrash kdbusaddons kiconthemes kservice
+ kpty kwidgetsaddons libarchive
+ ];
+ postInstall =
+ let
+ PATH = lib.makeBinPath [
+ p7zip unrar unzipNLS zip
+ ];
+ in ''
+ wrapQtProgram "$out/bin/ark" \
+ --prefix PATH : "${PATH}"
+ '';
+ meta = {
+ license = with lib.licenses; [ gpl2 lgpl3 ];
+ maintainers = [ lib.maintainers.ttuegel ];
+ };
+}
diff --git a/pkgs/desktops/kde-5/applications-16.04/baloo-widgets.nix b/pkgs/desktops/kde-5/applications/baloo-widgets.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/baloo-widgets.nix
rename to pkgs/desktops/kde-5/applications/baloo-widgets.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/default.nix b/pkgs/desktops/kde-5/applications/default.nix
similarity index 80%
rename from pkgs/desktops/kde-5/applications-16.04/default.nix
rename to pkgs/desktops/kde-5/applications/default.nix
index d66285deb8b..d3dc48b5282 100644
--- a/pkgs/desktops/kde-5/applications-16.04/default.nix
+++ b/pkgs/desktops/kde-5/applications/default.nix
@@ -2,14 +2,10 @@
# Updates
-Before a major version update, make a copy of this directory. (We like to
-keep the old version around for a short time after major updates.)
-
-1. Update the URL in `maintainers/scripts/generate-kde-applications.sh`.
-2. From the top of the Nixpkgs tree, run
- `./maintainers/scripts/generate-kde-applications.sh > pkgs/desktops/kde-5/applications-$VERSION/srcs.nix`.
-3. Check that the new packages build correctly.
-4. Commit the changes and open a pull request.
+1. Update the URL in `maintainers/scripts/generate-kde-applications.sh` and
+ run that script from the top of the Nixpkgs tree.
+2. Check that the new packages build correctly.
+3. Commit the changes and open a pull request.
*/
@@ -31,7 +27,7 @@ let
kdelibs = callPackage ./kdelibs { inherit (pkgs) attica phonon; };
- ark = callPackage ./ark.nix {};
+ ark = callPackage ./ark/default.nix {};
baloo-widgets = callPackage ./baloo-widgets.nix {};
dolphin = callPackage ./dolphin.nix {};
dolphin-plugins = callPackage ./dolphin-plugins.nix {};
diff --git a/pkgs/desktops/kde-5/applications-16.04/dolphin-plugins.nix b/pkgs/desktops/kde-5/applications/dolphin-plugins.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/dolphin-plugins.nix
rename to pkgs/desktops/kde-5/applications/dolphin-plugins.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/dolphin.nix b/pkgs/desktops/kde-5/applications/dolphin.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/dolphin.nix
rename to pkgs/desktops/kde-5/applications/dolphin.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/ffmpegthumbs.nix b/pkgs/desktops/kde-5/applications/ffmpegthumbs.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/ffmpegthumbs.nix
rename to pkgs/desktops/kde-5/applications/ffmpegthumbs.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/filelight.nix b/pkgs/desktops/kde-5/applications/filelight.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/filelight.nix
rename to pkgs/desktops/kde-5/applications/filelight.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/gpgmepp.nix b/pkgs/desktops/kde-5/applications/gpgmepp.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/gpgmepp.nix
rename to pkgs/desktops/kde-5/applications/gpgmepp.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/gwenview.nix b/pkgs/desktops/kde-5/applications/gwenview.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/gwenview.nix
rename to pkgs/desktops/kde-5/applications/gwenview.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/kate.nix b/pkgs/desktops/kde-5/applications/kate.nix
similarity index 60%
rename from pkgs/desktops/kde-5/applications-16.04/kate.nix
rename to pkgs/desktops/kde-5/applications/kate.nix
index e368483771f..94faa065592 100644
--- a/pkgs/desktops/kde-5/applications-16.04/kate.nix
+++ b/pkgs/desktops/kde-5/applications/kate.nix
@@ -1,29 +1,9 @@
-{ kdeApp
-, lib
-, extra-cmake-modules
-, kdoctools
-, qtscript
-, kactivities
-, kconfig
-, kcrash
-, kguiaddons
-, kiconthemes
-, ki18n
-, kinit
-, kjobwidgets
-, kio
-, kparts
-, ktexteditor
-, kwindowsystem
-, kxmlgui
-, kdbusaddons
-, kwallet
-, plasma-framework
-, kitemmodels
-, knotifications
-, threadweaver
-, knewstuff
-, libgit2
+{
+ kdeApp, lib, makeQtWrapper, extra-cmake-modules, kdoctools,
+ kactivities, kconfig, kcrash, kguiaddons, kiconthemes, ki18n, kinit,
+ kjobwidgets, kio, kparts, ktexteditor, kwindowsystem, kxmlgui, kdbusaddons,
+ kwallet, plasma-framework, kitemmodels, knotifications, qtscript, threadweaver,
+ knewstuff, libgit2
}:
kdeApp {
@@ -33,8 +13,7 @@ kdeApp {
maintainers = [ lib.maintainers.ttuegel ];
};
nativeBuildInputs = [
- extra-cmake-modules
- kdoctools
+ extra-cmake-modules kdoctools makeQtWrapper
];
propagatedBuildInputs = [
kactivities ki18n kio ktexteditor kwindowsystem plasma-framework qtscript
diff --git a/pkgs/desktops/kde-5/applications-16.04/kcalc.nix b/pkgs/desktops/kde-5/applications/kcalc.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kcalc.nix
rename to pkgs/desktops/kde-5/applications/kcalc.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/kcolorchooser.nix b/pkgs/desktops/kde-5/applications/kcolorchooser.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kcolorchooser.nix
rename to pkgs/desktops/kde-5/applications/kcolorchooser.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/kde-app.nix b/pkgs/desktops/kde-5/applications/kde-app.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kde-app.nix
rename to pkgs/desktops/kde-5/applications/kde-app.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/kde-locale-4.nix b/pkgs/desktops/kde-5/applications/kde-locale-4.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kde-locale-4.nix
rename to pkgs/desktops/kde-5/applications/kde-locale-4.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/kde-locale-5.nix b/pkgs/desktops/kde-5/applications/kde-locale-5.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kde-locale-5.nix
rename to pkgs/desktops/kde-5/applications/kde-locale-5.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/kdegraphics-thumbnailers.nix b/pkgs/desktops/kde-5/applications/kdegraphics-thumbnailers.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kdegraphics-thumbnailers.nix
rename to pkgs/desktops/kde-5/applications/kdegraphics-thumbnailers.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/kdelibs/0001-old-kde4-cmake-policies.patch b/pkgs/desktops/kde-5/applications/kdelibs/0001-old-kde4-cmake-policies.patch
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kdelibs/0001-old-kde4-cmake-policies.patch
rename to pkgs/desktops/kde-5/applications/kdelibs/0001-old-kde4-cmake-policies.patch
diff --git a/pkgs/desktops/kde-5/applications-16.04/kdelibs/0002-polkit-install-path.patch b/pkgs/desktops/kde-5/applications/kdelibs/0002-polkit-install-path.patch
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kdelibs/0002-polkit-install-path.patch
rename to pkgs/desktops/kde-5/applications/kdelibs/0002-polkit-install-path.patch
diff --git a/pkgs/desktops/kde-5/applications-16.04/kdelibs/0003-remove_xdg_impurities.patch b/pkgs/desktops/kde-5/applications/kdelibs/0003-remove_xdg_impurities.patch
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kdelibs/0003-remove_xdg_impurities.patch
rename to pkgs/desktops/kde-5/applications/kdelibs/0003-remove_xdg_impurities.patch
diff --git a/pkgs/desktops/kde-5/applications-16.04/kdelibs/default.nix b/pkgs/desktops/kde-5/applications/kdelibs/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kdelibs/default.nix
rename to pkgs/desktops/kde-5/applications/kdelibs/default.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/kdelibs/setup-hook.sh b/pkgs/desktops/kde-5/applications/kdelibs/setup-hook.sh
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kdelibs/setup-hook.sh
rename to pkgs/desktops/kde-5/applications/kdelibs/setup-hook.sh
diff --git a/pkgs/desktops/kde-5/applications-16.04/kdenetwork-filesharing.nix b/pkgs/desktops/kde-5/applications/kdenetwork-filesharing.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kdenetwork-filesharing.nix
rename to pkgs/desktops/kde-5/applications/kdenetwork-filesharing.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/kgpg.nix b/pkgs/desktops/kde-5/applications/kgpg.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kgpg.nix
rename to pkgs/desktops/kde-5/applications/kgpg.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/khelpcenter.nix b/pkgs/desktops/kde-5/applications/khelpcenter.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/khelpcenter.nix
rename to pkgs/desktops/kde-5/applications/khelpcenter.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/kio-extras.nix b/pkgs/desktops/kde-5/applications/kio-extras.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kio-extras.nix
rename to pkgs/desktops/kde-5/applications/kio-extras.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/kompare.nix b/pkgs/desktops/kde-5/applications/kompare.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kompare.nix
rename to pkgs/desktops/kde-5/applications/kompare.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/konsole.nix b/pkgs/desktops/kde-5/applications/konsole.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/konsole.nix
rename to pkgs/desktops/kde-5/applications/konsole.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/l10n.nix b/pkgs/desktops/kde-5/applications/l10n.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/l10n.nix
rename to pkgs/desktops/kde-5/applications/l10n.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/libkdcraw.nix b/pkgs/desktops/kde-5/applications/libkdcraw.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/libkdcraw.nix
rename to pkgs/desktops/kde-5/applications/libkdcraw.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/libkexiv2.nix b/pkgs/desktops/kde-5/applications/libkexiv2.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/libkexiv2.nix
rename to pkgs/desktops/kde-5/applications/libkexiv2.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/libkipi.nix b/pkgs/desktops/kde-5/applications/libkipi.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/libkipi.nix
rename to pkgs/desktops/kde-5/applications/libkipi.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/libkomparediff2.nix b/pkgs/desktops/kde-5/applications/libkomparediff2.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/libkomparediff2.nix
rename to pkgs/desktops/kde-5/applications/libkomparediff2.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/okular.nix b/pkgs/desktops/kde-5/applications/okular.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/okular.nix
rename to pkgs/desktops/kde-5/applications/okular.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/print-manager.nix b/pkgs/desktops/kde-5/applications/print-manager.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/print-manager.nix
rename to pkgs/desktops/kde-5/applications/print-manager.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/spectacle.nix b/pkgs/desktops/kde-5/applications/spectacle.nix
similarity index 97%
rename from pkgs/desktops/kde-5/applications-16.04/spectacle.nix
rename to pkgs/desktops/kde-5/applications/spectacle.nix
index 7e324f2b3fc..867c0b53b1e 100644
--- a/pkgs/desktops/kde-5/applications-16.04/spectacle.nix
+++ b/pkgs/desktops/kde-5/applications/spectacle.nix
@@ -29,7 +29,7 @@ kdeApp {
kconfig kcoreaddons kdbusaddons kdeclarative ki18n kio knotifications
kscreen kwidgetsaddons kwindowsystem kxmlgui libkipi xcb-util-cursor
];
- postFixup = ''
+ postInstall = ''
wrapQtProgram "$out/bin/spectacle"
'';
}
diff --git a/pkgs/desktops/kde-5/applications/srcs.nix b/pkgs/desktops/kde-5/applications/srcs.nix
new file mode 100644
index 00000000000..2eb2afcd0b1
--- /dev/null
+++ b/pkgs/desktops/kde-5/applications/srcs.nix
@@ -0,0 +1,2093 @@
+# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh
+{ fetchurl, mirror }:
+
+{
+ akonadi = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/akonadi-16.04.3.tar.xz";
+ sha256 = "1fsv5znj5a7mql8swcq085qjnvcmwyjm74lwj3rdrxmw91s09w96";
+ name = "akonadi-16.04.3.tar.xz";
+ };
+ };
+ akonadi-calendar = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/akonadi-calendar-16.04.3.tar.xz";
+ sha256 = "18gwsk4snbp475kqpkl3jnca68pprpjhj8xjb4myf0s0bbsi01jl";
+ name = "akonadi-calendar-16.04.3.tar.xz";
+ };
+ };
+ akonadi-search = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/akonadi-search-16.04.3.tar.xz";
+ sha256 = "109gl55zhrmvz2k31v7i724jm1jllz0yshg556ii3n9raijmny8m";
+ name = "akonadi-search-16.04.3.tar.xz";
+ };
+ };
+ analitza = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/analitza-16.04.3.tar.xz";
+ sha256 = "0qk2gcrh2qb7krhijzvb95336l4zab4dkhplgbc1k6sdwm7r83dj";
+ name = "analitza-16.04.3.tar.xz";
+ };
+ };
+ ark = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ark-16.04.3.tar.xz";
+ sha256 = "041bqkha4s01n8jn4agbg1vacfhiwr7x5rds9sh3jr5nvmr2573r";
+ name = "ark-16.04.3.tar.xz";
+ };
+ };
+ artikulate = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/artikulate-16.04.3.tar.xz";
+ sha256 = "166dnlp34sbnmwjrvl4rg3a9c4s8z46nn7aqp5b0l66iis6qrhyn";
+ name = "artikulate-16.04.3.tar.xz";
+ };
+ };
+ audiocd-kio = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/audiocd-kio-16.04.3.tar.xz";
+ sha256 = "1jds7f3m0x3f9x2invphsaxmj0gf3af6cbqczilhia2qchsyq0vb";
+ name = "audiocd-kio-16.04.3.tar.xz";
+ };
+ };
+ baloo-widgets = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/baloo-widgets-16.04.3.tar.xz";
+ sha256 = "06nick4dcs3qqcv7vqs2cn8848yjifhyw79cvc6562siq66vh5zp";
+ name = "baloo-widgets-16.04.3.tar.xz";
+ };
+ };
+ blinken = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/blinken-16.04.3.tar.xz";
+ sha256 = "1nbi7rshw2qd3jvgkky0hbn8yf38lmrs1x5sbd68wsxvpf2rwwzp";
+ name = "blinken-16.04.3.tar.xz";
+ };
+ };
+ bomber = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/bomber-16.04.3.tar.xz";
+ sha256 = "1lb4cgsmk99j973gn4j5mqlj6zx8in3hmq8ma9n107y8sg46bzvv";
+ name = "bomber-16.04.3.tar.xz";
+ };
+ };
+ bovo = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/bovo-16.04.3.tar.xz";
+ sha256 = "0c8jyqlzplkfa55i3pf5f4brxdyszzlp542l8w6dnl7lpazyjrsi";
+ name = "bovo-16.04.3.tar.xz";
+ };
+ };
+ calendarsupport = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/calendarsupport-16.04.3.tar.xz";
+ sha256 = "1la37axq0jz4palgw4pr0mqaw9s2dmr7jglzws5knvihvq1czls9";
+ name = "calendarsupport-16.04.3.tar.xz";
+ };
+ };
+ cantor = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/cantor-16.04.3.tar.xz";
+ sha256 = "1mqcmb1dx5gvjaa89sszdkpkgd8sb36mvx074az3w69aj6bkpq7a";
+ name = "cantor-16.04.3.tar.xz";
+ };
+ };
+ cervisia = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/cervisia-16.04.3.tar.xz";
+ sha256 = "1irxwwyc18n5j79nyyi7zimk9iqbhfhi81vkwfy9fq9w7iis1z0g";
+ name = "cervisia-16.04.3.tar.xz";
+ };
+ };
+ dolphin = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/dolphin-16.04.3.tar.xz";
+ sha256 = "16c5lnqldc8jmz90ym35l4s21wmn6lg4p5xhyyi5khq9yz9447r0";
+ name = "dolphin-16.04.3.tar.xz";
+ };
+ };
+ dolphin-plugins = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/dolphin-plugins-16.04.3.tar.xz";
+ sha256 = "1qwq1b9ivivn6sdql1q7kfg80790w1b651vwfqbqdsbgxc9b6qzg";
+ name = "dolphin-plugins-16.04.3.tar.xz";
+ };
+ };
+ dragon = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/dragon-16.04.3.tar.xz";
+ sha256 = "1d8hrh3mjf3if6asi40arpihwv91xs7ydcmr0nf355vajsn337vl";
+ name = "dragon-16.04.3.tar.xz";
+ };
+ };
+ eventviews = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/eventviews-16.04.3.tar.xz";
+ sha256 = "1rn3kfrkc48hwgd0b59gy6jax9gd78g7lwgmxcs977xzhl7mc3kh";
+ name = "eventviews-16.04.3.tar.xz";
+ };
+ };
+ ffmpegthumbs = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ffmpegthumbs-16.04.3.tar.xz";
+ sha256 = "03imnxzkbsfwgcqx1hhkpad6pdyw157picb9ydrlkwqlg0pqcgr0";
+ name = "ffmpegthumbs-16.04.3.tar.xz";
+ };
+ };
+ filelight = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/filelight-16.04.3.tar.xz";
+ sha256 = "1li4ylbq9vr3vr91y1r085557p22bvqgg4kqm5ra7bdwp9151j09";
+ name = "filelight-16.04.3.tar.xz";
+ };
+ };
+ gpgmepp = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/gpgmepp-16.04.3.tar.xz";
+ sha256 = "1850pdysi7c1w0nxnhcbrhnkrfqyrcl0laxyjcw1g1ln764pwcmj";
+ name = "gpgmepp-16.04.3.tar.xz";
+ };
+ };
+ granatier = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/granatier-16.04.3.tar.xz";
+ sha256 = "172rlx3472gq6lv30p8sw09rj4bxj4lxny4xqi0vwkbdmfscfsxw";
+ name = "granatier-16.04.3.tar.xz";
+ };
+ };
+ grantleetheme = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/grantleetheme-16.04.3.tar.xz";
+ sha256 = "071qybjfa83441xmxd6mjj189blcrds9ddqcpvvna1zlajn0rgby";
+ name = "grantleetheme-16.04.3.tar.xz";
+ };
+ };
+ gwenview = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/gwenview-16.04.3.tar.xz";
+ sha256 = "02cjbz4zjbxvqcd7cwaxjzdhjhs86m79cdzcf41q1byk41jajshl";
+ name = "gwenview-16.04.3.tar.xz";
+ };
+ };
+ incidenceeditor = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/incidenceeditor-16.04.3.tar.xz";
+ sha256 = "1yms81yzkj84hn5w8kkzsnxb6m7rn5n1d9n1nap4rh570bmssrjf";
+ name = "incidenceeditor-16.04.3.tar.xz";
+ };
+ };
+ jovie = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/jovie-16.04.3.tar.xz";
+ sha256 = "0n8bk36n2024rhiy0qfwz03vx8nja2jylwgfqfj4y5lzdqnc9kbz";
+ name = "jovie-16.04.3.tar.xz";
+ };
+ };
+ juk = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/juk-16.04.3.tar.xz";
+ sha256 = "1nfs23dd5nd5qmdr8c2m6wxaq7m1vrxhdwjm7gqjrskmw3gcd0ai";
+ name = "juk-16.04.3.tar.xz";
+ };
+ };
+ kaccessible = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kaccessible-16.04.3.tar.xz";
+ sha256 = "1qmqpcp5dfn2iwvkfya5bb8v56d2zw9136swzv9nf44gg8mlayvx";
+ name = "kaccessible-16.04.3.tar.xz";
+ };
+ };
+ kaccounts-integration = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kaccounts-integration-16.04.3.tar.xz";
+ sha256 = "0wspjy6xpki8i2qkp289hmgz9cg8vqy50fp3ljljddqcgkxmi8lb";
+ name = "kaccounts-integration-16.04.3.tar.xz";
+ };
+ };
+ kaccounts-providers = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kaccounts-providers-16.04.3.tar.xz";
+ sha256 = "0imnqxcwyk1icbqzhmyz60sv85317w6v2ab3b35vnw65fl7dp7g9";
+ name = "kaccounts-providers-16.04.3.tar.xz";
+ };
+ };
+ kajongg = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kajongg-16.04.3.tar.xz";
+ sha256 = "0v8cvr0xf6895169w1qa9qw5ix3kb2820p6qs6klpn5jhk5v2xk5";
+ name = "kajongg-16.04.3.tar.xz";
+ };
+ };
+ kalarmcal = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kalarmcal-16.04.3.tar.xz";
+ sha256 = "1cp9z52914h6ydzvnk1zhg0s2p4i51rx1d2s8x21n7vh4l7g89js";
+ name = "kalarmcal-16.04.3.tar.xz";
+ };
+ };
+ kalgebra = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kalgebra-16.04.3.tar.xz";
+ sha256 = "17ym0q0qzgq4krk47k9vr6im658rryk51589w7r1ixpbzagwiwnv";
+ name = "kalgebra-16.04.3.tar.xz";
+ };
+ };
+ kalzium = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kalzium-16.04.3.tar.xz";
+ sha256 = "1dpq0g52qfp3fi4ymynzqalyc2640j52xkkkh85awfmqrprwrrvr";
+ name = "kalzium-16.04.3.tar.xz";
+ };
+ };
+ kamera = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kamera-16.04.3.tar.xz";
+ sha256 = "10bclanywlz3ac782hp2ahg6dik0q8dsh733w9cxww0v64pg932r";
+ name = "kamera-16.04.3.tar.xz";
+ };
+ };
+ kanagram = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kanagram-16.04.3.tar.xz";
+ sha256 = "1pnazqmcjhckywch1wkr8ddncpd2anpx233084raynylkrx5m1fg";
+ name = "kanagram-16.04.3.tar.xz";
+ };
+ };
+ kapman = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kapman-16.04.3.tar.xz";
+ sha256 = "0hzdbk741mb92fzkdpabrjkpw93yvxjwzj0q4dnlw4alyv90b2hi";
+ name = "kapman-16.04.3.tar.xz";
+ };
+ };
+ kapptemplate = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kapptemplate-16.04.3.tar.xz";
+ sha256 = "07d6vbhs5mhqv9275lgplfp8y8cdx395ykncdr6cnpsgh3swn6ck";
+ name = "kapptemplate-16.04.3.tar.xz";
+ };
+ };
+ kate = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kate-16.04.3.tar.xz";
+ sha256 = "1a8m7wzsxlxmqd6i90ascynrva61r486hqb3y78n34s64q1h9w4d";
+ name = "kate-16.04.3.tar.xz";
+ };
+ };
+ katomic = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/katomic-16.04.3.tar.xz";
+ sha256 = "1jcb4fz91abbsfmpwsi55k2nbdg6bdazi135fxr4c3cxbm55zrmk";
+ name = "katomic-16.04.3.tar.xz";
+ };
+ };
+ kblackbox = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kblackbox-16.04.3.tar.xz";
+ sha256 = "11zkp7yvwsiw54hvxmf55pw7yf165jrw6z56ak4lp936kb8w4i4v";
+ name = "kblackbox-16.04.3.tar.xz";
+ };
+ };
+ kblocks = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kblocks-16.04.3.tar.xz";
+ sha256 = "11wxi7csqrf0scb7nhyvs6vp4gissig83gjpckksy0jkyszi9j2b";
+ name = "kblocks-16.04.3.tar.xz";
+ };
+ };
+ kblog = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kblog-16.04.3.tar.xz";
+ sha256 = "0g79jb8wz3xhkq933ia7x00g2z9fb2kmif6wssipk6c88llspi70";
+ name = "kblog-16.04.3.tar.xz";
+ };
+ };
+ kbounce = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kbounce-16.04.3.tar.xz";
+ sha256 = "0p0zkn9irksf9vb4zh3anbdhq7igjs6lqf2zqk503arjzp3f0aw3";
+ name = "kbounce-16.04.3.tar.xz";
+ };
+ };
+ kbreakout = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kbreakout-16.04.3.tar.xz";
+ sha256 = "1dndpjzgksbwfqimnww4fzr69fifx7n4jrmjfxh51mkapj2p78mg";
+ name = "kbreakout-16.04.3.tar.xz";
+ };
+ };
+ kbruch = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kbruch-16.04.3.tar.xz";
+ sha256 = "1f0ws4s6q8p6xn2mhxw039fb331dwk0z6grad20p2m149pw5nc23";
+ name = "kbruch-16.04.3.tar.xz";
+ };
+ };
+ kcachegrind = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kcachegrind-16.04.3.tar.xz";
+ sha256 = "1lvql6mm032vhmva95fw6mfkwlpigg1cc2vskhylb0kprjaywc83";
+ name = "kcachegrind-16.04.3.tar.xz";
+ };
+ };
+ kcalc = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kcalc-16.04.3.tar.xz";
+ sha256 = "1bb85fjyc2phgy890c7vxn935400zpcnbh46g42qgfd7pbpy9wm6";
+ name = "kcalc-16.04.3.tar.xz";
+ };
+ };
+ kcalcore = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kcalcore-16.04.3.tar.xz";
+ sha256 = "0m71j3h7ky21858vxlx3d2pv8mpyaf47rpmb8faffjq8gmqi277l";
+ name = "kcalcore-16.04.3.tar.xz";
+ };
+ };
+ kcalutils = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kcalutils-16.04.3.tar.xz";
+ sha256 = "01kip66agfjmm6fhlaxfnn4rzikwjb4lnx7siir76zzcv1y8qqyx";
+ name = "kcalutils-16.04.3.tar.xz";
+ };
+ };
+ kcharselect = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kcharselect-16.04.3.tar.xz";
+ sha256 = "0bqbjlhi8vlx141b1p3xfjdn6cfhxbz1m66qya9pyjnvl4vqxkf4";
+ name = "kcharselect-16.04.3.tar.xz";
+ };
+ };
+ kcolorchooser = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kcolorchooser-16.04.3.tar.xz";
+ sha256 = "1kh19yd2xy3scb3knganl1c09qd5674algb4cmh7l11n1g16mx7p";
+ name = "kcolorchooser-16.04.3.tar.xz";
+ };
+ };
+ kcontacts = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kcontacts-16.04.3.tar.xz";
+ sha256 = "1y36q145gfp2qzj9yshswz6kpq5v62by2r1g3zp9dp3wl6hvdzb5";
+ name = "kcontacts-16.04.3.tar.xz";
+ };
+ };
+ kcron = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kcron-16.04.3.tar.xz";
+ sha256 = "11vy4iz59pfrbdp3z0c9gb7c6h9sps31kc48pjrjiynk6g4xharz";
+ name = "kcron-16.04.3.tar.xz";
+ };
+ };
+ kde-baseapps = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-baseapps-16.04.3.tar.xz";
+ sha256 = "0silcbkjk7ka81pfnli7qdcvnl5b21ig8q6jc9l10bd14mlgf3ax";
+ name = "kde-baseapps-16.04.3.tar.xz";
+ };
+ };
+ kdebugsettings = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdebugsettings-16.04.3.tar.xz";
+ sha256 = "18vcikq8ckba7vnkz2lfd613ysn3rjiaxp7v96ngiga1d3x4b3s6";
+ name = "kdebugsettings-16.04.3.tar.xz";
+ };
+ };
+ kde-dev-scripts = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-dev-scripts-16.04.3.tar.xz";
+ sha256 = "133nj3n2617zdgv88s0zin1mkssa8f75cpfnqjdbd0xcyv2fyfx3";
+ name = "kde-dev-scripts-16.04.3.tar.xz";
+ };
+ };
+ kde-dev-utils = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-dev-utils-16.04.3.tar.xz";
+ sha256 = "0h84liwdl0i4dlyk6ybr5pcn953i907jb7crhwp8dh7xa9zyjlim";
+ name = "kde-dev-utils-16.04.3.tar.xz";
+ };
+ };
+ kdeedu-data = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdeedu-data-16.04.3.tar.xz";
+ sha256 = "0b6lkhp8ljscm8snb0yc5kqxqnhxs0rilrw9v68ybqc6xz1pma0y";
+ name = "kdeedu-data-16.04.3.tar.xz";
+ };
+ };
+ kdegraphics-mobipocket = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdegraphics-mobipocket-16.04.3.tar.xz";
+ sha256 = "119mdbk6zb7ppgqk2p8bmlzqpfmdrbpfb2cdmdw2cawgr0hhpfkm";
+ name = "kdegraphics-mobipocket-16.04.3.tar.xz";
+ };
+ };
+ kdegraphics-strigi-analyzer = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdegraphics-strigi-analyzer-16.04.3.tar.xz";
+ sha256 = "05pmzqwf6mixb1za3jni1yc1i6x6dwnk9qz4vflkifqjp1lrx823";
+ name = "kdegraphics-strigi-analyzer-16.04.3.tar.xz";
+ };
+ };
+ kdegraphics-thumbnailers = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdegraphics-thumbnailers-16.04.3.tar.xz";
+ sha256 = "14310riwij79i6f10ld9fsf193bz8k5bhwmkp59h1l6nlhgaxyha";
+ name = "kdegraphics-thumbnailers-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-ar = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ar-16.04.3.tar.xz";
+ sha256 = "1363604cck13wxi2i7n6in7qn2ss3qmqb1zsq2a0848d1y451y63";
+ name = "kde-l10n-ar-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-ast = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ast-16.04.3.tar.xz";
+ sha256 = "1a1p60djslk05nxb3m89p95w5k83k9jnwrjs26jfmkk1qi1bhxgp";
+ name = "kde-l10n-ast-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-bg = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-bg-16.04.3.tar.xz";
+ sha256 = "0ybrki3ba5wslhk1iwh3z27x0h3nv644mrj0ylzjr51k7nxkyn05";
+ name = "kde-l10n-bg-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-bs = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-bs-16.04.3.tar.xz";
+ sha256 = "02fpi5ahi3s6p347xwy0908kavj6jx6k4gadwv747fwh5c6879dl";
+ name = "kde-l10n-bs-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-ca = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ca-16.04.3.tar.xz";
+ sha256 = "0dxsnlk6my79c6fx7zxg7ccy8jvkl5pk41mh5rn2savla1f8mg20";
+ name = "kde-l10n-ca-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-ca_valencia = {
+ version = "ca_valencia-16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ca@valencia-16.04.3.tar.xz";
+ sha256 = "12i84ii4k94hkgdyxqpysrd7d7jid4swar2kd1vrkx7aw4n331y4";
+ name = "kde-l10n-ca_valencia-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-cs = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-cs-16.04.3.tar.xz";
+ sha256 = "0x6sk7rgwwk20hfy7b1wm4s062p36rd4j39a7c79wrhwnc1apsqj";
+ name = "kde-l10n-cs-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-da = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-da-16.04.3.tar.xz";
+ sha256 = "1jah412d3yzixlw2wqp29nf2ils4qf9pi5hmafl0qb2ap0jf6p6i";
+ name = "kde-l10n-da-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-de = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-de-16.04.3.tar.xz";
+ sha256 = "0ykxlc8l9kq9zy52rgwfs4ilcxa12s99jzwsfn4wxhhhif3brsxs";
+ name = "kde-l10n-de-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-el = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-el-16.04.3.tar.xz";
+ sha256 = "0yjq29l9c5kfqd1qgr8rwln09gss23dk7fisznswzfns9mgwwa5r";
+ name = "kde-l10n-el-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-en_GB = {
+ version = "en_GB-16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-en_GB-16.04.3.tar.xz";
+ sha256 = "1abzb25182sk1xr1ppnfpbibspqccg72wxdg14mzq87c3v126p08";
+ name = "kde-l10n-en_GB-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-eo = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-eo-16.04.3.tar.xz";
+ sha256 = "1lcb2payk5gq6pqj7wgr8q6f2ww3r11szw799xw4mysclnybadl6";
+ name = "kde-l10n-eo-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-es = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-es-16.04.3.tar.xz";
+ sha256 = "1grl52msc6i2xbkgabyjkv4mvmiwlyfy51ipmb29rjygqz7xqrnc";
+ name = "kde-l10n-es-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-et = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-et-16.04.3.tar.xz";
+ sha256 = "0a8hkf3yzqzy4sffd3c126icwsfqrhyq3xkqdg0ijz2sph9rx6vd";
+ name = "kde-l10n-et-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-eu = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-eu-16.04.3.tar.xz";
+ sha256 = "19083h2yrnw4mpjbx590ypks9ix0axs4lqhd9bria5b5bndhn2pd";
+ name = "kde-l10n-eu-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-fa = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-fa-16.04.3.tar.xz";
+ sha256 = "1c23m9s6gzlqbf68c5xqp8brk2q2gqsxskblk0zkial61bwnw77w";
+ name = "kde-l10n-fa-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-fi = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-fi-16.04.3.tar.xz";
+ sha256 = "1m7cs18wgza50nb2ybasyg7j0l25bkx6zd1dlnfqdrfc9d7mg7ab";
+ name = "kde-l10n-fi-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-fr = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-fr-16.04.3.tar.xz";
+ sha256 = "0zhfbqgir92fc5zgll5w68bdkqv24xsp4wp3vvk8cvgfqr7qxjv1";
+ name = "kde-l10n-fr-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-ga = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ga-16.04.3.tar.xz";
+ sha256 = "1p8vfm4b4w070k841lnsxxgwls8dhdadnf48s4igg2zhcnngg5hk";
+ name = "kde-l10n-ga-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-gl = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-gl-16.04.3.tar.xz";
+ sha256 = "0l9nr6iqpmacaznl7d02gk6nvd97069qp065qxknsnzzhzxdr8h9";
+ name = "kde-l10n-gl-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-he = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-he-16.04.3.tar.xz";
+ sha256 = "0dmz0acqdkg56g52nin13mdpii7p7nv5i4bscc6x5wqsvzcg83az";
+ name = "kde-l10n-he-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-hi = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-hi-16.04.3.tar.xz";
+ sha256 = "0ywk9ylf8zjpf5cqchyziw2jmk27nhp0kgjj9a4cg88091q0ix4p";
+ name = "kde-l10n-hi-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-hr = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-hr-16.04.3.tar.xz";
+ sha256 = "1cjdp3bm1mf50cdnr389gb58si2n8ylmgmw8xyx974ha7v6mxf71";
+ name = "kde-l10n-hr-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-hu = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-hu-16.04.3.tar.xz";
+ sha256 = "12mlm3gczb24k66yxk3spqimzknybpgz9piprrbxabdiha8p11iw";
+ name = "kde-l10n-hu-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-ia = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ia-16.04.3.tar.xz";
+ sha256 = "1855ydjczfkn70s3vmdvg0qi06ix0rqp9ry49w15mmb23np8qmg2";
+ name = "kde-l10n-ia-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-id = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-id-16.04.3.tar.xz";
+ sha256 = "0ljpg8iz1vjryp9arwr3wr66lscb6r0yd25wssxzsanfp595zhw4";
+ name = "kde-l10n-id-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-is = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-is-16.04.3.tar.xz";
+ sha256 = "0xn7a701r80lqgbskkaca085fbkwnv872ph3p2hsiz3ps4aqp4sc";
+ name = "kde-l10n-is-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-it = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-it-16.04.3.tar.xz";
+ sha256 = "06sbcp6maf316lr9vsa7922qqymrnj2ppyypx0vjzxswqwgykhvp";
+ name = "kde-l10n-it-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-ja = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ja-16.04.3.tar.xz";
+ sha256 = "0p3d9zy6l4axj7p97b2q57ccwkglhamlbfjfw6kk5c26qxss9ig4";
+ name = "kde-l10n-ja-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-kk = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-kk-16.04.3.tar.xz";
+ sha256 = "0538hxcy2yc007m2bji8jjhdifdgyf7azbk32qn54bkvliis70l2";
+ name = "kde-l10n-kk-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-km = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-km-16.04.3.tar.xz";
+ sha256 = "0b1vryn61pf3dqac4rn6hjznrrdylvsx8bsyamvhry7grdnaq9fp";
+ name = "kde-l10n-km-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-ko = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ko-16.04.3.tar.xz";
+ sha256 = "05k261wxvl9plxx6fsx8y6paaqykmsmq5flv9jcgj958llq4d0a1";
+ name = "kde-l10n-ko-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-lt = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-lt-16.04.3.tar.xz";
+ sha256 = "1wk6q7i1p7nwa2dl4zqyqja2m615d5ghhn8hnkcnfpc2prslr3lr";
+ name = "kde-l10n-lt-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-lv = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-lv-16.04.3.tar.xz";
+ sha256 = "153vdr9q8zp3rm4h2paxg6gm8dk3d6vdvrg9wsk21s1pc2d3kha6";
+ name = "kde-l10n-lv-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-mr = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-mr-16.04.3.tar.xz";
+ sha256 = "1lmrs5vihb7zkl15mqihxb5vcrrzphzmfinmkbfb43sw91il8hiq";
+ name = "kde-l10n-mr-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-nb = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-nb-16.04.3.tar.xz";
+ sha256 = "03a1d8dzpbzbpd7sr718mwaaihyhvfwfkln09cnahykdykmnb545";
+ name = "kde-l10n-nb-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-nds = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-nds-16.04.3.tar.xz";
+ sha256 = "0716l1al3wi6ws2n25gdc845k1536nbxlxskvy1k2cravlabk2j6";
+ name = "kde-l10n-nds-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-nl = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-nl-16.04.3.tar.xz";
+ sha256 = "1jy8shpfm7fvkzcg85w1b7h6pcl01hy3dk99cd9plaqgs25z5hg7";
+ name = "kde-l10n-nl-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-nn = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-nn-16.04.3.tar.xz";
+ sha256 = "1parcwfwkqs8n784k2mqlpn4gly6mk72akfa0k5250w198qcc1m9";
+ name = "kde-l10n-nn-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-pa = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-pa-16.04.3.tar.xz";
+ sha256 = "172p45xxpzh8ifiq35fzi42vad2icj5rpwqbswkd56dgvv8m6xwm";
+ name = "kde-l10n-pa-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-pl = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-pl-16.04.3.tar.xz";
+ sha256 = "0nmjd68h4ybn68al8nhnzc9gj78j5zfzsy9h6kl6yzydgxsid9sc";
+ name = "kde-l10n-pl-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-pt = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-pt-16.04.3.tar.xz";
+ sha256 = "03c0hwf0sc75kw81h0adbcmp6vi6ngjgq3bk1v7lqz12c3nkc6mf";
+ name = "kde-l10n-pt-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-pt_BR = {
+ version = "pt_BR-16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-pt_BR-16.04.3.tar.xz";
+ sha256 = "1s068mz6r0crqw3jqix9x94dcwk7z9nr4jisxlj8lwfa13qb20a1";
+ name = "kde-l10n-pt_BR-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-ro = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ro-16.04.3.tar.xz";
+ sha256 = "0g2w1pjcwc1rk9fsqwmlv9a6hxxqzwcf8r889qcf4vrkra3xdfy8";
+ name = "kde-l10n-ro-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-ru = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ru-16.04.3.tar.xz";
+ sha256 = "03jvisz6y2g3y1ci384dn7gb16lcx41cx0xvn4m1mkrry0ij0s4y";
+ name = "kde-l10n-ru-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-sk = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-sk-16.04.3.tar.xz";
+ sha256 = "14jy06js16slf1qv20mkw05l06ragf5zcskzzm772q66y1qd712r";
+ name = "kde-l10n-sk-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-sl = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-sl-16.04.3.tar.xz";
+ sha256 = "0nq1g4hc3lnd4xwmlfa7lqical0k5rag4mw2xxgakpkhpwij5ff0";
+ name = "kde-l10n-sl-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-sr = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-sr-16.04.3.tar.xz";
+ sha256 = "0qc5lfdfj45hpxly2bdy3h65qgq96k2sym56mwb52305dv380qlz";
+ name = "kde-l10n-sr-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-sv = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-sv-16.04.3.tar.xz";
+ sha256 = "08rh3waajhynyllnvsghmspxqxr23lk0w5x0r61c2wzcqsvmj8xg";
+ name = "kde-l10n-sv-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-tr = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-tr-16.04.3.tar.xz";
+ sha256 = "04fqm0hlzc77hmxkycgd04vhfq9szgf0r16liaxgd03k0p8nk54x";
+ name = "kde-l10n-tr-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-ug = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ug-16.04.3.tar.xz";
+ sha256 = "03dk6n5qp5qdgqbrlji9pz9lbi0kdq0w7pgk2f91xgfhnhd6c68b";
+ name = "kde-l10n-ug-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-uk = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-uk-16.04.3.tar.xz";
+ sha256 = "0d9xxh2avammp662nsxgj57bzp38wbv56hvbzpscr3qfmyqhdndc";
+ name = "kde-l10n-uk-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-wa = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-wa-16.04.3.tar.xz";
+ sha256 = "0hjcn24i96qsvdsf2jhghb2jmgc6z9z2xx7ldkgrq5949vf0dcb0";
+ name = "kde-l10n-wa-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-zh_CN = {
+ version = "zh_CN-16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-zh_CN-16.04.3.tar.xz";
+ sha256 = "19qnnd4lkqf3zd4l3c0ffprd6y0bqdyrvsmhm2jlhx4z7m3c491q";
+ name = "kde-l10n-zh_CN-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-zh_TW = {
+ version = "zh_TW-16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-zh_TW-16.04.3.tar.xz";
+ sha256 = "0kd0lkv3i4nlkgv9wapsyinv407np91h2hh14whkl2dx9mvmd7g1";
+ name = "kde-l10n-zh_TW-16.04.3.tar.xz";
+ };
+ };
+ kdelibs = {
+ version = "4.14.22";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdelibs-4.14.22.tar.xz";
+ sha256 = "0rym674pr05in9wghhbwprlw5648ynnklfb858wxj9f3kvlsbjph";
+ name = "kdelibs-4.14.22.tar.xz";
+ };
+ };
+ kdenetwork-filesharing = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdenetwork-filesharing-16.04.3.tar.xz";
+ sha256 = "05kb0q6krfkx8hm6pxb6qx6ihd0r300qpibk62dj0v4qzvz4fqvl";
+ name = "kdenetwork-filesharing-16.04.3.tar.xz";
+ };
+ };
+ kdenetwork-strigi-analyzers = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdenetwork-strigi-analyzers-16.04.3.tar.xz";
+ sha256 = "1hhlpj9dzkmg3ajia5mjsxcaq27yl35cpy99afx67n3nb3wf9113";
+ name = "kdenetwork-strigi-analyzers-16.04.3.tar.xz";
+ };
+ };
+ kdenlive = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdenlive-16.04.3.tar.xz";
+ sha256 = "0354pcfjs9xndh4mb0x4sryg0l9rvmb0qjw45053yg6lq6b3zbym";
+ name = "kdenlive-16.04.3.tar.xz";
+ };
+ };
+ kdepim = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdepim-16.04.3.tar.xz";
+ sha256 = "1drvf4q50bknm2b806bzi2v80mlrmj1c5d6wpmrmy7f8pp2z7kj2";
+ name = "kdepim-16.04.3.tar.xz";
+ };
+ };
+ kdepim-addons = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdepim-addons-16.04.3.tar.xz";
+ sha256 = "1gnazsd3ihghccna0880c1nlqv938q3jnn613hxa5p25j9mgvn89";
+ name = "kdepim-addons-16.04.3.tar.xz";
+ };
+ };
+ kdepim-apps-libs = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdepim-apps-libs-16.04.3.tar.xz";
+ sha256 = "08xrpdq6d51gimi3qs1njvv7h1pl0gwpkifxxn56nznjdrgl37l3";
+ name = "kdepim-apps-libs-16.04.3.tar.xz";
+ };
+ };
+ kdepimlibs = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdepimlibs-16.04.3.tar.xz";
+ sha256 = "02nj4hml6wns6hkpc7vm0swjfalm5rhrwd33izkyqzp30gyz2bc6";
+ name = "kdepimlibs-16.04.3.tar.xz";
+ };
+ };
+ kdepim-runtime = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdepim-runtime-16.04.3.tar.xz";
+ sha256 = "129b94nsnwai4fd2rg3zqc5p8k1i7dq0l5z7hai15p5naab7541j";
+ name = "kdepim-runtime-16.04.3.tar.xz";
+ };
+ };
+ kde-runtime = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-runtime-16.04.3.tar.xz";
+ sha256 = "0pahf8rz4dfwl7c6q8liv6c4rmhiwnv03kfvj4j8lnrhif20y3k9";
+ name = "kde-runtime-16.04.3.tar.xz";
+ };
+ };
+ kdesdk-kioslaves = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdesdk-kioslaves-16.04.3.tar.xz";
+ sha256 = "15ijhxd7x9mvpfsjv3xbs6l6nvbwa7d6sf25aa2j4h2qxx1qsq2l";
+ name = "kdesdk-kioslaves-16.04.3.tar.xz";
+ };
+ };
+ kdesdk-strigi-analyzers = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdesdk-strigi-analyzers-16.04.3.tar.xz";
+ sha256 = "1pyqw7vg0r5amma6jjjdwgspig4w0rawj0671qv9v3rgnvxqkcq4";
+ name = "kdesdk-strigi-analyzers-16.04.3.tar.xz";
+ };
+ };
+ kdesdk-thumbnailers = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdesdk-thumbnailers-16.04.3.tar.xz";
+ sha256 = "1yh4cddpqx6f6xw9rpxwvnw8d31psdgy4gcrd68115jan4r7ppxh";
+ name = "kdesdk-thumbnailers-16.04.3.tar.xz";
+ };
+ };
+ kdewebdev = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdewebdev-16.04.3.tar.xz";
+ sha256 = "1lkhv4flg7rdsn6wrrnmzqgdwhi9bjisapgsdgr68hqypzhfvbjm";
+ name = "kdewebdev-16.04.3.tar.xz";
+ };
+ };
+ kdf = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdf-16.04.3.tar.xz";
+ sha256 = "1za42wv569phlfdkdhb9v9hnz8561f8jvyh2vdjb070bkylipk5k";
+ name = "kdf-16.04.3.tar.xz";
+ };
+ };
+ kdgantt2 = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdgantt2-16.04.3.tar.xz";
+ sha256 = "0xdm105c01svxryxg9jy8sqg9s8jdhm5jmvn662mj50m0nllvqm6";
+ name = "kdgantt2-16.04.3.tar.xz";
+ };
+ };
+ kdiamond = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdiamond-16.04.3.tar.xz";
+ sha256 = "13rili5pp2zgbdgnr65gy43rlwnjigr3rqp954rbfh16pkdxsjzw";
+ name = "kdiamond-16.04.3.tar.xz";
+ };
+ };
+ kfloppy = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kfloppy-16.04.3.tar.xz";
+ sha256 = "16mrfk8bqp1fnldxxrpycyx0wg87v2szs406jj1qfyywrz8w76b7";
+ name = "kfloppy-16.04.3.tar.xz";
+ };
+ };
+ kfourinline = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kfourinline-16.04.3.tar.xz";
+ sha256 = "1ar4lglxy2dpmvl0s68wkmibn7m4qy8paxzhvh3pq95dcbvcg8yp";
+ name = "kfourinline-16.04.3.tar.xz";
+ };
+ };
+ kgeography = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kgeography-16.04.3.tar.xz";
+ sha256 = "0kqc39i8yj9jah52fc5afh4g94l07faq4jv0si0b3c17x7q64nwh";
+ name = "kgeography-16.04.3.tar.xz";
+ };
+ };
+ kget = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kget-16.04.3.tar.xz";
+ sha256 = "05sz7r6idkaskf193ryam83g77rzdz96wp1sqs36lr9x513bb5fh";
+ name = "kget-16.04.3.tar.xz";
+ };
+ };
+ kgoldrunner = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kgoldrunner-16.04.3.tar.xz";
+ sha256 = "1rd6k64qkpa9hz1k2x9sv018fqzv57l74rv78rv54czrc9b0wdby";
+ name = "kgoldrunner-16.04.3.tar.xz";
+ };
+ };
+ kgpg = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kgpg-16.04.3.tar.xz";
+ sha256 = "0fr3dvfrp6yy9b82k4rc4izwyxvvg2yqz2fq4s6srcsn65rkspv8";
+ name = "kgpg-16.04.3.tar.xz";
+ };
+ };
+ khangman = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/khangman-16.04.3.tar.xz";
+ sha256 = "0y63sr4q99j7m3yb6hdnydg3rl9hampkpy05qfz9jdm2znq6j1iw";
+ name = "khangman-16.04.3.tar.xz";
+ };
+ };
+ khelpcenter = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/khelpcenter-16.04.3.tar.xz";
+ sha256 = "1hlwlaja1dwjszyig17f2kfma6li2nqi76yyagfk0b35w8fk50d9";
+ name = "khelpcenter-16.04.3.tar.xz";
+ };
+ };
+ kholidays = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kholidays-16.04.3.tar.xz";
+ sha256 = "0p52bkysjfd7w24si2dcq7yv7diig2wz1a7x2c7vzwv9qw39m3g6";
+ name = "kholidays-16.04.3.tar.xz";
+ };
+ };
+ kidentitymanagement = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kidentitymanagement-16.04.3.tar.xz";
+ sha256 = "1nv5nda3wkdhwh3lggb0pmcs4h9csh4kziw6nlk0q9iyymrkf2y0";
+ name = "kidentitymanagement-16.04.3.tar.xz";
+ };
+ };
+ kig = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kig-16.04.3.tar.xz";
+ sha256 = "162ixbnb9y2h5q358m3cw51c2xapx6rb8yi9q3460jnhxmhvij7p";
+ name = "kig-16.04.3.tar.xz";
+ };
+ };
+ kigo = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kigo-16.04.3.tar.xz";
+ sha256 = "0324f2mjia73cq2v3kdipw81nsl2q74ziqhxqb9vrjk1jlpq8fhj";
+ name = "kigo-16.04.3.tar.xz";
+ };
+ };
+ killbots = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/killbots-16.04.3.tar.xz";
+ sha256 = "15jspfavyka86djb19fq7h1x573l7nsb5d8p2zfgrc1qiw794h0h";
+ name = "killbots-16.04.3.tar.xz";
+ };
+ };
+ kimap = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kimap-16.04.3.tar.xz";
+ sha256 = "0d3ckh7b6jdpwl2cqq93mz0gw6gfa7a0qbvgsrmzl25v1898dbda";
+ name = "kimap-16.04.3.tar.xz";
+ };
+ };
+ kio-extras = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kio-extras-16.04.3.tar.xz";
+ sha256 = "1sxg7jaklqxaw7s05a83x769f430085wx7bqlbl9xwqdmpbnj3hh";
+ name = "kio-extras-16.04.3.tar.xz";
+ };
+ };
+ kiriki = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kiriki-16.04.3.tar.xz";
+ sha256 = "1jk5v2z8ivc4q3zcaxmch7kym7pizch1fqpbrvql1ilfbmjgjjp9";
+ name = "kiriki-16.04.3.tar.xz";
+ };
+ };
+ kiten = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kiten-16.04.3.tar.xz";
+ sha256 = "1rjb9icam7plqj8bhd7gfhbmwa381nszk1f7ibpgwxh1416njg1l";
+ name = "kiten-16.04.3.tar.xz";
+ };
+ };
+ kjumpingcube = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kjumpingcube-16.04.3.tar.xz";
+ sha256 = "07zz862l1s348shkj9mbwppz54cqa5plw3jdca3fh5spfnllvhm0";
+ name = "kjumpingcube-16.04.3.tar.xz";
+ };
+ };
+ kldap = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kldap-16.04.3.tar.xz";
+ sha256 = "01vm2q2sxzwapq7qhsgw5vaplsawmvcrd0virwc5k83viy8jxbi4";
+ name = "kldap-16.04.3.tar.xz";
+ };
+ };
+ kleopatra = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kleopatra-16.04.3.tar.xz";
+ sha256 = "02hbdc976k304qfiak2iy34s8rcqyj8fgbz8p0yfpkh8jxrvgbym";
+ name = "kleopatra-16.04.3.tar.xz";
+ };
+ };
+ klettres = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/klettres-16.04.3.tar.xz";
+ sha256 = "0xbxvzw3vskna4sxi8yy3z9d80dpjzgpark5wnyclyrdnkla9973";
+ name = "klettres-16.04.3.tar.xz";
+ };
+ };
+ klickety = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/klickety-16.04.3.tar.xz";
+ sha256 = "12d700laya9apgp5pvrc2vpbz2d1l8dl8q37ccmkixh6dxf78z0c";
+ name = "klickety-16.04.3.tar.xz";
+ };
+ };
+ klines = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/klines-16.04.3.tar.xz";
+ sha256 = "0xybhlz7m0k4dnxzpxjsx0fk715scjdly9ahdzcwdkf83vd52x97";
+ name = "klines-16.04.3.tar.xz";
+ };
+ };
+ kmag = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kmag-16.04.3.tar.xz";
+ sha256 = "1pc7a6ry0c4wg5fm42ccmjhgazi2wixbsc9mylk4qwa0246lk8rc";
+ name = "kmag-16.04.3.tar.xz";
+ };
+ };
+ kmahjongg = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kmahjongg-16.04.3.tar.xz";
+ sha256 = "1zs4ndbf4lm9ry61bb2xcjsc2nnlvz36n8vnk2fpcvhvp266jhd7";
+ name = "kmahjongg-16.04.3.tar.xz";
+ };
+ };
+ kmailtransport = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kmailtransport-16.04.3.tar.xz";
+ sha256 = "16761r8ddmr7wdrqjwn5am35z8kz028mqcxmj582mrqfyr4w3s0k";
+ name = "kmailtransport-16.04.3.tar.xz";
+ };
+ };
+ kmbox = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kmbox-16.04.3.tar.xz";
+ sha256 = "0q6vf7813clnp349aq103m38mk0pazmwncmziwxmlwpj814887k2";
+ name = "kmbox-16.04.3.tar.xz";
+ };
+ };
+ kmime = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kmime-16.04.3.tar.xz";
+ sha256 = "1cwls6kd9sh2iilncq0k2c9nb4hfwa454fmn9y4m5g2p7yb4n70n";
+ name = "kmime-16.04.3.tar.xz";
+ };
+ };
+ kmines = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kmines-16.04.3.tar.xz";
+ sha256 = "1m5hkanihvd1g1p1131jx1fp1d9ga8yr849ari4mmjnwcmjjlxlv";
+ name = "kmines-16.04.3.tar.xz";
+ };
+ };
+ kmix = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kmix-16.04.3.tar.xz";
+ sha256 = "0iqqhsq1v1cdy53dby35d8gpb2fll1drk32g82kbs7chddv5mnpd";
+ name = "kmix-16.04.3.tar.xz";
+ };
+ };
+ kmousetool = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kmousetool-16.04.3.tar.xz";
+ sha256 = "1a4nj6c1nvi2xbnbw6iqml5gbcmfi8ymynp3lvh1h8wrclljj3kd";
+ name = "kmousetool-16.04.3.tar.xz";
+ };
+ };
+ kmouth = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kmouth-16.04.3.tar.xz";
+ sha256 = "0fwjjcyif4p4w5nzv8s7fvlfp1z3fn2g1zmkjbz7s87bssndmiz4";
+ name = "kmouth-16.04.3.tar.xz";
+ };
+ };
+ kmplot = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kmplot-16.04.3.tar.xz";
+ sha256 = "0pnawlmqr3fl0sxfll6ch4651q9cp2r1cfw7kn8fj3c9v03g6mfz";
+ name = "kmplot-16.04.3.tar.xz";
+ };
+ };
+ knavalbattle = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/knavalbattle-16.04.3.tar.xz";
+ sha256 = "1k2wl33ipbhrcbv9hnskss6l46kk05j8rqw3a2kqflql16mv7wga";
+ name = "knavalbattle-16.04.3.tar.xz";
+ };
+ };
+ knetwalk = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/knetwalk-16.04.3.tar.xz";
+ sha256 = "0jy9v11chrqkw7kddwsjg5aixs0rbkx1g2m624pa3341iqrrqbml";
+ name = "knetwalk-16.04.3.tar.xz";
+ };
+ };
+ kolf = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kolf-16.04.3.tar.xz";
+ sha256 = "0pbjkzzqfqqxl05kdb1hqfv4linzj2al6hrsp6h7gc2n5s9cq220";
+ name = "kolf-16.04.3.tar.xz";
+ };
+ };
+ kollision = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kollision-16.04.3.tar.xz";
+ sha256 = "0jwml54bd6bhgm4hygcxzw74274ddx99q45n0i4zh7lx6x7j8zji";
+ name = "kollision-16.04.3.tar.xz";
+ };
+ };
+ kolourpaint = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kolourpaint-16.04.3.tar.xz";
+ sha256 = "149w95j5fh9jxah2yjchwkcaqgd1x9qmgwnk7mzx5gxcdbawwwcc";
+ name = "kolourpaint-16.04.3.tar.xz";
+ };
+ };
+ kompare = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kompare-16.04.3.tar.xz";
+ sha256 = "0ilfk8rkb4q1lgvcki0zwlmrbv630b4iyv58g4vnf72gpgnd981v";
+ name = "kompare-16.04.3.tar.xz";
+ };
+ };
+ konquest = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/konquest-16.04.3.tar.xz";
+ sha256 = "16799yabykvfq7wcsc0vlwhws9iyf1risa8lxfdfmsh6f7yb5kf1";
+ name = "konquest-16.04.3.tar.xz";
+ };
+ };
+ konsole = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/konsole-16.04.3.tar.xz";
+ sha256 = "1dhb2xyl8qzwhpnvfkqaqcn4qpsj1d9yc28qgvwyb6kn4ygywl7n";
+ name = "konsole-16.04.3.tar.xz";
+ };
+ };
+ kontactinterface = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kontactinterface-16.04.3.tar.xz";
+ sha256 = "0fh1sy1rqs31km8v1vbv0gqrh7vsc6vdk7ab5cqx9nxkf0kqnj3v";
+ name = "kontactinterface-16.04.3.tar.xz";
+ };
+ };
+ kopete = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kopete-16.04.3.tar.xz";
+ sha256 = "1fqagh40kx4dad131vild7wxlciwm54ilsrs5ahy63xisbi2aip3";
+ name = "kopete-16.04.3.tar.xz";
+ };
+ };
+ kpat = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kpat-16.04.3.tar.xz";
+ sha256 = "02hinknnpi5cvpwdih10iizzzci9zhhcpwclw05fcwz65wig6b5r";
+ name = "kpat-16.04.3.tar.xz";
+ };
+ };
+ kpimtextedit = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kpimtextedit-16.04.3.tar.xz";
+ sha256 = "1kp3wimzvqg7dqh204kdfkqqrlb5mq895bind9g524rc4mxzd882";
+ name = "kpimtextedit-16.04.3.tar.xz";
+ };
+ };
+ kppp = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kppp-16.04.3.tar.xz";
+ sha256 = "0bnwgf3rvm3c3qgsp8301iba2yisd52miywmfblsh9z7zaf36qp2";
+ name = "kppp-16.04.3.tar.xz";
+ };
+ };
+ kqtquickcharts = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kqtquickcharts-16.04.3.tar.xz";
+ sha256 = "10hjryss35zz7mj34ix1qgxmkww9d42mqx60ywgkpjv297z06vrv";
+ name = "kqtquickcharts-16.04.3.tar.xz";
+ };
+ };
+ krdc = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/krdc-16.04.3.tar.xz";
+ sha256 = "1c4ngdc3xip72ag96fzd3fn49v5lli8g61h92c80myx57cs3qsl0";
+ name = "krdc-16.04.3.tar.xz";
+ };
+ };
+ kremotecontrol = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kremotecontrol-16.04.3.tar.xz";
+ sha256 = "0xw7fmf6npv6n845kc01apc8lqy6fpbas6427292r6qkbjqb7vgz";
+ name = "kremotecontrol-16.04.3.tar.xz";
+ };
+ };
+ kreversi = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kreversi-16.04.3.tar.xz";
+ sha256 = "1jddmjv5vnp42pgkfrgwsnnzn9bxy90d7wbhdjyqir77vb14ccj5";
+ name = "kreversi-16.04.3.tar.xz";
+ };
+ };
+ krfb = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/krfb-16.04.3.tar.xz";
+ sha256 = "13ifwp93662b8cx1hary3kx5js1w9wnpi6ykw1f5sriav3xmfyvb";
+ name = "krfb-16.04.3.tar.xz";
+ };
+ };
+ kross-interpreters = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kross-interpreters-16.04.3.tar.xz";
+ sha256 = "0nl0gb03yqn4rv0i8r6axr7rf5w416f4h5912r9004hwyf1ahzda";
+ name = "kross-interpreters-16.04.3.tar.xz";
+ };
+ };
+ kruler = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kruler-16.04.3.tar.xz";
+ sha256 = "0317sj7q7x436hzry7blpb8mnbqza7srk49r2jgiasj8i0mlxy5n";
+ name = "kruler-16.04.3.tar.xz";
+ };
+ };
+ ksaneplugin = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ksaneplugin-16.04.3.tar.xz";
+ sha256 = "1k9zdd3h2zavp4l7npirrj3vbb4hm7gbwgmn6l9x93p8dzpw3xsw";
+ name = "ksaneplugin-16.04.3.tar.xz";
+ };
+ };
+ kscd = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kscd-16.04.3.tar.xz";
+ sha256 = "0l0wqxcajklymc21libaq1hlzbwwnzmd0s40ls1m8gfwqzrn03k4";
+ name = "kscd-16.04.3.tar.xz";
+ };
+ };
+ kshisen = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kshisen-16.04.3.tar.xz";
+ sha256 = "1q2acfvbca8jw2yd1xkyny3mplzvsbjlfzilkyc6j4ccply4zsk0";
+ name = "kshisen-16.04.3.tar.xz";
+ };
+ };
+ ksirk = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ksirk-16.04.3.tar.xz";
+ sha256 = "03kpm7kck3d6nv2m5jmn24ni09pxg8jcfa0p6sjijpinh8n1r6aj";
+ name = "ksirk-16.04.3.tar.xz";
+ };
+ };
+ ksnakeduel = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ksnakeduel-16.04.3.tar.xz";
+ sha256 = "0h87rbspc0b4fnq21vr9nimzjir0i0gijk2wh1lmfjvfviinw6ww";
+ name = "ksnakeduel-16.04.3.tar.xz";
+ };
+ };
+ kspaceduel = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kspaceduel-16.04.3.tar.xz";
+ sha256 = "0021pmxgh6pw777s5136hmgc83f5dy9bdk72gzfhjp20khl1dpm1";
+ name = "kspaceduel-16.04.3.tar.xz";
+ };
+ };
+ ksquares = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ksquares-16.04.3.tar.xz";
+ sha256 = "02byd0if709zc5zrn8a17b68jfh8fi4xilybiih7nppdy9jrmbap";
+ name = "ksquares-16.04.3.tar.xz";
+ };
+ };
+ kstars = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kstars-16.04.3.tar.xz";
+ sha256 = "159gk8hslzx9lb0jgf2jv0h8p6618l9xkjdfbvydh4zvgixsh467";
+ name = "kstars-16.04.3.tar.xz";
+ };
+ };
+ ksudoku = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ksudoku-16.04.3.tar.xz";
+ sha256 = "0x9mqzl3s9p3p8x024wllqxff4p065ajirvw05fcqac7vdvndyd0";
+ name = "ksudoku-16.04.3.tar.xz";
+ };
+ };
+ ksystemlog = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ksystemlog-16.04.3.tar.xz";
+ sha256 = "1fzr5lbwj85zwhc3ydhijwsmm2b3sfrg67xa71vswndfi8g5gh9v";
+ name = "ksystemlog-16.04.3.tar.xz";
+ };
+ };
+ kteatime = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kteatime-16.04.3.tar.xz";
+ sha256 = "18pm3416kwi4pj71qgpm1qr83xpz5l2xjnrz9nx9vnlz9sdk44w3";
+ name = "kteatime-16.04.3.tar.xz";
+ };
+ };
+ ktimer = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktimer-16.04.3.tar.xz";
+ sha256 = "0n4b7hrlmr64fm3m5yhi7pg2qj0r0xsb73yzlylgsn8i7m2zjap8";
+ name = "ktimer-16.04.3.tar.xz";
+ };
+ };
+ ktnef = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktnef-16.04.3.tar.xz";
+ sha256 = "0ra0l0apkf9bpwwcr1i2z1qmax12qd2n01rnpff58hj1zg267aqw";
+ name = "ktnef-16.04.3.tar.xz";
+ };
+ };
+ ktouch = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktouch-16.04.3.tar.xz";
+ sha256 = "0c2ylp41918wqxahsnkpvq4si37nh6fps53qyd62s09d1aafh28s";
+ name = "ktouch-16.04.3.tar.xz";
+ };
+ };
+ ktp-accounts-kcm = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktp-accounts-kcm-16.04.3.tar.xz";
+ sha256 = "0bqcdwfm0l49dkqzj8p254bxl4wabj58g338g0i4ansky5svdfih";
+ name = "ktp-accounts-kcm-16.04.3.tar.xz";
+ };
+ };
+ ktp-approver = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktp-approver-16.04.3.tar.xz";
+ sha256 = "1z4sh03w0rzv70qimchgxgmqpxbzsf29mp4pr18qgxvkwcx7nm89";
+ name = "ktp-approver-16.04.3.tar.xz";
+ };
+ };
+ ktp-auth-handler = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktp-auth-handler-16.04.3.tar.xz";
+ sha256 = "1llqbjf89bj44wlwkp4pq4drc7qczzdf6ckqlqiidd69rwhqc8q9";
+ name = "ktp-auth-handler-16.04.3.tar.xz";
+ };
+ };
+ ktp-call-ui = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktp-call-ui-16.04.3.tar.xz";
+ sha256 = "07d9a28rjnb4xlmpilwzcq8dxiz3pmi57wqm1pphyw8wnf6fz1ls";
+ name = "ktp-call-ui-16.04.3.tar.xz";
+ };
+ };
+ ktp-common-internals = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktp-common-internals-16.04.3.tar.xz";
+ sha256 = "1l497fl1mldh926f29f51rn0d3jxkjfmacw483zgglfnl1z2igr6";
+ name = "ktp-common-internals-16.04.3.tar.xz";
+ };
+ };
+ ktp-contact-list = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktp-contact-list-16.04.3.tar.xz";
+ sha256 = "1s9cyxl4zkvv6j45gcdk9dkyhblz0p9w5rwdpaailx1wpx55223y";
+ name = "ktp-contact-list-16.04.3.tar.xz";
+ };
+ };
+ ktp-contact-runner = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktp-contact-runner-16.04.3.tar.xz";
+ sha256 = "06a72vjqrz52spjcf5gic48hmsbbshsnwws8lk18cnxxc94sbgq0";
+ name = "ktp-contact-runner-16.04.3.tar.xz";
+ };
+ };
+ ktp-desktop-applets = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktp-desktop-applets-16.04.3.tar.xz";
+ sha256 = "1qrwy3ghy2aja87dqyiivbcdfj24zji7765225k2djh8k4m9fl25";
+ name = "ktp-desktop-applets-16.04.3.tar.xz";
+ };
+ };
+ ktp-filetransfer-handler = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktp-filetransfer-handler-16.04.3.tar.xz";
+ sha256 = "0vacl8djizz6466l095snmyg400i8c8q2pxd7xjq7488pfpvl8b3";
+ name = "ktp-filetransfer-handler-16.04.3.tar.xz";
+ };
+ };
+ ktp-kded-module = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktp-kded-module-16.04.3.tar.xz";
+ sha256 = "0jb31d7lcby68dnq33j6yj4nqhd627i4pd0x9dpg32hf7wsc1mhs";
+ name = "ktp-kded-module-16.04.3.tar.xz";
+ };
+ };
+ ktp-send-file = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktp-send-file-16.04.3.tar.xz";
+ sha256 = "1fka8fg8sqh8sakaz55ja3b82nwd5a6g1w0r40s5ins8wrxinh24";
+ name = "ktp-send-file-16.04.3.tar.xz";
+ };
+ };
+ ktp-text-ui = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktp-text-ui-16.04.3.tar.xz";
+ sha256 = "0bdfmn4jbi8w7jnfm22hbrm3zi9i2g9byfgivlrq6iwb00lk5hxx";
+ name = "ktp-text-ui-16.04.3.tar.xz";
+ };
+ };
+ ktuberling = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktuberling-16.04.3.tar.xz";
+ sha256 = "1m860sim81j9gm24sjhfhx5spf3ax3m1f9jb8d7zxfc272lln1l0";
+ name = "ktuberling-16.04.3.tar.xz";
+ };
+ };
+ kturtle = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kturtle-16.04.3.tar.xz";
+ sha256 = "0bj73flllph0r4xps6kdsnjzd2vdayqyran6fd3l7k4f2qnjd70a";
+ name = "kturtle-16.04.3.tar.xz";
+ };
+ };
+ kubrick = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kubrick-16.04.3.tar.xz";
+ sha256 = "026d5sa1xbqabsf9yj4d94x0abp93z5wdivqdl7hb2zns9w7dgk5";
+ name = "kubrick-16.04.3.tar.xz";
+ };
+ };
+ kuser = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kuser-16.04.3.tar.xz";
+ sha256 = "1xcb554p0i93gyy8vm1a5aajgv0vhqxa5lpmyfz1ibrbbnm3h0h8";
+ name = "kuser-16.04.3.tar.xz";
+ };
+ };
+ kwalletmanager = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kwalletmanager-16.04.3.tar.xz";
+ sha256 = "1kfxqzidpbq88liqmh8qmxyycmfx7yyy509fbrb3c3bis0cvpgwq";
+ name = "kwalletmanager-16.04.3.tar.xz";
+ };
+ };
+ kwordquiz = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kwordquiz-16.04.3.tar.xz";
+ sha256 = "1wnxyshncbxidksqi96h9isq9v88n6dihjv91ml5q2ld1k46sjnv";
+ name = "kwordquiz-16.04.3.tar.xz";
+ };
+ };
+ libgravatar = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libgravatar-16.04.3.tar.xz";
+ sha256 = "1nr6p484llm4vablm41v080b8hn83254qhgw2lgrndpwl8c8wi58";
+ name = "libgravatar-16.04.3.tar.xz";
+ };
+ };
+ libkcddb = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkcddb-16.04.3.tar.xz";
+ sha256 = "0k6g4a1n5p4idn0aw2l134fk94py2a35hs1b7frcpvx6f395d7h8";
+ name = "libkcddb-16.04.3.tar.xz";
+ };
+ };
+ libkcompactdisc = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkcompactdisc-16.04.3.tar.xz";
+ sha256 = "091cijlcax2fgj8grwi7wysqq9f3z4riklv66qx89xs0kqx372c8";
+ name = "libkcompactdisc-16.04.3.tar.xz";
+ };
+ };
+ libkdcraw = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkdcraw-16.04.3.tar.xz";
+ sha256 = "0qxl9jcn9c6ifvc2r2i9gv6mca83ysn28m92jrhrf2wirn53s5gx";
+ name = "libkdcraw-16.04.3.tar.xz";
+ };
+ };
+ libkdeedu = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkdeedu-16.04.3.tar.xz";
+ sha256 = "0j0x6psx2nv6v1h0895qqzpdavz3xb4z5amqnbhjiz0kspalpa9p";
+ name = "libkdeedu-16.04.3.tar.xz";
+ };
+ };
+ libkdegames = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkdegames-16.04.3.tar.xz";
+ sha256 = "1ryjz1k8jfayj4cy3ih5wzbx26qy6mp9zka2bfc8h30pi0l9f8zd";
+ name = "libkdegames-16.04.3.tar.xz";
+ };
+ };
+ libkdepim = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkdepim-16.04.3.tar.xz";
+ sha256 = "1dxx026fd2hfwdxhwp4fswb05lx8s4wdha7lj5yk4g6s8x11m56a";
+ name = "libkdepim-16.04.3.tar.xz";
+ };
+ };
+ libkeduvocdocument = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkeduvocdocument-16.04.3.tar.xz";
+ sha256 = "0ajfk2yzqp1rjxllrvknhwkxv16d40fi9m24gk7j0ma19fd90xg0";
+ name = "libkeduvocdocument-16.04.3.tar.xz";
+ };
+ };
+ libkexiv2 = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkexiv2-16.04.3.tar.xz";
+ sha256 = "00v09mz8v7z1pan8r4qvgmsi7kyr8pmim0km88jdf3mcaswk6mia";
+ name = "libkexiv2-16.04.3.tar.xz";
+ };
+ };
+ libkface = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkface-16.04.3.tar.xz";
+ sha256 = "0mx706gcjb9zvi32lmlk6mp93vk6pwkb5598nm4a0qcmfdnxfdsp";
+ name = "libkface-16.04.3.tar.xz";
+ };
+ };
+ libkgeomap = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkgeomap-16.04.3.tar.xz";
+ sha256 = "0m5frrk6hyjzmhq7lqzx8sila9vhbxhhnlp1rwsv3gwnyq0lpf5w";
+ name = "libkgeomap-16.04.3.tar.xz";
+ };
+ };
+ libkipi = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkipi-16.04.3.tar.xz";
+ sha256 = "17hhs1lwckx4zgv10f8pw2y3g2arldxz5zzqi5yzf0g9zzqgv0y6";
+ name = "libkipi-16.04.3.tar.xz";
+ };
+ };
+ libkleo = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkleo-16.04.3.tar.xz";
+ sha256 = "1989kr8yp6s7apxgd7jb1g4ims3gff7kp6z3ywkriv27h1wq0ym3";
+ name = "libkleo-16.04.3.tar.xz";
+ };
+ };
+ libkmahjongg = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkmahjongg-16.04.3.tar.xz";
+ sha256 = "01lp82lyf71h7570bfgfr3inw5hxm3xs6k819gpljsb6ywjxf426";
+ name = "libkmahjongg-16.04.3.tar.xz";
+ };
+ };
+ libkomparediff2 = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkomparediff2-16.04.3.tar.xz";
+ sha256 = "0al466jm33mcmqwanf1mq34dqrk3dqzxpw847rfmax0npmwnsgs4";
+ name = "libkomparediff2-16.04.3.tar.xz";
+ };
+ };
+ libksane = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libksane-16.04.3.tar.xz";
+ sha256 = "13rlpvg55ci2jcwsdl3hai9xicb41lgwsgnhpmzd1c7gpyf50c47";
+ name = "libksane-16.04.3.tar.xz";
+ };
+ };
+ libksieve = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libksieve-16.04.3.tar.xz";
+ sha256 = "1s0mz0ndchhpaq9lzv9ml537w8mj42rvq97wxyl8hfsvcfkfkqyv";
+ name = "libksieve-16.04.3.tar.xz";
+ };
+ };
+ lokalize = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/lokalize-16.04.3.tar.xz";
+ sha256 = "1f63yzb2c9hbiyylsa7jfccr40bxwwzmz65s8ny8w3rs481i6mi1";
+ name = "lokalize-16.04.3.tar.xz";
+ };
+ };
+ lskat = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/lskat-16.04.3.tar.xz";
+ sha256 = "12xpds0nq6bbnmxvjqj3an0ji9nz698l0n0lncw37r6ijbf023my";
+ name = "lskat-16.04.3.tar.xz";
+ };
+ };
+ mailcommon = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/mailcommon-16.04.3.tar.xz";
+ sha256 = "0zls1a7dvrprbjy9l7vhyd5qcpik7z8m6s27y31rdvzjic1vpxbp";
+ name = "mailcommon-16.04.3.tar.xz";
+ };
+ };
+ mailimporter = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/mailimporter-16.04.3.tar.xz";
+ sha256 = "1w81mnnlfdq61q1q36qingwx1nsav160lw779xn9gdzb3i9ag7nz";
+ name = "mailimporter-16.04.3.tar.xz";
+ };
+ };
+ marble = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/marble-16.04.3.tar.xz";
+ sha256 = "1jriyclkdrbi5qx9znjpkmcd9l7h2fz3265b61h49d981b7sngas";
+ name = "marble-16.04.3.tar.xz";
+ };
+ };
+ messagelib = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/messagelib-16.04.3.tar.xz";
+ sha256 = "1mvjglnq8vxhrpi2nl7p78mj1idmfci5jbzv0mn15bjs4s4kld41";
+ name = "messagelib-16.04.3.tar.xz";
+ };
+ };
+ minuet = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/minuet-16.04.3.tar.xz";
+ sha256 = "13sz0a5ayis3w9d5fk9hm5jlv87vvclqwpbij6wl8df2zrqh29w4";
+ name = "minuet-16.04.3.tar.xz";
+ };
+ };
+ mplayerthumbs = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/mplayerthumbs-16.04.3.tar.xz";
+ sha256 = "01v4cc1y0rhzyxs7mhlvn1dmwgmnn8a5jn3lii6ydi2ln5s0kg7f";
+ name = "mplayerthumbs-16.04.3.tar.xz";
+ };
+ };
+ okteta = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/okteta-16.04.3.tar.xz";
+ sha256 = "0qymdfyaa3zsfjbrm4scfqg53hmfvr3c747p6wj032b9kymy0d5h";
+ name = "okteta-16.04.3.tar.xz";
+ };
+ };
+ okular = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/okular-16.04.3.tar.xz";
+ sha256 = "199q00ddqv53c6psm07xcnck9v5dmc89cj810gkkrbwwyb6r1mfd";
+ name = "okular-16.04.3.tar.xz";
+ };
+ };
+ palapeli = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/palapeli-16.04.3.tar.xz";
+ sha256 = "1j2vvk98bkldq36x0kndyw7455q6kiwmg0gvhh18kn24arw1y2as";
+ name = "palapeli-16.04.3.tar.xz";
+ };
+ };
+ parley = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/parley-16.04.3.tar.xz";
+ sha256 = "0ii0nh1m6ggza32brx6iwvl3cqsya6z2znrlxs63sra1ihlv2m1y";
+ name = "parley-16.04.3.tar.xz";
+ };
+ };
+ picmi = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/picmi-16.04.3.tar.xz";
+ sha256 = "0jsrpwgmq33510gj2flqqlhc6hwqlynsqzr883aqj9bsxc15ngil";
+ name = "picmi-16.04.3.tar.xz";
+ };
+ };
+ pimcommon = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/pimcommon-16.04.3.tar.xz";
+ sha256 = "0f5jrrdih18ar3ac43bqr3i2mqciil04aag66032izrfy4fvmp3f";
+ name = "pimcommon-16.04.3.tar.xz";
+ };
+ };
+ poxml = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/poxml-16.04.3.tar.xz";
+ sha256 = "0cv6kdrhmx7m2xg0cmrc4mifwayfvlc9vpiigwzs6928xy7ffyzn";
+ name = "poxml-16.04.3.tar.xz";
+ };
+ };
+ print-manager = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/print-manager-16.04.3.tar.xz";
+ sha256 = "1kh4malrlfchcmph9d8h1h9ljffjg8d1pfjil6gfprc6z877lmww";
+ name = "print-manager-16.04.3.tar.xz";
+ };
+ };
+ rocs = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/rocs-16.04.3.tar.xz";
+ sha256 = "1xh9hzg6kl2mcgp7yjdx2rffalis4fp6y4166s527ikjqxvwr2xw";
+ name = "rocs-16.04.3.tar.xz";
+ };
+ };
+ signon-kwallet-extension = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/signon-kwallet-extension-16.04.3.tar.xz";
+ sha256 = "015ps8zpbn15ml1s3qjwbpsf7md4sxn8232x2nl68nzv06n0bsx5";
+ name = "signon-kwallet-extension-16.04.3.tar.xz";
+ };
+ };
+ spectacle = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/spectacle-16.04.3.tar.xz";
+ sha256 = "0pxals99p5wj40x84g98rxy6g5y7jqg7x2dsw1pc8nci6l0x6p4w";
+ name = "spectacle-16.04.3.tar.xz";
+ };
+ };
+ step = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/step-16.04.3.tar.xz";
+ sha256 = "1rybd7apzp9ky094325qcgmhgwns8vvsvz6y17injxqjcwk25bxp";
+ name = "step-16.04.3.tar.xz";
+ };
+ };
+ svgpart = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/svgpart-16.04.3.tar.xz";
+ sha256 = "17xnhf9g3qcyra8h5jvvmw6gavv25lm9x57j9vl0fhfrc7s398sq";
+ name = "svgpart-16.04.3.tar.xz";
+ };
+ };
+ sweeper = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/sweeper-16.04.3.tar.xz";
+ sha256 = "1xx7im8kz08cmddy1n52ndxz67yiawabm9pyacjssr3nrs82imrh";
+ name = "sweeper-16.04.3.tar.xz";
+ };
+ };
+ syndication = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/syndication-16.04.3.tar.xz";
+ sha256 = "036wpmqkqdry6gaxf56f1yc9vn41lwmkgxdslyb7r7y0g5mxlyr5";
+ name = "syndication-16.04.3.tar.xz";
+ };
+ };
+ umbrello = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/umbrello-16.04.3.tar.xz";
+ sha256 = "05gphjb35if4882gf79vqpdpkifzp50v7g0hpbarx01b00ijb00i";
+ name = "umbrello-16.04.3.tar.xz";
+ };
+ };
+ zeroconf-ioslave = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/zeroconf-ioslave-16.04.3.tar.xz";
+ sha256 = "11bj016v0lppdqpasvqrqgljdbykar8bh1q0gwwykxh1zhk932jb";
+ name = "zeroconf-ioslave-16.04.3.tar.xz";
+ };
+ };
+}
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kconfig.nix b/pkgs/desktops/kde-5/frameworks-5.22/kconfig.nix
deleted file mode 100644
index e132afe5988..00000000000
--- a/pkgs/desktops/kde-5/frameworks-5.22/kconfig.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{ 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/desktops/kde-5/frameworks-5.22/kdbusaddons.nix b/pkgs/desktops/kde-5/frameworks-5.22/kdbusaddons.nix
deleted file mode 100644
index d2ceab31d14..00000000000
--- a/pkgs/desktops/kde-5/frameworks-5.22/kdbusaddons.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ 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/desktops/kde-5/frameworks-5.22/kiconthemes/default.nix b/pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default.nix
deleted file mode 100644
index 4e868480636..00000000000
--- a/pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{ kdeFramework, lib, copyPathsToStore
-, extra-cmake-modules, makeQtWrapper
-, kconfigwidgets, ki18n, breeze-icons, kitemviews, qtsvg
-}:
-
-kdeFramework {
- name = "kiconthemes";
- meta = { maintainers = [ lib.maintainers.ttuegel ]; };
- patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
- nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
- propagatedBuildInputs = [ breeze-icons kconfigwidgets ki18n kitemviews qtsvg ];
- postInstall = ''
- wrapQtProgram "$out/bin/kiconfinder5"
- '';
-}
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kinit/default.nix b/pkgs/desktops/kde-5/frameworks-5.22/kinit/default.nix
deleted file mode 100644
index 08901010de8..00000000000
--- a/pkgs/desktops/kde-5/frameworks-5.22/kinit/default.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{ kdeFramework, lib, copyPathsToStore, extra-cmake-modules, kconfig, kcrash
-, kdoctools, ki18n, kio, kservice, kwindowsystem, libcap
-}:
-
-kdeFramework {
- name = "kinit";
- meta = { maintainers = [ lib.maintainers.ttuegel ]; };
- nativeBuildInputs = [ extra-cmake-modules kdoctools libcap.out ];
- propagatedBuildInputs = [
- kconfig kcrash ki18n kio kservice kwindowsystem libcap
- ];
- patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
-}
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kinit/series b/pkgs/desktops/kde-5/frameworks-5.22/kinit/series
deleted file mode 100644
index 5faa456366b..00000000000
--- a/pkgs/desktops/kde-5/frameworks-5.22/kinit/series
+++ /dev/null
@@ -1 +0,0 @@
-kinit-libpath.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kservice/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.22/kservice/setup-hook.sh
deleted file mode 100644
index c28e862ff8a..00000000000
--- a/pkgs/desktops/kde-5/frameworks-5.22/kservice/setup-hook.sh
+++ /dev/null
@@ -1,43 +0,0 @@
-addServicePkg() {
- local propagated
- for dir in "share/kservices5" "share/kservicetypes5"; 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
-
- propagated=
- for pkg in $propagatedUserEnvPkgs; do
- if [[ "z$pkg" == "z$1" ]]; then
- propagated=1
- break
- fi
- done
- if [[ -z $propagated ]]; then
- propagatedUserEnvPkgs="$propagatedUserEnvPkgs $1"
- fi
-
- break
- fi
- done
-}
-
-envHooks+=(addServicePkg)
-
-local propagated
-for pkg in $propagatedBuildInputs; do
- if [[ "z$pkg" == "z@out@" ]]; then
- propagated=1
- break
- fi
-done
-if [[ -z $propagated ]]; then
- propagatedBuildInputs="$propagatedBuildInputs @out@"
-fi
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/srcs.nix b/pkgs/desktops/kde-5/frameworks-5.22/srcs.nix
deleted file mode 100644
index 156a11ba216..00000000000
--- a/pkgs/desktops/kde-5/frameworks-5.22/srcs.nix
+++ /dev/null
@@ -1,581 +0,0 @@
-# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh
-{ fetchurl, mirror }:
-
-{
- attica = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/attica-5.22.0.tar.xz";
- sha256 = "1i26nwxyrb62icw49znlyz9y670cv7xvibzbdfnnxq9czsalwym7";
- name = "attica-5.22.0.tar.xz";
- };
- };
- baloo = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/baloo-5.22.0.tar.xz";
- sha256 = "0h51j41pa8b18jkdna0247z5alqfbvgfzlxc6s6p0c7g7658z0w3";
- name = "baloo-5.22.0.tar.xz";
- };
- };
- bluez-qt = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/bluez-qt-5.22.0.tar.xz";
- sha256 = "1lrkkg2f2qjj8cy968l3scdrvi506m5hr9x22d1zn6r12fvq6304";
- name = "bluez-qt-5.22.0.tar.xz";
- };
- };
- breeze-icons = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/breeze-icons-5.22.0.tar.xz";
- sha256 = "162698h01cs7116la4jfygn8ka4ffjmnv7nxjl6yhcqrs25nky7l";
- name = "breeze-icons-5.22.0.tar.xz";
- };
- };
- extra-cmake-modules = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/extra-cmake-modules-5.22.0.tar.xz";
- sha256 = "042ad7kp2ijp66gvz0q60glk95wj9f0fymrjyw68253rqynf3zj3";
- name = "extra-cmake-modules-5.22.0.tar.xz";
- };
- };
- frameworkintegration = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/frameworkintegration-5.22.0.tar.xz";
- sha256 = "0jf9y738r86ss520hqhfll8prrfpha73myj99hbz3sqrix7b0va9";
- name = "frameworkintegration-5.22.0.tar.xz";
- };
- };
- kactivities = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kactivities-5.22.0.tar.xz";
- sha256 = "068jhc6lw47hcibvys968m4wa1b278ccy2gas9iymzzys1ccv6kr";
- name = "kactivities-5.22.0.tar.xz";
- };
- };
- kactivities-stats = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kactivities-stats-5.22.0.tar.xz";
- sha256 = "1gx5wm337nwbwqb56xvl16vhk47v7a5qpx5hhn7ygpfxkgxh6wiq";
- name = "kactivities-stats-5.22.0.tar.xz";
- };
- };
- kapidox = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kapidox-5.22.0.tar.xz";
- sha256 = "0cs133g1rvbcrdvy7zvk5c14p5iwwn0x0m76c2ifal0g8qh0hmd1";
- name = "kapidox-5.22.0.tar.xz";
- };
- };
- karchive = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/karchive-5.22.0.tar.xz";
- sha256 = "1ywd38j6jpwj21kdp504gs0pfvlnvg6ak8hjk6a269pkci3dyf91";
- name = "karchive-5.22.0.tar.xz";
- };
- };
- kauth = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kauth-5.22.0.tar.xz";
- sha256 = "1c0kp25g57nldh1x5vfq9fypbznc991jrry2lydvb06d3jh44vbn";
- name = "kauth-5.22.0.tar.xz";
- };
- };
- kbookmarks = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kbookmarks-5.22.0.tar.xz";
- sha256 = "093rlg8pprjg7ba52dh2z9j2x5ir7s9kjas6ni4fqxxzpp15hh3p";
- name = "kbookmarks-5.22.0.tar.xz";
- };
- };
- kcmutils = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kcmutils-5.22.0.tar.xz";
- sha256 = "1s7gw9l2n92rrcdzy9pnwq8na65axd8bkk9nphyhpbxk76zj1gyy";
- name = "kcmutils-5.22.0.tar.xz";
- };
- };
- kcodecs = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kcodecs-5.22.0.tar.xz";
- sha256 = "0rlqs8m2ib2kkj679gn74zqqxzsddfcbywpgwlcd6b992i4cad87";
- name = "kcodecs-5.22.0.tar.xz";
- };
- };
- kcompletion = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kcompletion-5.22.0.tar.xz";
- sha256 = "07jqjrddigdqsdy2adzari7g626sakilg9d765s75vncv5amrvzy";
- name = "kcompletion-5.22.0.tar.xz";
- };
- };
- kconfig = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kconfig-5.22.0.tar.xz";
- sha256 = "0n0dzgba96pkabbvk1cfm34j9jirgbd84xha6adscpxs28506cg0";
- name = "kconfig-5.22.0.tar.xz";
- };
- };
- kconfigwidgets = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kconfigwidgets-5.22.0.tar.xz";
- sha256 = "0jr6ygd8c0gap2ay2685wj3fx4scrahzbpaaj4bjhq2s79nvmlyg";
- name = "kconfigwidgets-5.22.0.tar.xz";
- };
- };
- kcoreaddons = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kcoreaddons-5.22.0.tar.xz";
- sha256 = "0zzwcw0n9bd3pi3rv7cdwynb67x1bqf1bh3s59hjipf9d412wl15";
- name = "kcoreaddons-5.22.0.tar.xz";
- };
- };
- kcrash = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kcrash-5.22.0.tar.xz";
- sha256 = "1r0i9ngk5jypzfhhssjm5b3n5sqli3jhh896r1qwpfcq9w15x7qg";
- name = "kcrash-5.22.0.tar.xz";
- };
- };
- kdbusaddons = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kdbusaddons-5.22.0.tar.xz";
- sha256 = "0w9spb5i5qi2r5kfgrylpvw6mwjxfhd4j7yslc9jy0q4y8j3f1dk";
- name = "kdbusaddons-5.22.0.tar.xz";
- };
- };
- kdeclarative = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kdeclarative-5.22.0.tar.xz";
- sha256 = "06n6wqy8dm2hv6dbar453z4rmiyf6f34zak1fhs38sqkfy6syva1";
- name = "kdeclarative-5.22.0.tar.xz";
- };
- };
- kded = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kded-5.22.0.tar.xz";
- sha256 = "1zfggr6pmiypw5bnh6hr22agms589hm7hw35nhfhc4r7qd1drf6q";
- name = "kded-5.22.0.tar.xz";
- };
- };
- kdelibs4support = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/portingAids/kdelibs4support-5.22.0.tar.xz";
- sha256 = "1mmrr54kkicnz4pjksnrh40md80m18mr5ba2la7kwjxmdyl6znm3";
- name = "kdelibs4support-5.22.0.tar.xz";
- };
- };
- kdesignerplugin = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kdesignerplugin-5.22.0.tar.xz";
- sha256 = "0cfnmpz845l39qpy5r6pknzm78js81bci9qi0xfnrf8gm3lvjg5l";
- name = "kdesignerplugin-5.22.0.tar.xz";
- };
- };
- kdesu = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kdesu-5.22.0.tar.xz";
- sha256 = "1jsr9m32dyzvsvsy743h3jih8v4yyr2zf15hh908anbamp7449bd";
- name = "kdesu-5.22.0.tar.xz";
- };
- };
- kdewebkit = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kdewebkit-5.22.0.tar.xz";
- sha256 = "0rmxa4j3jx7689jcf45fghh7jff16x34xrzrw0clg3fj4w47ik0b";
- name = "kdewebkit-5.22.0.tar.xz";
- };
- };
- kdnssd = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kdnssd-5.22.0.tar.xz";
- sha256 = "1b0s5gwn51zh2h5w2mzpzjj86qaz6pl7gzqf5q88vpzsiqjg14vp";
- name = "kdnssd-5.22.0.tar.xz";
- };
- };
- kdoctools = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kdoctools-5.22.0.tar.xz";
- sha256 = "0y4ayms0hyj4nv5flr0a198lb545plfbxkwhqsmzc0c77gagcw5k";
- name = "kdoctools-5.22.0.tar.xz";
- };
- };
- kemoticons = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kemoticons-5.22.0.tar.xz";
- sha256 = "1swrpqm441ngmps00hr15pgvw1382zbf2q2ncndj7i30725nfq1g";
- name = "kemoticons-5.22.0.tar.xz";
- };
- };
- kfilemetadata = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kfilemetadata-5.22.0.tar.xz";
- sha256 = "0p6s1r2qv5396ghkw79wyf7yf4hzj562yp83wgplwmr6lgh4b2fc";
- name = "kfilemetadata-5.22.0.tar.xz";
- };
- };
- kglobalaccel = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kglobalaccel-5.22.0.tar.xz";
- sha256 = "1m1aviz5g0vwk58j0z9jckz4rzns7md7mr3zlqqpvp1r032qc30k";
- name = "kglobalaccel-5.22.0.tar.xz";
- };
- };
- kguiaddons = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kguiaddons-5.22.0.tar.xz";
- sha256 = "10chxcvf4hxyfkgprsj7rg4dv788dzqjgsm6m0a4m6qmx12zhckh";
- name = "kguiaddons-5.22.0.tar.xz";
- };
- };
- khtml = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/portingAids/khtml-5.22.0.tar.xz";
- sha256 = "1w5q41fjrqqq91j3dvhc9lrrhvrwy1izws6af7srh768gn6yig0m";
- name = "khtml-5.22.0.tar.xz";
- };
- };
- ki18n = {
- version = "5.22.1";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/ki18n-5.22.1.tar.xz";
- sha256 = "0fasp8akj6wysn4acf9vyivcgb8x9dlnhkqmw7j0g7z1qgvjn4pv";
- name = "ki18n-5.22.1.tar.xz";
- };
- };
- kiconthemes = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kiconthemes-5.22.0.tar.xz";
- sha256 = "1bh76f7kpha4c5qs3n8z6g1qah0rsk99yqcz8j1dlss4ws65j9j3";
- name = "kiconthemes-5.22.0.tar.xz";
- };
- };
- kidletime = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kidletime-5.22.0.tar.xz";
- sha256 = "0dgw0rin6wz31xdspbjpvcs5x1b163ggqkz2zn73zavbr7f5jypc";
- name = "kidletime-5.22.0.tar.xz";
- };
- };
- kimageformats = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kimageformats-5.22.0.tar.xz";
- sha256 = "0g3f73m3yj5iqivcsn83pm32w4l13zbyzz5azgm3jjfhgnd00c18";
- name = "kimageformats-5.22.0.tar.xz";
- };
- };
- kinit = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kinit-5.22.0.tar.xz";
- sha256 = "1f71y6gf00p4jkqvpzyjlbnwc4gvjl2h4wi61xhpjz8lrmpsb6ac";
- name = "kinit-5.22.0.tar.xz";
- };
- };
- kio = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kio-5.22.0.tar.xz";
- sha256 = "02knylbs9ymb8qm7fkp3dkdqc9cvgw2dwfl4phzl1iax2fx2zkqy";
- name = "kio-5.22.0.tar.xz";
- };
- };
- kitemmodels = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kitemmodels-5.22.0.tar.xz";
- sha256 = "03gnglfhpzrc67bi0xdcy4xdhankic5cqnpahp9wwsis12ac6i83";
- name = "kitemmodels-5.22.0.tar.xz";
- };
- };
- kitemviews = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kitemviews-5.22.0.tar.xz";
- sha256 = "0nhwg7bmv1c8p6pnbfsz96mq9wbq339ir9yp7kfnhfrg0wqi44ar";
- name = "kitemviews-5.22.0.tar.xz";
- };
- };
- kjobwidgets = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kjobwidgets-5.22.0.tar.xz";
- sha256 = "1inqrb0j64b3519qcr0wk9izd4c1zi4kfjc8wa04s2kwxg6z7j1p";
- name = "kjobwidgets-5.22.0.tar.xz";
- };
- };
- kjs = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/portingAids/kjs-5.22.0.tar.xz";
- sha256 = "0xqlkhm8r021xd5a25nwp9a4r7cbjkpqkc89fjma8qyvq5785qxw";
- name = "kjs-5.22.0.tar.xz";
- };
- };
- kjsembed = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/portingAids/kjsembed-5.22.0.tar.xz";
- sha256 = "0fcc1lm5l8r0lj35r3niliyn8zxr90by2vjc9krzfm4i7kwij7wb";
- name = "kjsembed-5.22.0.tar.xz";
- };
- };
- kmediaplayer = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/portingAids/kmediaplayer-5.22.0.tar.xz";
- sha256 = "1pn3fmaixcxba1wl63hblhnpj7jblrala9j3xrj8z2abhhfl5vzy";
- name = "kmediaplayer-5.22.0.tar.xz";
- };
- };
- knewstuff = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/knewstuff-5.22.0.tar.xz";
- sha256 = "1gr566k95bg58hpn569kkarmlxk5rp12jcxdp7ksw1j8mp6la7a7";
- name = "knewstuff-5.22.0.tar.xz";
- };
- };
- knotifications = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/knotifications-5.22.0.tar.xz";
- sha256 = "0fh6ahfr9pa8643i1ma40h7afnd1jn0m6dw5f9hgndxhwi6h3bps";
- name = "knotifications-5.22.0.tar.xz";
- };
- };
- knotifyconfig = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/knotifyconfig-5.22.0.tar.xz";
- sha256 = "0p4g7wv2w6cpjzhlkh7rnzzhwcj86sgz98fl97is1fl65q8f0szr";
- name = "knotifyconfig-5.22.0.tar.xz";
- };
- };
- kpackage = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kpackage-5.22.0.tar.xz";
- sha256 = "1nbwjc4n8f2iisdckm5ll3qyls1sq02ia6vmhj4mfm4w44q4s1bk";
- name = "kpackage-5.22.0.tar.xz";
- };
- };
- kparts = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kparts-5.22.0.tar.xz";
- sha256 = "091wm2flhqgpqsffdd8nlwbdffvsj7cyd0c46949d9chm64723cg";
- name = "kparts-5.22.0.tar.xz";
- };
- };
- kpeople = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kpeople-5.22.0.tar.xz";
- sha256 = "0rbwxzmyaig92vcd26v1yqd13swk15pp0lpvjp6hdpxbhpxijyf7";
- name = "kpeople-5.22.0.tar.xz";
- };
- };
- kplotting = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kplotting-5.22.0.tar.xz";
- sha256 = "0ljiyxa2320v937lkqkxx3jc7sg45z4vjl74lxfybwspgs6y5hqk";
- name = "kplotting-5.22.0.tar.xz";
- };
- };
- kpty = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kpty-5.22.0.tar.xz";
- sha256 = "12lfwv45d06ksx5xc4hgk075mj2ckkqpc8mksx99f700yvcyk1db";
- name = "kpty-5.22.0.tar.xz";
- };
- };
- kross = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/portingAids/kross-5.22.0.tar.xz";
- sha256 = "1ika9ha06vspjn8hy6mv5vi5n7xj7sj45csmjjxcqwhn2wlcdj4l";
- name = "kross-5.22.0.tar.xz";
- };
- };
- krunner = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/krunner-5.22.0.tar.xz";
- sha256 = "09jhdy48dciqd8hwxmvjyw547fr48mzns5f0yknsnnb8a47yhrd4";
- name = "krunner-5.22.0.tar.xz";
- };
- };
- kservice = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kservice-5.22.0.tar.xz";
- sha256 = "1c5q8cxghbji3imamjbxymcd5cz9a9rapqriy1wmskys3ms3fag9";
- name = "kservice-5.22.0.tar.xz";
- };
- };
- ktexteditor = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/ktexteditor-5.22.0.tar.xz";
- sha256 = "1jsa8cfq0245bsris46i3k8f8g7l0sc5jpj4iwkxrl9m0nk5j1v0";
- name = "ktexteditor-5.22.0.tar.xz";
- };
- };
- ktextwidgets = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/ktextwidgets-5.22.0.tar.xz";
- sha256 = "01a2vkdpq06libap5g6a90jrcc0phmfd859kilraqyxhbrp9sw5l";
- name = "ktextwidgets-5.22.0.tar.xz";
- };
- };
- kunitconversion = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kunitconversion-5.22.0.tar.xz";
- sha256 = "1phbqxddp8ks36nr4982n4bwwx7d6yxll629gpb0ddc4yfsjv48p";
- name = "kunitconversion-5.22.0.tar.xz";
- };
- };
- kwallet = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kwallet-5.22.0.tar.xz";
- sha256 = "1i20kp1gkdiwmwy8vf7vd6r89qx6lpxwr6nib35khp93ci9l3838";
- name = "kwallet-5.22.0.tar.xz";
- };
- };
- kwayland = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kwayland-5.22.0.tar.xz";
- sha256 = "1jfibqai7vy1vklj19x7z0r4qc0rc7yd5r4wpp98mmdwzpnhlrgy";
- name = "kwayland-5.22.0.tar.xz";
- };
- };
- kwidgetsaddons = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kwidgetsaddons-5.22.0.tar.xz";
- sha256 = "1bwmnfa1l3s33nc6b0ryk78gxhrynyd07ffqw7mw211r34pg4c14";
- name = "kwidgetsaddons-5.22.0.tar.xz";
- };
- };
- kwindowsystem = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kwindowsystem-5.22.0.tar.xz";
- sha256 = "05jwmjqk03pc2g09rnyb9qh0dfi0c46awbaxgc7i7z4i9swv1k30";
- name = "kwindowsystem-5.22.0.tar.xz";
- };
- };
- kxmlgui = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kxmlgui-5.22.0.tar.xz";
- sha256 = "16q222jvnsd6pj49ih44qpks97lcjsamcpjg5x5ysn4a6w5h4mds";
- name = "kxmlgui-5.22.0.tar.xz";
- };
- };
- kxmlrpcclient = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kxmlrpcclient-5.22.0.tar.xz";
- sha256 = "00qj4pa7r0ny6pwivq6qqw80v4dsg9lgwd2qdlp9kddi0f8i2p1b";
- name = "kxmlrpcclient-5.22.0.tar.xz";
- };
- };
- modemmanager-qt = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/modemmanager-qt-5.22.0.tar.xz";
- sha256 = "1b1gx33vrw7qcvy3zlc01x7wlalx5csfl590gfxlf870i3m7dnhf";
- name = "modemmanager-qt-5.22.0.tar.xz";
- };
- };
- networkmanager-qt = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/networkmanager-qt-5.22.0.tar.xz";
- sha256 = "03b710n4107qw9c3p7wdma9fz9vqixrjydfa02f7vgzw1rixmmqq";
- name = "networkmanager-qt-5.22.0.tar.xz";
- };
- };
- oxygen-icons5 = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/oxygen-icons5-5.22.0.tar.xz";
- sha256 = "1m3f5wrgahqlzzl3jyfymh6n515fsmsi8ckimvma2d8qqpb0dc2l";
- name = "oxygen-icons5-5.22.0.tar.xz";
- };
- };
- plasma-framework = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/plasma-framework-5.22.0.tar.xz";
- sha256 = "1wn7ib030dw8rj5dprl8bzz4c3dv4nlmrfb9wgr6x78w4ac967zc";
- name = "plasma-framework-5.22.0.tar.xz";
- };
- };
- solid = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/solid-5.22.0.tar.xz";
- sha256 = "04a7z5g2ylhbj2572wa6w51cs98ddn4d7lfirzawxf0f8d2693w2";
- name = "solid-5.22.0.tar.xz";
- };
- };
- sonnet = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/sonnet-5.22.0.tar.xz";
- sha256 = "0y8l3mfa65a59vjj424ga87q3bixx8inicp2jp9zi36p4g7xwww8";
- name = "sonnet-5.22.0.tar.xz";
- };
- };
- threadweaver = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/threadweaver-5.22.0.tar.xz";
- sha256 = "1ax58k6nl8za79j99spa2r76m9xz8ih9iflksgpng40wlnkwlp59";
- name = "threadweaver-5.22.0.tar.xz";
- };
- };
-}
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/attica.nix b/pkgs/desktops/kde-5/frameworks/attica.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/attica.nix
rename to pkgs/desktops/kde-5/frameworks/attica.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/baloo.nix b/pkgs/desktops/kde-5/frameworks/baloo.nix
similarity index 52%
rename from pkgs/desktops/kde-5/frameworks-5.22/baloo.nix
rename to pkgs/desktops/kde-5/frameworks/baloo.nix
index f676da0f4c8..825a125c8a7 100644
--- a/pkgs/desktops/kde-5/frameworks-5.22/baloo.nix
+++ b/pkgs/desktops/kde-5/frameworks/baloo.nix
@@ -1,22 +1,15 @@
{ kdeFramework, lib, extra-cmake-modules, kauth, kconfig
, kcoreaddons, kcrash, kdbusaddons, kfilemetadata, ki18n, kidletime
-, kio, lmdb, makeQtWrapper, qtbase, solid
+, kio, lmdb, qtbase, solid
}:
kdeFramework {
name = "baloo";
- nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
+ nativeBuildInputs = [ extra-cmake-modules ];
propagatedBuildInputs = [
kauth kconfig kcoreaddons kcrash kdbusaddons kfilemetadata ki18n kio
kidletime lmdb qtbase solid
];
- 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/desktops/kde-5/frameworks-5.22/bluez-qt.nix b/pkgs/desktops/kde-5/frameworks/bluez-qt.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/bluez-qt.nix
rename to pkgs/desktops/kde-5/frameworks/bluez-qt.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/breeze-icons.nix b/pkgs/desktops/kde-5/frameworks/breeze-icons.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/breeze-icons.nix
rename to pkgs/desktops/kde-5/frameworks/breeze-icons.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/default.nix b/pkgs/desktops/kde-5/frameworks/default.nix
similarity index 91%
rename from pkgs/desktops/kde-5/frameworks-5.22/default.nix
rename to pkgs/desktops/kde-5/frameworks/default.nix
index 4d0567846f8..bff2b394038 100644
--- a/pkgs/desktops/kde-5/frameworks-5.22/default.nix
+++ b/pkgs/desktops/kde-5/frameworks/default.nix
@@ -2,14 +2,10 @@
# Updates
-Before a major version update, make a copy of this directory. (We like to
-keep the old version around for a short time after major updates.)
-
-1. Update the URL in `maintainers/scripts/generate-kde-frameworks.sh`.
-2. From the top of the Nixpkgs tree, run
- `./maintainers/scripts/generate-kde-frameworks.sh > pkgs/desktops/kde-5/frameworks-$VERSION/srcs.nix'.
-3. Check that the new packages build correctly.
-4. Commit the changes and open a pull request.
+1. Update the URL in `maintainers/scripts/generate-kde-frameworks.sh` and
+ run that script from the top of the Nixpkgs tree.
+2. Check that the new packages build correctly.
+3. Commit the changes and open a pull request.
*/
@@ -106,6 +102,7 @@ let
ktextwidgets = callPackage ./ktextwidgets.nix {};
kunitconversion = callPackage ./kunitconversion.nix {};
kwallet = callPackage ./kwallet.nix {};
+ kwayland = callPackage ./kwayland.nix {};
kwidgetsaddons = callPackage ./kwidgetsaddons.nix {};
kwindowsystem = callPackage ./kwindowsystem.nix {};
kxmlgui = callPackage ./kxmlgui.nix {};
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/default.nix b/pkgs/desktops/kde-5/frameworks/extra-cmake-modules/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/default.nix
rename to pkgs/desktops/kde-5/frameworks/extra-cmake-modules/default.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/nix-lib-path.patch b/pkgs/desktops/kde-5/frameworks/extra-cmake-modules/nix-lib-path.patch
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/nix-lib-path.patch
rename to pkgs/desktops/kde-5/frameworks/extra-cmake-modules/nix-lib-path.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/series b/pkgs/desktops/kde-5/frameworks/extra-cmake-modules/series
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/series
rename to pkgs/desktops/kde-5/frameworks/extra-cmake-modules/series
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/setup-hook.sh b/pkgs/desktops/kde-5/frameworks/extra-cmake-modules/setup-hook.sh
similarity index 91%
rename from pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/setup-hook.sh
rename to pkgs/desktops/kde-5/frameworks/extra-cmake-modules/setup-hook.sh
index aab0625bf61..5363f4e30fd 100644
--- a/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/setup-hook.sh
+++ b/pkgs/desktops/kde-5/frameworks/extra-cmake-modules/setup-hook.sh
@@ -1,22 +1,29 @@
_ecmSetXdgDirs() {
addToSearchPathOnce XDG_DATA_DIRS "$1/share"
addToSearchPathOnce XDG_CONFIG_DIRS "$1/etc/xdg"
- addToSearchPathOnce NIX_WRAP_XDG_CONFIG_DIRS "$1/etc/xdg"
+ addToSearchPathOnce RUNTIME_XDG_CONFIG_DIRS "$1/etc/xdg"
}
_ecmSharePaths=( \
+ "appdata" \
+ "applications" \
"config.cfg" \
+ "dbus-1" \
+ "desktop-directories" \
+ "doc" \
+ "icons" \
"kconf_update" \
"kservices5" \
"kservicetypes5" \
"knotifications5" \
- "applications" \
- "desktop-directories" \
+ "kxmlgui5" \
+ "locale" \
"mime" \
- "dbus-1" \
- "interfaces" \
- "services" \
- "system-services" )
+ "polkit-1" \
+ "sounds" \
+ "templates" \
+ "wallpapers" \
+ )
_ecmPropagateNative() {
for dir in ${_ecmSharePaths[@]}; do
@@ -24,7 +31,7 @@ _ecmPropagateNative() {
propagateOnce propagatedNativeBuildInputs "$1"
if [ -z "$crossConfig" ]; then
propagateOnce propagatedUserEnvPkgs "$1"
- addToSearchPathOnce NIX_WRAP_XDG_DATA_DIRS "$1/share"
+ addToSearchPathOnce RUNTIME_XDG_DATA_DIRS "$1/share"
fi
break
fi
@@ -38,7 +45,7 @@ _ecmPropagate() {
if [ -d "$1/share/$dir" ]; then
propagateOnce propagatedBuildInputs "$1"
propagateOnce propagatedUserEnvPkgs "$1"
- addToSearchPathOnce NIX_WRAP_XDG_DATA_DIRS "$1/share"
+ addToSearchPathOnce RUNTIME_XDG_DATA_DIRS "$1/share"
break
fi
done
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/frameworkintegration.nix b/pkgs/desktops/kde-5/frameworks/frameworkintegration.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/frameworkintegration.nix
rename to pkgs/desktops/kde-5/frameworks/frameworkintegration.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kactivities-stats.nix b/pkgs/desktops/kde-5/frameworks/kactivities-stats.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kactivities-stats.nix
rename to pkgs/desktops/kde-5/frameworks/kactivities-stats.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kactivities.nix b/pkgs/desktops/kde-5/frameworks/kactivities.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kactivities.nix
rename to pkgs/desktops/kde-5/frameworks/kactivities.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kapidox.nix b/pkgs/desktops/kde-5/frameworks/kapidox.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kapidox.nix
rename to pkgs/desktops/kde-5/frameworks/kapidox.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/karchive.nix b/pkgs/desktops/kde-5/frameworks/karchive.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/karchive.nix
rename to pkgs/desktops/kde-5/frameworks/karchive.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kauth/cmake-install-paths.patch b/pkgs/desktops/kde-5/frameworks/kauth/cmake-install-paths.patch
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kauth/cmake-install-paths.patch
rename to pkgs/desktops/kde-5/frameworks/kauth/cmake-install-paths.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kauth/default.nix b/pkgs/desktops/kde-5/frameworks/kauth/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kauth/default.nix
rename to pkgs/desktops/kde-5/frameworks/kauth/default.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kauth/series b/pkgs/desktops/kde-5/frameworks/kauth/series
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kauth/series
rename to pkgs/desktops/kde-5/frameworks/kauth/series
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kbookmarks.nix b/pkgs/desktops/kde-5/frameworks/kbookmarks.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kbookmarks.nix
rename to pkgs/desktops/kde-5/frameworks/kbookmarks.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcmutils/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks/kcmutils/0001-qdiriterator-follow-symlinks.patch
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kcmutils/0001-qdiriterator-follow-symlinks.patch
rename to pkgs/desktops/kde-5/frameworks/kcmutils/0001-qdiriterator-follow-symlinks.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcmutils/default.nix b/pkgs/desktops/kde-5/frameworks/kcmutils/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kcmutils/default.nix
rename to pkgs/desktops/kde-5/frameworks/kcmutils/default.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcodecs.nix b/pkgs/desktops/kde-5/frameworks/kcodecs.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kcodecs.nix
rename to pkgs/desktops/kde-5/frameworks/kcodecs.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcompletion.nix b/pkgs/desktops/kde-5/frameworks/kcompletion.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kcompletion.nix
rename to pkgs/desktops/kde-5/frameworks/kcompletion.nix
diff --git a/pkgs/desktops/kde-5/frameworks/kconfig.nix b/pkgs/desktops/kde-5/frameworks/kconfig.nix
new file mode 100644
index 00000000000..154329d0e98
--- /dev/null
+++ b/pkgs/desktops/kde-5/frameworks/kconfig.nix
@@ -0,0 +1,9 @@
+{ kdeFramework, lib
+, extra-cmake-modules
+}:
+
+kdeFramework {
+ name = "kconfig";
+ meta = { maintainers = [ lib.maintainers.ttuegel ]; };
+ nativeBuildInputs = [ extra-cmake-modules ];
+}
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch
rename to pkgs/desktops/kde-5/frameworks/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kconfigwidgets/default.nix b/pkgs/desktops/kde-5/frameworks/kconfigwidgets/default.nix
similarity index 68%
rename from pkgs/desktops/kde-5/frameworks-5.22/kconfigwidgets/default.nix
rename to pkgs/desktops/kde-5/frameworks/kconfigwidgets/default.nix
index 1e6976113de..f507abe2991 100644
--- a/pkgs/desktops/kde-5/frameworks-5.22/kconfigwidgets/default.nix
+++ b/pkgs/desktops/kde-5/frameworks/kconfigwidgets/default.nix
@@ -1,15 +1,14 @@
{ kdeFramework, lib, extra-cmake-modules, kauth, kcodecs, kconfig
-, kdoctools, kguiaddons, ki18n, kwidgetsaddons, makeQtWrapper
+, kdoctools, kguiaddons, ki18n, kwidgetsaddons
}:
kdeFramework {
name = "kconfigwidgets";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
- nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ];
+ nativeBuildInputs = [ extra-cmake-modules kdoctools ];
propagatedBuildInputs = [ kauth kconfig kcodecs kguiaddons ki18n kwidgetsaddons ];
patches = [ ./0001-qdiriterator-follow-symlinks.patch ];
postInstall = ''
moveToOutput "bin/preparetips5" "$dev"
- wrapQtProgram "$dev/bin/preparetips5"
'';
}
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcoreaddons.nix b/pkgs/desktops/kde-5/frameworks/kcoreaddons.nix
similarity index 53%
rename from pkgs/desktops/kde-5/frameworks-5.22/kcoreaddons.nix
rename to pkgs/desktops/kde-5/frameworks/kcoreaddons.nix
index 846b187c866..94b4136df3d 100644
--- a/pkgs/desktops/kde-5/frameworks-5.22/kcoreaddons.nix
+++ b/pkgs/desktops/kde-5/frameworks/kcoreaddons.nix
@@ -1,4 +1,4 @@
-{ kdeFramework, lib, makeQtWrapper
+{ kdeFramework, lib
, extra-cmake-modules
, shared_mime_info
}:
@@ -6,9 +6,6 @@
kdeFramework {
name = "kcoreaddons";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
- nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
+ nativeBuildInputs = [ extra-cmake-modules ];
propagatedBuildInputs = [ shared_mime_info ];
- postInstall = ''
- wrapQtProgram "$out/bin/desktoptojson"
- '';
}
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcrash.nix b/pkgs/desktops/kde-5/frameworks/kcrash.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kcrash.nix
rename to pkgs/desktops/kde-5/frameworks/kcrash.nix
diff --git a/pkgs/desktops/kde-5/frameworks/kdbusaddons.nix b/pkgs/desktops/kde-5/frameworks/kdbusaddons.nix
new file mode 100644
index 00000000000..eadd645fb99
--- /dev/null
+++ b/pkgs/desktops/kde-5/frameworks/kdbusaddons.nix
@@ -0,0 +1,11 @@
+{ kdeFramework, lib
+, extra-cmake-modules
+, qtx11extras
+}:
+
+kdeFramework {
+ name = "kdbusaddons";
+ meta = { maintainers = [ lib.maintainers.ttuegel ]; };
+ nativeBuildInputs = [ extra-cmake-modules ];
+ propagatedBuildInputs = [ qtx11extras ];
+}
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdeclarative.nix b/pkgs/desktops/kde-5/frameworks/kdeclarative.nix
similarity index 66%
rename from pkgs/desktops/kde-5/frameworks-5.22/kdeclarative.nix
rename to pkgs/desktops/kde-5/frameworks/kdeclarative.nix
index af9a009b82e..8db1b73c91a 100644
--- a/pkgs/desktops/kde-5/frameworks-5.22/kdeclarative.nix
+++ b/pkgs/desktops/kde-5/frameworks/kdeclarative.nix
@@ -1,18 +1,15 @@
{ kdeFramework, lib, extra-cmake-modules, epoxy, kconfig
, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kpackage
-, kwidgetsaddons, kwindowsystem, makeQtWrapper, pkgconfig
+, kwidgetsaddons, kwindowsystem, pkgconfig
, qtdeclarative
}:
kdeFramework {
name = "kdeclarative";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
- nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
+ nativeBuildInputs = [ extra-cmake-modules ];
propagatedBuildInputs = [
epoxy kconfig kglobalaccel kguiaddons ki18n kiconthemes kio kpackage
kwidgetsaddons kwindowsystem qtdeclarative
];
- postInstall = ''
- wrapQtProgram "$out/bin/kpackagelauncherqml"
- '';
}
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kded.nix b/pkgs/desktops/kde-5/frameworks/kded.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kded.nix
rename to pkgs/desktops/kde-5/frameworks/kded.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/default.nix b/pkgs/desktops/kde-5/frameworks/kdelibs4support/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/default.nix
rename to pkgs/desktops/kde-5/frameworks/kdelibs4support/default.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/nix-kde-include-dir.patch b/pkgs/desktops/kde-5/frameworks/kdelibs4support/nix-kde-include-dir.patch
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/nix-kde-include-dir.patch
rename to pkgs/desktops/kde-5/frameworks/kdelibs4support/nix-kde-include-dir.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/series b/pkgs/desktops/kde-5/frameworks/kdelibs4support/series
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/series
rename to pkgs/desktops/kde-5/frameworks/kdelibs4support/series
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/setup-hook.sh b/pkgs/desktops/kde-5/frameworks/kdelibs4support/setup-hook.sh
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/setup-hook.sh
rename to pkgs/desktops/kde-5/frameworks/kdelibs4support/setup-hook.sh
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdesignerplugin.nix b/pkgs/desktops/kde-5/frameworks/kdesignerplugin.nix
similarity index 71%
rename from pkgs/desktops/kde-5/frameworks-5.22/kdesignerplugin.nix
rename to pkgs/desktops/kde-5/frameworks/kdesignerplugin.nix
index a99587bbf04..8e17a1a60c8 100644
--- a/pkgs/desktops/kde-5/frameworks-5.22/kdesignerplugin.nix
+++ b/pkgs/desktops/kde-5/frameworks/kdesignerplugin.nix
@@ -1,4 +1,4 @@
-{ kdeFramework, lib, makeQtWrapper
+{ kdeFramework, lib
, extra-cmake-modules
, kcompletion
, kconfig
@@ -18,12 +18,9 @@
kdeFramework {
name = "kdesignerplugin";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
- nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ];
+ nativeBuildInputs = [ extra-cmake-modules kdoctools ];
propagatedBuildInputs = [
kcompletion kconfig kconfigwidgets kcoreaddons kiconthemes kio
kitemviews kplotting ktextwidgets kwidgetsaddons kxmlgui sonnet
];
- postInstall = ''
- wrapQtProgram "$out/bin/kgendesignerplugin"
- '';
}
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdesu.nix b/pkgs/desktops/kde-5/frameworks/kdesu.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kdesu.nix
rename to pkgs/desktops/kde-5/frameworks/kdesu.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdnssd.nix b/pkgs/desktops/kde-5/frameworks/kdnssd.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kdnssd.nix
rename to pkgs/desktops/kde-5/frameworks/kdnssd.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdoctools/default.nix b/pkgs/desktops/kde-5/frameworks/kdoctools/default.nix
similarity index 76%
rename from pkgs/desktops/kde-5/frameworks-5.22/kdoctools/default.nix
rename to pkgs/desktops/kde-5/frameworks/kdoctools/default.nix
index 0ed249da9a4..99fc4c7d023 100644
--- a/pkgs/desktops/kde-5/frameworks-5.22/kdoctools/default.nix
+++ b/pkgs/desktops/kde-5/frameworks/kdoctools/default.nix
@@ -1,5 +1,5 @@
{ kdeFramework, lib, extra-cmake-modules, docbook_xml_dtd_45
-, docbook5_xsl, karchive, ki18n, makeQtWrapper, perl, perlPackages
+, docbook5_xsl, karchive, ki18n, perl, perlPackages
}:
kdeFramework {
@@ -7,7 +7,7 @@ kdeFramework {
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
nativeBuildInputs = [ extra-cmake-modules ];
propagatedBuildInputs = [ karchive ki18n ];
- propagatedNativeBuildInputs = [ makeQtWrapper perl perlPackages.URI ];
+ propagatedNativeBuildInputs = [ perl perlPackages.URI ];
cmakeFlags = [
"-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook"
"-DDocBookXSL_DIR=${docbook5_xsl}/xml/xsl/docbook"
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdoctools/kdoctools-no-find-docbook-xml.patch b/pkgs/desktops/kde-5/frameworks/kdoctools/kdoctools-no-find-docbook-xml.patch
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kdoctools/kdoctools-no-find-docbook-xml.patch
rename to pkgs/desktops/kde-5/frameworks/kdoctools/kdoctools-no-find-docbook-xml.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdoctools/setup-hook.sh b/pkgs/desktops/kde-5/frameworks/kdoctools/setup-hook.sh
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kdoctools/setup-hook.sh
rename to pkgs/desktops/kde-5/frameworks/kdoctools/setup-hook.sh
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kemoticons.nix b/pkgs/desktops/kde-5/frameworks/kemoticons.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kemoticons.nix
rename to pkgs/desktops/kde-5/frameworks/kemoticons.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/cmake-install-paths.patch b/pkgs/desktops/kde-5/frameworks/kfilemetadata/cmake-install-paths.patch
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/cmake-install-paths.patch
rename to pkgs/desktops/kde-5/frameworks/kfilemetadata/cmake-install-paths.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/default.nix b/pkgs/desktops/kde-5/frameworks/kfilemetadata/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/default.nix
rename to pkgs/desktops/kde-5/frameworks/kfilemetadata/default.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/series b/pkgs/desktops/kde-5/frameworks/kfilemetadata/series
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/series
rename to pkgs/desktops/kde-5/frameworks/kfilemetadata/series
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kglobalaccel.nix b/pkgs/desktops/kde-5/frameworks/kglobalaccel.nix
similarity index 69%
rename from pkgs/desktops/kde-5/frameworks-5.22/kglobalaccel.nix
rename to pkgs/desktops/kde-5/frameworks/kglobalaccel.nix
index 79db990f191..4743d0b8f1b 100644
--- a/pkgs/desktops/kde-5/frameworks-5.22/kglobalaccel.nix
+++ b/pkgs/desktops/kde-5/frameworks/kglobalaccel.nix
@@ -5,18 +5,14 @@
, kcrash
, kdbusaddons
, kwindowsystem
-, makeQtWrapper
, qtx11extras
}:
kdeFramework {
name = "kglobalaccel";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
- nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
+ nativeBuildInputs = [ extra-cmake-modules ];
propagatedBuildInputs = [
kconfig kcoreaddons kcrash kdbusaddons kwindowsystem qtx11extras
];
- postInstall = ''
- wrapQtProgram "$out/bin/kglobalaccel5"
- '';
}
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kguiaddons.nix b/pkgs/desktops/kde-5/frameworks/kguiaddons.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kguiaddons.nix
rename to pkgs/desktops/kde-5/frameworks/kguiaddons.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/khtml.nix b/pkgs/desktops/kde-5/frameworks/khtml.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/khtml.nix
rename to pkgs/desktops/kde-5/frameworks/khtml.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/ki18n.nix b/pkgs/desktops/kde-5/frameworks/ki18n.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/ki18n.nix
rename to pkgs/desktops/kde-5/frameworks/ki18n.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default-theme-breeze.patch b/pkgs/desktops/kde-5/frameworks/kiconthemes/default-theme-breeze.patch
similarity index 91%
rename from pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default-theme-breeze.patch
rename to pkgs/desktops/kde-5/frameworks/kiconthemes/default-theme-breeze.patch
index 5b3b15d5d5b..f7cb0ea3aac 100644
--- a/pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default-theme-breeze.patch
+++ b/pkgs/desktops/kde-5/frameworks/kiconthemes/default-theme-breeze.patch
@@ -6,7 +6,7 @@ Index: kiconthemes-5.17.0/src/kicontheme.cpp
// static
QString KIconTheme::defaultThemeName()
{
-- return QStringLiteral("oxygen");
+- return QStringLiteral("hicolor");
+ return QStringLiteral("breeze");
}
diff --git a/pkgs/desktops/kde-5/frameworks/kiconthemes/default.nix b/pkgs/desktops/kde-5/frameworks/kiconthemes/default.nix
new file mode 100644
index 00000000000..6102bb0d4b5
--- /dev/null
+++ b/pkgs/desktops/kde-5/frameworks/kiconthemes/default.nix
@@ -0,0 +1,12 @@
+{ kdeFramework, lib, copyPathsToStore
+, extra-cmake-modules
+, karchive, kconfigwidgets, ki18n, breeze-icons, kitemviews, qtsvg
+}:
+
+kdeFramework {
+ name = "kiconthemes";
+ meta = { maintainers = [ lib.maintainers.ttuegel ]; };
+ patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
+ nativeBuildInputs = [ extra-cmake-modules ];
+ propagatedBuildInputs = [ breeze-icons kconfigwidgets karchive ki18n kitemviews qtsvg ];
+}
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/series b/pkgs/desktops/kde-5/frameworks/kiconthemes/series
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/series
rename to pkgs/desktops/kde-5/frameworks/kiconthemes/series
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kidletime.nix b/pkgs/desktops/kde-5/frameworks/kidletime.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kidletime.nix
rename to pkgs/desktops/kde-5/frameworks/kidletime.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kimageformats.nix b/pkgs/desktops/kde-5/frameworks/kimageformats.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kimageformats.nix
rename to pkgs/desktops/kde-5/frameworks/kimageformats.nix
diff --git a/pkgs/desktops/kde-5/frameworks/kinit/default.nix b/pkgs/desktops/kde-5/frameworks/kinit/default.nix
new file mode 100644
index 00000000000..b965f761e92
--- /dev/null
+++ b/pkgs/desktops/kde-5/frameworks/kinit/default.nix
@@ -0,0 +1,15 @@
+{
+ kdeFramework, lib, copyPathsToStore,
+ extra-cmake-modules, kdoctools,
+ kconfig, kcrash, ki18n, kio, kservice, kwindowsystem
+}:
+
+kdeFramework {
+ name = "kinit";
+ meta = { maintainers = [ lib.maintainers.ttuegel ]; };
+ nativeBuildInputs = [ extra-cmake-modules kdoctools ];
+ propagatedBuildInputs = [
+ kconfig kcrash ki18n kio kservice kwindowsystem
+ ];
+ patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
+}
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kinit/kinit-libpath.patch b/pkgs/desktops/kde-5/frameworks/kinit/kinit-libpath.patch
similarity index 89%
rename from pkgs/desktops/kde-5/frameworks-5.22/kinit/kinit-libpath.patch
rename to pkgs/desktops/kde-5/frameworks/kinit/kinit-libpath.patch
index 47538fbe456..a5c76fca248 100644
--- a/pkgs/desktops/kde-5/frameworks-5.22/kinit/kinit-libpath.patch
+++ b/pkgs/desktops/kde-5/frameworks/kinit/kinit-libpath.patch
@@ -1,8 +1,8 @@
-Index: kinit-5.21.0/src/kdeinit/kinit.cpp
+Index: kinit-5.24.0/src/kdeinit/kinit.cpp
===================================================================
---- kinit-5.21.0.orig/src/kdeinit/kinit.cpp
-+++ kinit-5.21.0/src/kdeinit/kinit.cpp
-@@ -657,19 +657,16 @@ static pid_t launch(int argc, const char
+--- kinit-5.24.0.orig/src/kdeinit/kinit.cpp
++++ kinit-5.24.0/src/kdeinit/kinit.cpp
+@@ -672,19 +672,16 @@ static pid_t launch(int argc, const char
if (!libpath.isEmpty()) {
if (libpath_relative) {
diff --git a/pkgs/desktops/kde-5/frameworks/kinit/series b/pkgs/desktops/kde-5/frameworks/kinit/series
new file mode 100644
index 00000000000..576b8a935bf
--- /dev/null
+++ b/pkgs/desktops/kde-5/frameworks/kinit/series
@@ -0,0 +1,2 @@
+kinit-libpath.patch
+start_kdeinit-path.patch
diff --git a/pkgs/desktops/kde-5/frameworks/kinit/start_kdeinit-path.patch b/pkgs/desktops/kde-5/frameworks/kinit/start_kdeinit-path.patch
new file mode 100644
index 00000000000..fbecf9433f6
--- /dev/null
+++ b/pkgs/desktops/kde-5/frameworks/kinit/start_kdeinit-path.patch
@@ -0,0 +1,13 @@
+Index: kinit-5.24.0/src/start_kdeinit/start_kdeinit_wrapper.c
+===================================================================
+--- kinit-5.24.0.orig/src/start_kdeinit/start_kdeinit_wrapper.c
++++ kinit-5.24.0/src/start_kdeinit/start_kdeinit_wrapper.c
+@@ -23,7 +23,7 @@
+ #include
+ #include
+
+-#define EXECUTE CMAKE_INSTALL_FULL_LIBEXECDIR_KF5 "/start_kdeinit"
++#define EXECUTE "/var/setuid-wrappers/start_kdeinit"
+
+ #if KDEINIT_OOM_PROTECT
+
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kio/default.nix b/pkgs/desktops/kde-5/frameworks/kio/default.nix
similarity index 69%
rename from pkgs/desktops/kde-5/frameworks-5.22/kio/default.nix
rename to pkgs/desktops/kde-5/frameworks/kio/default.nix
index 7e4317a3f09..cb67c845903 100644
--- a/pkgs/desktops/kde-5/frameworks-5.22/kio/default.nix
+++ b/pkgs/desktops/kde-5/frameworks/kio/default.nix
@@ -3,14 +3,14 @@
, kbookmarks, kcompletion, kconfig, kconfigwidgets, kcoreaddons
, kdbusaddons, kdoctools, ki18n, kiconthemes, kitemviews
, kjobwidgets, knotifications, kservice, ktextwidgets, kwallet
-, kwidgetsaddons, kwindowsystem, kxmlgui, makeQtWrapper
+, kwidgetsaddons, kwindowsystem, kxmlgui
, qtscript, qtx11extras, solid
}:
kdeFramework {
name = "kio";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
- nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ];
+ nativeBuildInputs = [ extra-cmake-modules kdoctools ];
propagatedBuildInputs = [
acl karchive kbookmarks kcompletion kconfig kconfigwidgets kcoreaddons
kdbusaddons ki18n kiconthemes kitemviews kjobwidgets knotifications kservice
@@ -18,10 +18,4 @@ kdeFramework {
qtx11extras
];
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
- postInstall = ''
- wrapQtProgram "$out/bin/kcookiejar5"
- wrapQtProgram "$out/bin/ktelnetservice5"
- wrapQtProgram "$out/bin/ktrash5"
- wrapQtProgram "$out/bin/protocoltojson"
- '';
}
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kio/samba-search-path.patch b/pkgs/desktops/kde-5/frameworks/kio/samba-search-path.patch
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kio/samba-search-path.patch
rename to pkgs/desktops/kde-5/frameworks/kio/samba-search-path.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kio/series b/pkgs/desktops/kde-5/frameworks/kio/series
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kio/series
rename to pkgs/desktops/kde-5/frameworks/kio/series
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kitemmodels.nix b/pkgs/desktops/kde-5/frameworks/kitemmodels.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kitemmodels.nix
rename to pkgs/desktops/kde-5/frameworks/kitemmodels.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kitemviews.nix b/pkgs/desktops/kde-5/frameworks/kitemviews.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kitemviews.nix
rename to pkgs/desktops/kde-5/frameworks/kitemviews.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kjobwidgets.nix b/pkgs/desktops/kde-5/frameworks/kjobwidgets.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kjobwidgets.nix
rename to pkgs/desktops/kde-5/frameworks/kjobwidgets.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kjs.nix b/pkgs/desktops/kde-5/frameworks/kjs.nix
similarity index 50%
rename from pkgs/desktops/kde-5/frameworks-5.22/kjs.nix
rename to pkgs/desktops/kde-5/frameworks/kjs.nix
index 1a8750ea74f..abdc15ce8df 100644
--- a/pkgs/desktops/kde-5/frameworks-5.22/kjs.nix
+++ b/pkgs/desktops/kde-5/frameworks/kjs.nix
@@ -1,14 +1,10 @@
{ kdeFramework, lib
, extra-cmake-modules
, kdoctools
-, makeQtWrapper
}:
kdeFramework {
name = "kjs";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
- nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ];
- postInstall = ''
- wrapQtProgram "$out/bin/kjs5"
- '';
+ nativeBuildInputs = [ extra-cmake-modules kdoctools ];
}
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kjsembed.nix b/pkgs/desktops/kde-5/frameworks/kjsembed.nix
similarity index 51%
rename from pkgs/desktops/kde-5/frameworks-5.22/kjsembed.nix
rename to pkgs/desktops/kde-5/frameworks/kjsembed.nix
index 7611b831007..95bc02422f1 100644
--- a/pkgs/desktops/kde-5/frameworks-5.22/kjsembed.nix
+++ b/pkgs/desktops/kde-5/frameworks/kjsembed.nix
@@ -1,14 +1,10 @@
{ kdeFramework, lib, extra-cmake-modules, kdoctools, ki18n, kjs
-, makeQtWrapper, qtsvg
+, qtsvg
}:
kdeFramework {
name = "kjsembed";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
- nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ];
+ nativeBuildInputs = [ extra-cmake-modules kdoctools ];
propagatedBuildInputs = [ ki18n kjs qtsvg ];
- postInstall = ''
- wrapQtProgram "$out/bin/kjscmd5"
- wrapQtProgram "$out/bin/kjsconsole"
- '';
}
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kmediaplayer.nix b/pkgs/desktops/kde-5/frameworks/kmediaplayer.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kmediaplayer.nix
rename to pkgs/desktops/kde-5/frameworks/kmediaplayer.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/knewstuff.nix b/pkgs/desktops/kde-5/frameworks/knewstuff.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/knewstuff.nix
rename to pkgs/desktops/kde-5/frameworks/knewstuff.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/knotifications.nix b/pkgs/desktops/kde-5/frameworks/knotifications.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/knotifications.nix
rename to pkgs/desktops/kde-5/frameworks/knotifications.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/knotifyconfig.nix b/pkgs/desktops/kde-5/frameworks/knotifyconfig.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/knotifyconfig.nix
rename to pkgs/desktops/kde-5/frameworks/knotifyconfig.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpackage/allow-external-paths.patch b/pkgs/desktops/kde-5/frameworks/kpackage/allow-external-paths.patch
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kpackage/allow-external-paths.patch
rename to pkgs/desktops/kde-5/frameworks/kpackage/allow-external-paths.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpackage/default.nix b/pkgs/desktops/kde-5/frameworks/kpackage/default.nix
similarity index 69%
rename from pkgs/desktops/kde-5/frameworks-5.22/kpackage/default.nix
rename to pkgs/desktops/kde-5/frameworks/kpackage/default.nix
index 874bb380d73..a39a672574b 100644
--- a/pkgs/desktops/kde-5/frameworks-5.22/kpackage/default.nix
+++ b/pkgs/desktops/kde-5/frameworks/kpackage/default.nix
@@ -5,16 +5,12 @@
, kcoreaddons
, kdoctools
, ki18n
-, makeQtWrapper
}:
kdeFramework {
name = "kpackage";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
- nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ];
+ nativeBuildInputs = [ extra-cmake-modules kdoctools ];
propagatedBuildInputs = [ karchive kconfig kcoreaddons ki18n ];
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
- postInstall = ''
- wrapQtProgram "$out/bin/kpackagetool5"
- '';
}
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpackage/qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks/kpackage/qdiriterator-follow-symlinks.patch
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kpackage/qdiriterator-follow-symlinks.patch
rename to pkgs/desktops/kde-5/frameworks/kpackage/qdiriterator-follow-symlinks.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpackage/series b/pkgs/desktops/kde-5/frameworks/kpackage/series
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kpackage/series
rename to pkgs/desktops/kde-5/frameworks/kpackage/series
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kparts.nix b/pkgs/desktops/kde-5/frameworks/kparts.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kparts.nix
rename to pkgs/desktops/kde-5/frameworks/kparts.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpeople.nix b/pkgs/desktops/kde-5/frameworks/kpeople.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kpeople.nix
rename to pkgs/desktops/kde-5/frameworks/kpeople.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kplotting.nix b/pkgs/desktops/kde-5/frameworks/kplotting.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kplotting.nix
rename to pkgs/desktops/kde-5/frameworks/kplotting.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpty.nix b/pkgs/desktops/kde-5/frameworks/kpty.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kpty.nix
rename to pkgs/desktops/kde-5/frameworks/kpty.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kross.nix b/pkgs/desktops/kde-5/frameworks/kross.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kross.nix
rename to pkgs/desktops/kde-5/frameworks/kross.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/krunner.nix b/pkgs/desktops/kde-5/frameworks/krunner.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/krunner.nix
rename to pkgs/desktops/kde-5/frameworks/krunner.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kservice/default.nix b/pkgs/desktops/kde-5/frameworks/kservice/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kservice/default.nix
rename to pkgs/desktops/kde-5/frameworks/kservice/default.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kservice/no-canonicalize-path.patch b/pkgs/desktops/kde-5/frameworks/kservice/no-canonicalize-path.patch
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kservice/no-canonicalize-path.patch
rename to pkgs/desktops/kde-5/frameworks/kservice/no-canonicalize-path.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kservice/qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks/kservice/qdiriterator-follow-symlinks.patch
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kservice/qdiriterator-follow-symlinks.patch
rename to pkgs/desktops/kde-5/frameworks/kservice/qdiriterator-follow-symlinks.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kservice/series b/pkgs/desktops/kde-5/frameworks/kservice/series
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kservice/series
rename to pkgs/desktops/kde-5/frameworks/kservice/series
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/default.nix b/pkgs/desktops/kde-5/frameworks/ktexteditor/default.nix
similarity index 80%
rename from pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/default.nix
rename to pkgs/desktops/kde-5/frameworks/ktexteditor/default.nix
index e1a5e8b2339..a35af2e7fbf 100644
--- a/pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/default.nix
+++ b/pkgs/desktops/kde-5/frameworks/ktexteditor/default.nix
@@ -1,5 +1,5 @@
{ kdeFramework, lib, copyPathsToStore
-, extra-cmake-modules, makeQtWrapper, perl
+, extra-cmake-modules, perl
, karchive, kconfig, kguiaddons, kiconthemes, kparts
, libgit2
, qtscript, qtxmlpatterns
@@ -9,7 +9,7 @@
kdeFramework {
name = "ktexteditor";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
- nativeBuildInputs = [ extra-cmake-modules makeQtWrapper perl ];
+ nativeBuildInputs = [ extra-cmake-modules perl ];
propagatedBuildInputs = [
karchive kconfig kguiaddons ki18n kiconthemes kio kparts libgit2 qtscript
qtxmlpatterns sonnet
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/no-qcoreapplication.patch b/pkgs/desktops/kde-5/frameworks/ktexteditor/no-qcoreapplication.patch
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/no-qcoreapplication.patch
rename to pkgs/desktops/kde-5/frameworks/ktexteditor/no-qcoreapplication.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/series b/pkgs/desktops/kde-5/frameworks/ktexteditor/series
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/series
rename to pkgs/desktops/kde-5/frameworks/ktexteditor/series
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/ktextwidgets.nix b/pkgs/desktops/kde-5/frameworks/ktextwidgets.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/ktextwidgets.nix
rename to pkgs/desktops/kde-5/frameworks/ktextwidgets.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kunitconversion.nix b/pkgs/desktops/kde-5/frameworks/kunitconversion.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kunitconversion.nix
rename to pkgs/desktops/kde-5/frameworks/kunitconversion.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kwallet.nix b/pkgs/desktops/kde-5/frameworks/kwallet.nix
similarity index 69%
rename from pkgs/desktops/kde-5/frameworks-5.22/kwallet.nix
rename to pkgs/desktops/kde-5/frameworks/kwallet.nix
index 3bb99df39a7..f02c6138df7 100644
--- a/pkgs/desktops/kde-5/frameworks-5.22/kwallet.nix
+++ b/pkgs/desktops/kde-5/frameworks/kwallet.nix
@@ -1,18 +1,14 @@
{ kdeFramework, lib, extra-cmake-modules, kconfig, kconfigwidgets
, kcoreaddons , kdbusaddons, kdoctools, ki18n, kiconthemes
, knotifications , kservice, kwidgetsaddons, kwindowsystem, libgcrypt
-, makeQtWrapper }:
+}:
kdeFramework {
name = "kwallet";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
- nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ];
+ nativeBuildInputs = [ extra-cmake-modules kdoctools ];
propagatedBuildInputs = [
kconfig kconfigwidgets kcoreaddons kdbusaddons ki18n kiconthemes
knotifications kservice kwidgetsaddons kwindowsystem libgcrypt
];
- postInstall = ''
- wrapQtProgram "$out/bin/kwalletd5"
- wrapQtProgram "$out/bin/kwallet-query"
- '';
}
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kwayland.nix b/pkgs/desktops/kde-5/frameworks/kwayland.nix
similarity index 83%
rename from pkgs/desktops/kde-5/plasma-5.6/kwayland.nix
rename to pkgs/desktops/kde-5/frameworks/kwayland.nix
index 3c2788237fc..db332841308 100644
--- a/pkgs/desktops/kde-5/plasma-5.6/kwayland.nix
+++ b/pkgs/desktops/kde-5/frameworks/kwayland.nix
@@ -1,9 +1,9 @@
-{ plasmaPackage
+{ kdeFramework
, extra-cmake-modules
, wayland
}:
-plasmaPackage {
+kdeFramework {
name = "kwayland";
nativeBuildInputs = [
extra-cmake-modules
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kwidgetsaddons.nix b/pkgs/desktops/kde-5/frameworks/kwidgetsaddons.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kwidgetsaddons.nix
rename to pkgs/desktops/kde-5/frameworks/kwidgetsaddons.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kwindowsystem.nix b/pkgs/desktops/kde-5/frameworks/kwindowsystem.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kwindowsystem.nix
rename to pkgs/desktops/kde-5/frameworks/kwindowsystem.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kxmlgui.nix b/pkgs/desktops/kde-5/frameworks/kxmlgui.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kxmlgui.nix
rename to pkgs/desktops/kde-5/frameworks/kxmlgui.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kxmlrpcclient.nix b/pkgs/desktops/kde-5/frameworks/kxmlrpcclient.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kxmlrpcclient.nix
rename to pkgs/desktops/kde-5/frameworks/kxmlrpcclient.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/modemmanager-qt.nix b/pkgs/desktops/kde-5/frameworks/modemmanager-qt.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/modemmanager-qt.nix
rename to pkgs/desktops/kde-5/frameworks/modemmanager-qt.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/networkmanager-qt.nix b/pkgs/desktops/kde-5/frameworks/networkmanager-qt.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/networkmanager-qt.nix
rename to pkgs/desktops/kde-5/frameworks/networkmanager-qt.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/oxygen-icons5.nix b/pkgs/desktops/kde-5/frameworks/oxygen-icons5.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/oxygen-icons5.nix
rename to pkgs/desktops/kde-5/frameworks/oxygen-icons5.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/plasma-framework.nix b/pkgs/desktops/kde-5/frameworks/plasma-framework.nix
similarity index 77%
rename from pkgs/desktops/kde-5/frameworks-5.22/plasma-framework.nix
rename to pkgs/desktops/kde-5/frameworks/plasma-framework.nix
index 2a8762c814f..a4138148653 100644
--- a/pkgs/desktops/kde-5/frameworks-5.22/plasma-framework.nix
+++ b/pkgs/desktops/kde-5/frameworks/plasma-framework.nix
@@ -2,19 +2,16 @@
, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons, kdeclarative
, kdoctools, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio
, knotifications, kpackage, kservice, kwindowsystem, kxmlgui
-, makeQtWrapper, qtscript, qtx11extras
+, qtscript, qtx11extras
}:
kdeFramework {
name = "plasma-framework";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
- nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ];
+ nativeBuildInputs = [ extra-cmake-modules kdoctools ];
propagatedBuildInputs = [
kactivities karchive kconfig kconfigwidgets kcoreaddons kdbusaddons
kdeclarative kglobalaccel kguiaddons ki18n kiconthemes kio knotifications
kpackage kservice kwindowsystem kxmlgui qtscript qtx11extras
];
- postInstall = ''
- wrapQtProgram "$out/bin/plasmapkg2"
- '';
}
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/solid.nix b/pkgs/desktops/kde-5/frameworks/solid.nix
similarity index 57%
rename from pkgs/desktops/kde-5/frameworks-5.22/solid.nix
rename to pkgs/desktops/kde-5/frameworks/solid.nix
index f1db5c35c10..c4f580fe1c2 100644
--- a/pkgs/desktops/kde-5/frameworks-5.22/solid.nix
+++ b/pkgs/desktops/kde-5/frameworks/solid.nix
@@ -1,15 +1,11 @@
{ kdeFramework, lib
, extra-cmake-modules
-, makeQtWrapper
, qtdeclarative
}:
kdeFramework {
name = "solid";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
- nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
+ nativeBuildInputs = [ extra-cmake-modules ];
propagatedBuildInputs = [ qtdeclarative ];
- postInstall = ''
- wrapQtProgram "$out/bin/solid-hardware5"
- '';
}
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/sonnet.nix b/pkgs/desktops/kde-5/frameworks/sonnet.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/sonnet.nix
rename to pkgs/desktops/kde-5/frameworks/sonnet.nix
diff --git a/pkgs/desktops/kde-5/frameworks/srcs.nix b/pkgs/desktops/kde-5/frameworks/srcs.nix
new file mode 100644
index 00000000000..5c48ece1e99
--- /dev/null
+++ b/pkgs/desktops/kde-5/frameworks/srcs.nix
@@ -0,0 +1,581 @@
+# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh
+{ fetchurl, mirror }:
+
+{
+ attica = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/attica-5.24.0.tar.xz";
+ sha256 = "0d368gmds7m7k5pnn625wqsij38cvxk1gkm4zv24phnk9f67v7cw";
+ name = "attica-5.24.0.tar.xz";
+ };
+ };
+ baloo = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/baloo-5.24.0.tar.xz";
+ sha256 = "1ayfdg6j9lvas17ryjdv4a0kaj6vw3bxfy2x9nadl0gkc9pak4nh";
+ name = "baloo-5.24.0.tar.xz";
+ };
+ };
+ bluez-qt = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/bluez-qt-5.24.0.tar.xz";
+ sha256 = "0gy0m7lcwwklf021l5i3v7j0cl7qz7cgvzrwpj87ix3kyw5xs80z";
+ name = "bluez-qt-5.24.0.tar.xz";
+ };
+ };
+ breeze-icons = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/breeze-icons-5.24.0.tar.xz";
+ sha256 = "1dh7bijx99sdb3vn6394wmm5cq0fvvmz8h17sx4hakmbga849cx2";
+ name = "breeze-icons-5.24.0.tar.xz";
+ };
+ };
+ extra-cmake-modules = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/extra-cmake-modules-5.24.0.tar.xz";
+ sha256 = "01m12ml529pwr2sal951r5z6yb1rwbpid1y4k14nlk3xqgmdakwa";
+ name = "extra-cmake-modules-5.24.0.tar.xz";
+ };
+ };
+ frameworkintegration = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/frameworkintegration-5.24.0.tar.xz";
+ sha256 = "0brqgq05m06d98qqvyh30727f5z7hlzxgqysfhfvqzcf3x7f6yzj";
+ name = "frameworkintegration-5.24.0.tar.xz";
+ };
+ };
+ kactivities = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kactivities-5.24.0.tar.xz";
+ sha256 = "0s8g43zk6h35bq1am1nnhj0qvmhd6kz42gs8l7ybga0367jghzhf";
+ name = "kactivities-5.24.0.tar.xz";
+ };
+ };
+ kactivities-stats = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kactivities-stats-5.24.0.tar.xz";
+ sha256 = "1z3xvpifxbd05b2xaxxyiypcpid7jgjb1qpwiyjj1gnfp4rjmzpc";
+ name = "kactivities-stats-5.24.0.tar.xz";
+ };
+ };
+ kapidox = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kapidox-5.24.0.tar.xz";
+ sha256 = "19a7alvn71nxflsyi7y3hghx1iw04qqc77qy54mcxcpkiyvpsggf";
+ name = "kapidox-5.24.0.tar.xz";
+ };
+ };
+ karchive = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/karchive-5.24.0.tar.xz";
+ sha256 = "1n5nfhrfvqnrdjgjjy7arqik4fya5bp3dvxa16mlhqr19azkavzq";
+ name = "karchive-5.24.0.tar.xz";
+ };
+ };
+ kauth = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kauth-5.24.0.tar.xz";
+ sha256 = "14sjjfgl3arqyqcr77w9qhpnd8mrnh53r5rfss6bvlk26bmihs49";
+ name = "kauth-5.24.0.tar.xz";
+ };
+ };
+ kbookmarks = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kbookmarks-5.24.0.tar.xz";
+ sha256 = "10d8dnhvbrwp0dbmz93cqfdff6ir8iy3yiwaf9ihj6ma124qlyjn";
+ name = "kbookmarks-5.24.0.tar.xz";
+ };
+ };
+ kcmutils = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kcmutils-5.24.0.tar.xz";
+ sha256 = "0aws1c76s6wbp0xpr6qv6cfwq8dw82v00pkf9gy84sbxknwjnizk";
+ name = "kcmutils-5.24.0.tar.xz";
+ };
+ };
+ kcodecs = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kcodecs-5.24.0.tar.xz";
+ sha256 = "1qpzjh3qc2zz80j2bmlinipbispms14k9bmqw8v61zhi6in9z14c";
+ name = "kcodecs-5.24.0.tar.xz";
+ };
+ };
+ kcompletion = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kcompletion-5.24.0.tar.xz";
+ sha256 = "1qln0v31gn86kzwhnkijr1ydf129n32jmiybbckrp4w6hyx6xfxv";
+ name = "kcompletion-5.24.0.tar.xz";
+ };
+ };
+ kconfig = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kconfig-5.24.0.tar.xz";
+ sha256 = "1dc2i6icyigw1j6qxgdza6j2g8afh390qmxsa2a54mwl84fkfmxv";
+ name = "kconfig-5.24.0.tar.xz";
+ };
+ };
+ kconfigwidgets = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kconfigwidgets-5.24.0.tar.xz";
+ sha256 = "0v25r50gh5i984lzlv0rradghglcfqf0gsfmnkn23h87b86fm9l2";
+ name = "kconfigwidgets-5.24.0.tar.xz";
+ };
+ };
+ kcoreaddons = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kcoreaddons-5.24.0.tar.xz";
+ sha256 = "06sx7by3nvaridnavj5p0bxv4nh47n708jlacfw8ydaikmd9i03h";
+ name = "kcoreaddons-5.24.0.tar.xz";
+ };
+ };
+ kcrash = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kcrash-5.24.0.tar.xz";
+ sha256 = "1lahgfwlp9b5rsl244kzp7rsl4ybv1q4qlvpv0xxz5ygssk48l0w";
+ name = "kcrash-5.24.0.tar.xz";
+ };
+ };
+ kdbusaddons = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kdbusaddons-5.24.0.tar.xz";
+ sha256 = "183nxqrhz4qk4qfp1w4an0scp2dvfqcaqbpg4cgbgk0z590q0pkk";
+ name = "kdbusaddons-5.24.0.tar.xz";
+ };
+ };
+ kdeclarative = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kdeclarative-5.24.0.tar.xz";
+ sha256 = "00ik9q1r6y6g5rkdq96yczgrxmcg85x00lipyljvc3x6xw6bixbz";
+ name = "kdeclarative-5.24.0.tar.xz";
+ };
+ };
+ kded = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kded-5.24.0.tar.xz";
+ sha256 = "0ngpxdxb596myn5r4kjxahx195bwklq33yvgjvcbxi2clg2wccaj";
+ name = "kded-5.24.0.tar.xz";
+ };
+ };
+ kdelibs4support = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/portingAids/kdelibs4support-5.24.0.tar.xz";
+ sha256 = "12sis63mq6i372bhx64x8y0pw6czrv64hdhjscx27cx65a4ir451";
+ name = "kdelibs4support-5.24.0.tar.xz";
+ };
+ };
+ kdesignerplugin = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kdesignerplugin-5.24.0.tar.xz";
+ sha256 = "0i0s8pwwhwh5hyyvkv0cnj0yyv0g5bnm5xw18knv2yagiy4bvb2j";
+ name = "kdesignerplugin-5.24.0.tar.xz";
+ };
+ };
+ kdesu = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kdesu-5.24.0.tar.xz";
+ sha256 = "1ivcnhgvq75xvl0w9g7m45qzallz42ijaq0n1ap09lpdfmjbnrxk";
+ name = "kdesu-5.24.0.tar.xz";
+ };
+ };
+ kdewebkit = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kdewebkit-5.24.0.tar.xz";
+ sha256 = "1xq36zv7vnllhqbisl6kcna8z6qzlvy29a47g0hbzgl8rc93qskf";
+ name = "kdewebkit-5.24.0.tar.xz";
+ };
+ };
+ kdnssd = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kdnssd-5.24.0.tar.xz";
+ sha256 = "01b650g031apxc3vd2m91g2fxqk9l8ap67z6rafniphfwy8i0d5m";
+ name = "kdnssd-5.24.0.tar.xz";
+ };
+ };
+ kdoctools = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kdoctools-5.24.0.tar.xz";
+ sha256 = "1r129kpq0d11b9l87cqbal6fm5ycwhsps1g3r1a7jsxz70scz4ri";
+ name = "kdoctools-5.24.0.tar.xz";
+ };
+ };
+ kemoticons = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kemoticons-5.24.0.tar.xz";
+ sha256 = "0gmc52k5jb553jvzxwsq79v5y87kgav8i5qqv4bqc9yl7p866zhn";
+ name = "kemoticons-5.24.0.tar.xz";
+ };
+ };
+ kfilemetadata = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kfilemetadata-5.24.0.tar.xz";
+ sha256 = "02n9qhpr0jlwdgdbid0k34abhs3bzhlsa56ybl5dq1aib6izk1sy";
+ name = "kfilemetadata-5.24.0.tar.xz";
+ };
+ };
+ kglobalaccel = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kglobalaccel-5.24.0.tar.xz";
+ sha256 = "123v0ld1q88hbm3d0mqgq6lcivfkqh7pbz4hb4n76ab5v43qc15c";
+ name = "kglobalaccel-5.24.0.tar.xz";
+ };
+ };
+ kguiaddons = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kguiaddons-5.24.0.tar.xz";
+ sha256 = "0ig96ah20ybg5rwpswj9va2klvkh2q4amwxmgy3z4niwfsm2g3ic";
+ name = "kguiaddons-5.24.0.tar.xz";
+ };
+ };
+ khtml = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/portingAids/khtml-5.24.0.tar.xz";
+ sha256 = "0f19m8ycaa41p61i0j43gafn364abral8dbiqhr0qcj33nsa4134";
+ name = "khtml-5.24.0.tar.xz";
+ };
+ };
+ ki18n = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/ki18n-5.24.0.tar.xz";
+ sha256 = "0cw24spmwsqa3ppkw03cm6yjd3sfll0dbbk2ya76fd4nw9hb00dv";
+ name = "ki18n-5.24.0.tar.xz";
+ };
+ };
+ kiconthemes = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kiconthemes-5.24.0.tar.xz";
+ sha256 = "1k5zig2n6wzfyv6pc8dpas2862mxjyxxza00m31myrfw5i1a1h6m";
+ name = "kiconthemes-5.24.0.tar.xz";
+ };
+ };
+ kidletime = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kidletime-5.24.0.tar.xz";
+ sha256 = "09jsj0pj27h93nr8v46savs6b93h8frydinfr7wlijkvpsl02jb4";
+ name = "kidletime-5.24.0.tar.xz";
+ };
+ };
+ kimageformats = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kimageformats-5.24.0.tar.xz";
+ sha256 = "12mhgckmhnvcnm8k7mk15mipxrnm7i9ip7ykbjh8nxjiwyk1pmwc";
+ name = "kimageformats-5.24.0.tar.xz";
+ };
+ };
+ kinit = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kinit-5.24.0.tar.xz";
+ sha256 = "1i7l6gid5hrrfglw1c461gpjg51dwz7cl4lx7ll8vz2ha8mz4d3n";
+ name = "kinit-5.24.0.tar.xz";
+ };
+ };
+ kio = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kio-5.24.0.tar.xz";
+ sha256 = "0zncj9yf8zaylazlwvirylpk9vki3j889b1x2s0aav54vvj7vdi5";
+ name = "kio-5.24.0.tar.xz";
+ };
+ };
+ kitemmodels = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kitemmodels-5.24.0.tar.xz";
+ sha256 = "1s1p4nw1pqdzbdwvjnka17p9avf00wadr437p4f96md1lvh3sh69";
+ name = "kitemmodels-5.24.0.tar.xz";
+ };
+ };
+ kitemviews = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kitemviews-5.24.0.tar.xz";
+ sha256 = "0y3fx9hk1x27arrmwfzq783a44cs7p8dpmhxrwzh0di4mwa8jafw";
+ name = "kitemviews-5.24.0.tar.xz";
+ };
+ };
+ kjobwidgets = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kjobwidgets-5.24.0.tar.xz";
+ sha256 = "1mcvrz66xcqjgbp08zpqsf943cm462wbqm5gh719p9s25hx8hwrc";
+ name = "kjobwidgets-5.24.0.tar.xz";
+ };
+ };
+ kjs = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/portingAids/kjs-5.24.0.tar.xz";
+ sha256 = "1qd5sdfrdg7id0g5mwf3ijwlfvh3g36kwnckw6kwns1nf4q6gwlz";
+ name = "kjs-5.24.0.tar.xz";
+ };
+ };
+ kjsembed = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/portingAids/kjsembed-5.24.0.tar.xz";
+ sha256 = "1nx8ch8mzd1jyx8pd46364ij0bsbsclbipbgr6jm9aak3n13b0nw";
+ name = "kjsembed-5.24.0.tar.xz";
+ };
+ };
+ kmediaplayer = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/portingAids/kmediaplayer-5.24.0.tar.xz";
+ sha256 = "147xrffkvkyv3h8ighc1vlwksysfrqc0g55k8zrd72l6r0kjjh0p";
+ name = "kmediaplayer-5.24.0.tar.xz";
+ };
+ };
+ knewstuff = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/knewstuff-5.24.0.tar.xz";
+ sha256 = "0xdv3wh3100vzsx8p2zihy1dvh0wzfmrjkjq71v8igwz5d291zsj";
+ name = "knewstuff-5.24.0.tar.xz";
+ };
+ };
+ knotifications = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/knotifications-5.24.0.tar.xz";
+ sha256 = "0qryp41phnpx4r9wa6rfhmnzy7nxl0ijnyrafadf2n2xb53ipkpa";
+ name = "knotifications-5.24.0.tar.xz";
+ };
+ };
+ knotifyconfig = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/knotifyconfig-5.24.0.tar.xz";
+ sha256 = "1dij841fnqia4p44x2wnpdvl8cn3nkj833y0fah50fmipjc8r70b";
+ name = "knotifyconfig-5.24.0.tar.xz";
+ };
+ };
+ kpackage = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kpackage-5.24.0.tar.xz";
+ sha256 = "03aqzkpqz3c1v4qgwfbs3ncdbapiyg7psrkhxqv3z48rklavk1ri";
+ name = "kpackage-5.24.0.tar.xz";
+ };
+ };
+ kparts = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kparts-5.24.0.tar.xz";
+ sha256 = "0z7qr93aq02i7g7cxgypx2rzlnsvbsx9cjblb0ijmad1nb8w3mix";
+ name = "kparts-5.24.0.tar.xz";
+ };
+ };
+ kpeople = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kpeople-5.24.0.tar.xz";
+ sha256 = "0iknzkj23y927xh24kw5sjxyirhy6pkmfcmmgwzd78rba8a54qp2";
+ name = "kpeople-5.24.0.tar.xz";
+ };
+ };
+ kplotting = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kplotting-5.24.0.tar.xz";
+ sha256 = "0gpypq9kh4b5s6dc7py3m117k3nbxczsfkxgxd9zxvr35kig7ya2";
+ name = "kplotting-5.24.0.tar.xz";
+ };
+ };
+ kpty = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kpty-5.24.0.tar.xz";
+ sha256 = "1ybvdzqpa53kkki9p5da0ff9x3c63rmksk7865wqwlgy8apzi2fs";
+ name = "kpty-5.24.0.tar.xz";
+ };
+ };
+ kross = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/portingAids/kross-5.24.0.tar.xz";
+ sha256 = "0f29dpmfcj173vqnmrbpvdmfmzzbfsds1lbl546qfx9a5acdpf2p";
+ name = "kross-5.24.0.tar.xz";
+ };
+ };
+ krunner = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/krunner-5.24.0.tar.xz";
+ sha256 = "0ff87ijjd47jxf6zw2ggqgngnbyx1rj59wdfgy5wbi3acws6bafl";
+ name = "krunner-5.24.0.tar.xz";
+ };
+ };
+ kservice = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kservice-5.24.0.tar.xz";
+ sha256 = "0w0nsg64d6xhgijr2vh0j5p544qi0q55jpqa9v9mv956zrrdssdk";
+ name = "kservice-5.24.0.tar.xz";
+ };
+ };
+ ktexteditor = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/ktexteditor-5.24.0.tar.xz";
+ sha256 = "1ykj1kvm7k1vxb1w235d5hp2swwdqjyp2y4c3pxbvkn999h9x5q5";
+ name = "ktexteditor-5.24.0.tar.xz";
+ };
+ };
+ ktextwidgets = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/ktextwidgets-5.24.0.tar.xz";
+ sha256 = "1q10xav2gkii6s3m31c9xvxf1988l7k2lpib6pyhgsidflmwjm02";
+ name = "ktextwidgets-5.24.0.tar.xz";
+ };
+ };
+ kunitconversion = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kunitconversion-5.24.0.tar.xz";
+ sha256 = "03dfjn4lm6sl2zcdrvw0b9irzvkyc2w2j5xixag5j8nw373742h8";
+ name = "kunitconversion-5.24.0.tar.xz";
+ };
+ };
+ kwallet = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kwallet-5.24.0.tar.xz";
+ sha256 = "0zad5h4vsvcl2xv3vxsjwh42b71xbp6x6rj8cvmw8szr2rzz9gsx";
+ name = "kwallet-5.24.0.tar.xz";
+ };
+ };
+ kwayland = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kwayland-5.24.0.tar.xz";
+ sha256 = "1h5anbqrxcl1s8kx1l53vcsfr8ifamcjqd47dk8a7lwr1ga6myq2";
+ name = "kwayland-5.24.0.tar.xz";
+ };
+ };
+ kwidgetsaddons = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kwidgetsaddons-5.24.0.tar.xz";
+ sha256 = "1kppx0ppfhnb6q6sijs2dffyar86wkkx8miqavsjsgw1l2wiymcx";
+ name = "kwidgetsaddons-5.24.0.tar.xz";
+ };
+ };
+ kwindowsystem = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kwindowsystem-5.24.0.tar.xz";
+ sha256 = "0w5ym8msl80v3q65253pdpj9f1fmb658rnndlbkrgpmm1rv1n6dz";
+ name = "kwindowsystem-5.24.0.tar.xz";
+ };
+ };
+ kxmlgui = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kxmlgui-5.24.0.tar.xz";
+ sha256 = "1qhixldhhcbklmrpjh67440h1rrzqy70h57hw6ialjdsr3pl6ihp";
+ name = "kxmlgui-5.24.0.tar.xz";
+ };
+ };
+ kxmlrpcclient = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kxmlrpcclient-5.24.0.tar.xz";
+ sha256 = "06ap6ipzqimz1rfrcr7z8zc7idy7sg4a97dws7h52i34ms7jqnc8";
+ name = "kxmlrpcclient-5.24.0.tar.xz";
+ };
+ };
+ modemmanager-qt = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/modemmanager-qt-5.24.0.tar.xz";
+ sha256 = "0khz5bf84xxa8aqpzwb6x839xx6dbiadwqhyj7cvgha65fh2xinh";
+ name = "modemmanager-qt-5.24.0.tar.xz";
+ };
+ };
+ networkmanager-qt = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/networkmanager-qt-5.24.0.tar.xz";
+ sha256 = "11wy0ds0hqbba900ggkcxjfqc9n65xlzc3h1zv9433nn5d75v6fy";
+ name = "networkmanager-qt-5.24.0.tar.xz";
+ };
+ };
+ oxygen-icons5 = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/oxygen-icons5-5.24.0.tar.xz";
+ sha256 = "1c7spjbzk04725vv0ly7vmyvwa96mfa5ki2pm146ld4888a896wm";
+ name = "oxygen-icons5-5.24.0.tar.xz";
+ };
+ };
+ plasma-framework = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/plasma-framework-5.24.0.tar.xz";
+ sha256 = "0981vm00541dzihlr1fsax05biwp2ddpwjrmvnfysx5jagdc65cb";
+ name = "plasma-framework-5.24.0.tar.xz";
+ };
+ };
+ solid = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/solid-5.24.0.tar.xz";
+ sha256 = "00wvsxcnvhdx7ijzpcz5wny2ypkxr1drdpr4yvawgpwa678l1107";
+ name = "solid-5.24.0.tar.xz";
+ };
+ };
+ sonnet = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/sonnet-5.24.0.tar.xz";
+ sha256 = "152xz7fb1iwhb5w1n4xqvc648iaxi0inrl4kavxcsir61das1xyl";
+ name = "sonnet-5.24.0.tar.xz";
+ };
+ };
+ threadweaver = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/threadweaver-5.24.0.tar.xz";
+ sha256 = "02g60zr9cc4bg1p90giich4n0qvqaiakz0y94qrnyj9f7fg0yksl";
+ name = "threadweaver-5.24.0.tar.xz";
+ };
+ };
+}
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/threadweaver.nix b/pkgs/desktops/kde-5/frameworks/threadweaver.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/threadweaver.nix
rename to pkgs/desktops/kde-5/frameworks/threadweaver.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/default.nix b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/default.nix
deleted file mode 100644
index bb65e1af937..00000000000
--- a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/default.nix
+++ /dev/null
@@ -1,57 +0,0 @@
-{ plasmaPackage, lib, copyPathsToStore
-, extra-cmake-modules, kdoctools
-, baloo, kactivities, kcmutils, kconfig, kcrash, kdbusaddons, kdeclarative
-, kdelibs4support, kdesu, kglobalaccel, kidletime, kjsembed, knewstuff
-, knotifyconfig, kpackage, krunner, ktexteditor, ktextwidgets, kwallet, kwayland
-, kwin, kxmlrpcclient, libkscreen, libksysguard, networkmanager-qt, phonon
-, plasma-framework, qtquickcontrols, qtscript, qtx11extras, solid
-, isocodes, libdbusmenu, libSM, libXcursor, pam, wayland
-}:
-
-plasmaPackage {
- name = "plasma-workspace";
-
- nativeBuildInputs = [
- extra-cmake-modules
- kdoctools
- ];
- buildInputs = [
- baloo kactivities kcmutils kconfig kcrash kdbusaddons kdeclarative
- kdelibs4support kdesu kglobalaccel kidletime kjsembed knewstuff
- knotifyconfig kpackage krunner ktexteditor ktextwidgets kwallet kwayland
- kwin kxmlrpcclient libkscreen libksysguard networkmanager-qt phonon
- plasma-framework qtquickcontrols qtscript qtx11extras solid
- isocodes libdbusmenu libSM libXcursor pam wayland
- ];
-
- patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
-
- postPatch = ''
- substituteInPlace startkde/kstartupconfig/kstartupconfig.cpp \
- --replace kdostartupconfig5 $out/bin/kdostartupconfig5
- '';
-
- postInstall = ''
- rm "$out/bin/startkde"
- rm "$out/bin/startplasmacompositor"
- rm "$out/lib/libexec/startplasma"
- rm -r "$out/share/wayland-sessions"
- '';
-
- preFixup = ''
- wrapQtProgram $out/bin/kcheckrunning
- wrapQtProgram $out/bin/kcminit
- wrapQtProgram $out/bin/kcminit_startup
- wrapQtProgram $out/bin/kdostartupconfig5
- wrapQtProgram $out/bin/klipper
- wrapQtProgram $out/bin/krunner
- wrapQtProgram $out/bin/ksmserver
- wrapQtProgram $out/bin/ksplashqml
- wrapQtProgram $out/bin/kstartupconfig5
- wrapQtProgram $out/bin/kuiserver5
- wrapQtProgram $out/bin/plasmashell
- wrapQtProgram $out/bin/plasmawindowed
- wrapQtProgram $out/bin/systemmonitor
- wrapQtProgram $out/bin/xembedsniproxy
- '';
-}
diff --git a/pkgs/desktops/kde-5/plasma-5.6/powerdevil.nix b/pkgs/desktops/kde-5/plasma-5.6/powerdevil.nix
deleted file mode 100644
index 8f3b354b947..00000000000
--- a/pkgs/desktops/kde-5/plasma-5.6/powerdevil.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{ plasmaPackage, extra-cmake-modules, kdoctools, kactivities
-, kauth, kconfig, kdbusaddons, kdelibs4support, kglobalaccel, ki18n
-, kidletime, kio, knotifyconfig, kwayland, libkscreen, plasma-workspace
-, qtx11extras, solid, udev
-}:
-
-plasmaPackage {
- name = "powerdevil";
- nativeBuildInputs = [
- extra-cmake-modules
- kdoctools
- ];
- propagatedBuildInputs = [
- kconfig kdbusaddons knotifyconfig solid udev kactivities kauth
- kdelibs4support kglobalaccel ki18n kio kidletime kwayland libkscreen
- plasma-workspace qtx11extras
- ];
-}
diff --git a/pkgs/desktops/kde-5/plasma-5.6/srcs.nix b/pkgs/desktops/kde-5/plasma-5.6/srcs.nix
deleted file mode 100644
index 8307730a550..00000000000
--- a/pkgs/desktops/kde-5/plasma-5.6/srcs.nix
+++ /dev/null
@@ -1,333 +0,0 @@
-# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh
-{ fetchurl, mirror }:
-
-{
- bluedevil = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/bluedevil-5.6.5.tar.xz";
- sha256 = "0zf9m02m039g2cpzaij56mnnffcq9bqa40xyq30r9sx5ji1wbnhx";
- name = "bluedevil-5.6.5.tar.xz";
- };
- };
- breeze = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/breeze-5.6.5.tar.xz";
- sha256 = "0wzzixhpij8zb0jq6lsl7h3q22hfzpfz98pddlhnkf27dgmbd7zd";
- name = "breeze-5.6.5.tar.xz";
- };
- };
- breeze-grub = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/breeze-grub-5.6.5.tar.xz";
- sha256 = "1khr8bqid58jq150snpszg3w1rnjh35y5fi20gwwa60hka556978";
- name = "breeze-grub-5.6.5.tar.xz";
- };
- };
- breeze-gtk = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/breeze-gtk-5.6.5.tar.xz";
- sha256 = "0k4510jw89i1spb6gckf190mrspasxnwfwqddaxxrjdan4qklcbv";
- name = "breeze-gtk-5.6.5.tar.xz";
- };
- };
- breeze-plymouth = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/breeze-plymouth-5.6.5.tar.xz";
- sha256 = "05ajv326ylbja9483k0ka6flqpk341knfaxgq056dfqlmiaq2cjp";
- name = "breeze-plymouth-5.6.5.tar.xz";
- };
- };
- discover = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/discover-5.6.5.tar.xz";
- sha256 = "1k5jlq329k5scljdadj8yny5wxhz14c7jxx5wagazb28fq6yf3vj";
- name = "discover-5.6.5.tar.xz";
- };
- };
- kactivitymanagerd = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/kactivitymanagerd-5.6.5.tar.xz";
- sha256 = "1l0iyh6palbbw59xv6mhjv4y6c3v2xlqqk95rhhfcbpaq0kv0abh";
- name = "kactivitymanagerd-5.6.5.tar.xz";
- };
- };
- kde-cli-tools = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/kde-cli-tools-5.6.5.tar.xz";
- sha256 = "0fmlckjpc202n4ahc69mqjn6iv3xd0z9macvacx5fi2spc1i60kk";
- name = "kde-cli-tools-5.6.5.tar.xz";
- };
- };
- kdecoration = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/kdecoration-5.6.5.tar.xz";
- sha256 = "084a2ip5x15f9sdlh7icnbvbsczkc7h71qd4zzr7z9lmqk1b3sp1";
- name = "kdecoration-5.6.5.tar.xz";
- };
- };
- kde-gtk-config = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/kde-gtk-config-5.6.5.tar.xz";
- sha256 = "06nk5z1aqiwyd3vhpnmfjjpmsq6r32gx6dgij2la3c2y552d3hlx";
- name = "kde-gtk-config-5.6.5.tar.xz";
- };
- };
- kdeplasma-addons = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/kdeplasma-addons-5.6.5.tar.xz";
- sha256 = "19ijpvra2f5dbcjdl0g2lq0rivh6cvmgpryvsyhjyk740ys915kz";
- name = "kdeplasma-addons-5.6.5.tar.xz";
- };
- };
- kgamma5 = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/kgamma5-5.6.5.tar.xz";
- sha256 = "0qic1alkdzl6gxacm3i3m8xb5dxpd1hbixd8ixr1cabbviash1nw";
- name = "kgamma5-5.6.5.tar.xz";
- };
- };
- khotkeys = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/khotkeys-5.6.5.tar.xz";
- sha256 = "1zsdpdibv2pnm6vgj28d09cpss8nizmacrnxxlilvizhmiyvrpla";
- name = "khotkeys-5.6.5.tar.xz";
- };
- };
- kinfocenter = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/kinfocenter-5.6.5.tar.xz";
- sha256 = "1ci9avkbix6366gvfc3vpwp3r5hwabk1vl29ajl40agrs7kgs9cl";
- name = "kinfocenter-5.6.5.tar.xz";
- };
- };
- kmenuedit = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/kmenuedit-5.6.5.tar.xz";
- sha256 = "1fxnmb07shbpnhwk7aw5lspaih79ldkkx69bwgrv99c2h7gbsbhg";
- name = "kmenuedit-5.6.5.tar.xz";
- };
- };
- kscreen = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/kscreen-5.6.5.tar.xz";
- sha256 = "16cnf0kmvp67jid3y4w2b2dxzidx8k8zld280svp249wwjyh3wzr";
- name = "kscreen-5.6.5.tar.xz";
- };
- };
- kscreenlocker = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/kscreenlocker-5.6.5.tar.xz";
- sha256 = "01hbjvkkhjb63ij3xqyg49s3w8ig68pqrback7r5iv1hsbybxw66";
- name = "kscreenlocker-5.6.5.tar.xz";
- };
- };
- ksshaskpass = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/ksshaskpass-5.6.5.tar.xz";
- sha256 = "1qaja7alyx9czczkg2cpbc24jdvmsp8f9djsavgb650k6mv5h4va";
- name = "ksshaskpass-5.6.5.tar.xz";
- };
- };
- ksysguard = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/ksysguard-5.6.5.tar.xz";
- sha256 = "0ji4q8js5g57vrirbq6nah9gwp6bzcn986pjig1l0q5sm7al95jq";
- name = "ksysguard-5.6.5.tar.xz";
- };
- };
- kwallet-pam = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/kwallet-pam-5.6.5.tar.xz";
- sha256 = "0ad2q9kwnaabv6klazg17ilsiy0ckkkcay3q2d51crn1d8kbv3gm";
- name = "kwallet-pam-5.6.5.tar.xz";
- };
- };
- kwayland = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/kwayland-5.6.5.tar.xz";
- sha256 = "1niac5g7jdyl0b840njppnw8lbl08a6g4npyxhplvr6mv744h6b9";
- name = "kwayland-5.6.5.tar.xz";
- };
- };
- kwayland-integration = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/kwayland-integration-5.6.5.tar.xz";
- sha256 = "1sf6d9062q191q5b4bngk9abnfx3ys8fmkgc04xp8pl5zq5f2m7h";
- name = "kwayland-integration-5.6.5.tar.xz";
- };
- };
- kwin = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/kwin-5.6.5.tar.xz";
- sha256 = "113q9m373wmi2dmi2v6im74gd6ava7xrwapkcxq0phyr53w5ihz4";
- name = "kwin-5.6.5.tar.xz";
- };
- };
- kwrited = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/kwrited-5.6.5.tar.xz";
- sha256 = "19ra2pbr34ap309vxbssrkkykf2vki0829a6bqhgc482yw582k1r";
- name = "kwrited-5.6.5.tar.xz";
- };
- };
- libkscreen = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/libkscreen-5.6.5.tar.xz";
- sha256 = "1651cj5mkpx7x43na4n9qvvm8r9zadfm3fmpvrv92idf7f3jg4hr";
- name = "libkscreen-5.6.5.tar.xz";
- };
- };
- libksysguard = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/libksysguard-5.6.5.tar.xz";
- sha256 = "048hfxsjddqmw31w2cdzw72xwxrrnx0v6zzxq9514b5j7ak4f9jc";
- name = "libksysguard-5.6.5.tar.xz";
- };
- };
- milou = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/milou-5.6.5.tar.xz";
- sha256 = "066k7dpjs5nrimqxfxk1krc8w771nkqjb9dinqqqrl3njn7rwvxf";
- name = "milou-5.6.5.tar.xz";
- };
- };
- oxygen = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/oxygen-5.6.5.tar.xz";
- sha256 = "12qz947xy6xr8hzm46dy6m5hp8chmzc8ayczyy84xw5239piqa1c";
- name = "oxygen-5.6.5.tar.xz";
- };
- };
- plasma-desktop = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/plasma-desktop-5.6.5.tar.xz";
- sha256 = "1lxvnymiivkrch7z64i5vkck5723jvv5la9hrqdlzjl8qjp2gfk6";
- name = "plasma-desktop-5.6.5.tar.xz";
- };
- };
- plasma-integration = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/plasma-integration-5.6.5.tar.xz";
- sha256 = "1s473jg7xjw4jma7nn770q3cxj01d7bm2kf45fra5lbj6ipp3s20";
- name = "plasma-integration-5.6.5.tar.xz";
- };
- };
- plasma-mediacenter = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/plasma-mediacenter-5.6.5.tar.xz";
- sha256 = "056wzqqhvkc6d53040g0pn22arjz9pcxdgqr8x0bqps5cq7gf846";
- name = "plasma-mediacenter-5.6.5.tar.xz";
- };
- };
- plasma-nm = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/plasma-nm-5.6.5.tar.xz";
- sha256 = "1cmrd06l6mp478ixnwj93brkfz8gaw7081df4r4x6ql4vrga3a80";
- name = "plasma-nm-5.6.5.tar.xz";
- };
- };
- plasma-pa = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/plasma-pa-5.6.5.tar.xz";
- sha256 = "19b43mwjhvvi1wpa68c1g2mk76rqlfg0h8gf51xgd7y3qjv462h0";
- name = "plasma-pa-5.6.5.tar.xz";
- };
- };
- plasma-sdk = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/plasma-sdk-5.6.5.tar.xz";
- sha256 = "0v92b03ff40wkdps88aqkihs1cx4ggwg43x2cm6cdsa3gc84vyn8";
- name = "plasma-sdk-5.6.5.tar.xz";
- };
- };
- plasma-workspace = {
- version = "5.6.5.1";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/plasma-workspace-5.6.5.1.tar.xz";
- sha256 = "158lmnvvqbl3k5485yirw22vqb15qxfd1m0gc83p0hsi2lv7v7j5";
- name = "plasma-workspace-5.6.5.1.tar.xz";
- };
- };
- plasma-workspace-wallpapers = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/plasma-workspace-wallpapers-5.6.5.tar.xz";
- sha256 = "1pkyqsaxqah8h9r8ay449g20135sjw5qsbdp0i0ahprzw07wwijr";
- name = "plasma-workspace-wallpapers-5.6.5.tar.xz";
- };
- };
- polkit-kde-agent = {
- version = "1-5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/polkit-kde-agent-1-5.6.5.tar.xz";
- sha256 = "1f7mzxfr463ac0cfpb653x8civ1ciwhkklndxv7mq37m5ssk4dah";
- name = "polkit-kde-agent-1-5.6.5.tar.xz";
- };
- };
- powerdevil = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/powerdevil-5.6.5.tar.xz";
- sha256 = "07x0n311qbisycsrjjd9lkcwxcxlira0qkz1akg5xxll9q2a6qb7";
- name = "powerdevil-5.6.5.tar.xz";
- };
- };
- sddm-kcm = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/sddm-kcm-5.6.5.tar.xz";
- sha256 = "07r20s0373y630x1vjrfgm740sgg8v6qsza4r3my1qbsdj3xwzky";
- name = "sddm-kcm-5.6.5.tar.xz";
- };
- };
- systemsettings = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/systemsettings-5.6.5.tar.xz";
- sha256 = "01z3q8rp8barb7lyfiwcrwn407pxz17z22y46czxc7j56n4ixgim";
- name = "systemsettings-5.6.5.tar.xz";
- };
- };
- user-manager = {
- version = "5.6.5";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.5/user-manager-5.6.5.tar.xz";
- sha256 = "1fzfcq2kqrwja7y1ij8s7sbwlybharv6wqh62w7xza7pssz9yr7y";
- name = "user-manager-5.6.5.tar.xz";
- };
- };
-}
diff --git a/pkgs/desktops/kde-5/plasma-5.6/startkde/default.nix b/pkgs/desktops/kde-5/plasma-5.6/startkde/default.nix
deleted file mode 100644
index 30e986c21b4..00000000000
--- a/pkgs/desktops/kde-5/plasma-5.6/startkde/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ stdenv, lib, runCommand
-, dbus, qttools, socat
-, gnugrep, gnused
-, kconfig, kinit, kservice
-, plasma-workspace
-, xmessage, xprop, xsetroot
-}:
-
-let
-
- env = {
- inherit (stdenv) shell;
- paths = builtins.map (pkg: pkg.out or pkg)
- [
- dbus qttools socat
- gnugrep gnused
- kconfig kinit kservice
- plasma-workspace
- xmessage xprop xsetroot
- ];
- };
-
-in runCommand "startkde" env ''
- prefix_PATH=
- for pkg in $paths; do
- addToSearchPath prefix_PATH "$pkg/bin"
- addToSearchPath prefix_PATH "$pkg/lib/libexec"
- addToSearchPath prefix_PATH "$pkg/lib/libexec/kf5"
- done
- substitute ${./startkde.sh} "$out" --subst-var shell --subst-var prefix_PATH
- chmod +x "$out"
-''
diff --git a/pkgs/desktops/kde-5/plasma-5.6/bluedevil.nix b/pkgs/desktops/kde-5/plasma/bluedevil.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/bluedevil.nix
rename to pkgs/desktops/kde-5/plasma/bluedevil.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/breeze-gtk.nix b/pkgs/desktops/kde-5/plasma/breeze-gtk.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/breeze-gtk.nix
rename to pkgs/desktops/kde-5/plasma/breeze-gtk.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/breeze-qt4.nix b/pkgs/desktops/kde-5/plasma/breeze-qt4.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/breeze-qt4.nix
rename to pkgs/desktops/kde-5/plasma/breeze-qt4.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/breeze-qt5.nix b/pkgs/desktops/kde-5/plasma/breeze-qt5.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/breeze-qt5.nix
rename to pkgs/desktops/kde-5/plasma/breeze-qt5.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/default.nix b/pkgs/desktops/kde-5/plasma/default.nix
similarity index 87%
rename from pkgs/desktops/kde-5/plasma-5.6/default.nix
rename to pkgs/desktops/kde-5/plasma/default.nix
index d356dd4bd2f..f6bbd5c3f51 100644
--- a/pkgs/desktops/kde-5/plasma-5.6/default.nix
+++ b/pkgs/desktops/kde-5/plasma/default.nix
@@ -2,14 +2,10 @@
# Updates
-Before a major version update, make a copy of this directory. (We like to
-keep the old version around for a short time after major updates.)
-
-1. Update the URL in `maintainers/scripts/generate-kde-plasma.sh`.
-2. From the top of the Nixpkgs tree, run
- `./maintainers/scripts/generate-kde-plasma.sh > pkgs/desktops/kde-5/plasma-$VERSION/srcs.nix'.
-3. Check that the new packages build correctly.
-4. Commit the changes and open a pull request.
+1. Update the URL in `maintainers/scripts/generate-kde-plasma.sh` and run
+ that script from the top of the Nixpkgs tree.
+2. Check that the new packages build correctly.
+3. Commit the changes and open a pull request.
*/
@@ -74,7 +70,7 @@ let
kscreenlocker = callPackage ./kscreenlocker.nix {};
ksshaskpass = callPackage ./ksshaskpass.nix {};
ksysguard = callPackage ./ksysguard.nix {};
- kwayland = callPackage ./kwayland.nix {};
+ kwayland-integration = callPackage ./kwayland-integration.nix {};
kwin = callPackage ./kwin {};
kwrited = callPackage ./kwrited.nix {};
libkscreen = callPackage ./libkscreen.nix {};
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kactivitymanagerd.nix b/pkgs/desktops/kde-5/plasma/kactivitymanagerd.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/kactivitymanagerd.nix
rename to pkgs/desktops/kde-5/plasma/kactivitymanagerd.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kde-cli-tools.nix b/pkgs/desktops/kde-5/plasma/kde-cli-tools.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/kde-cli-tools.nix
rename to pkgs/desktops/kde-5/plasma/kde-cli-tools.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/0001-follow-symlinks.patch b/pkgs/desktops/kde-5/plasma/kde-gtk-config/0001-follow-symlinks.patch
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/0001-follow-symlinks.patch
rename to pkgs/desktops/kde-5/plasma/kde-gtk-config/0001-follow-symlinks.patch
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/default.nix b/pkgs/desktops/kde-5/plasma/kde-gtk-config/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/default.nix
rename to pkgs/desktops/kde-5/plasma/kde-gtk-config/default.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kdecoration.nix b/pkgs/desktops/kde-5/plasma/kdecoration.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/kdecoration.nix
rename to pkgs/desktops/kde-5/plasma/kdecoration.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kdeplasma-addons.nix b/pkgs/desktops/kde-5/plasma/kdeplasma-addons.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/kdeplasma-addons.nix
rename to pkgs/desktops/kde-5/plasma/kdeplasma-addons.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kgamma5.nix b/pkgs/desktops/kde-5/plasma/kgamma5.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/kgamma5.nix
rename to pkgs/desktops/kde-5/plasma/kgamma5.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/khotkeys.nix b/pkgs/desktops/kde-5/plasma/khotkeys.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/khotkeys.nix
rename to pkgs/desktops/kde-5/plasma/khotkeys.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kinfocenter.nix b/pkgs/desktops/kde-5/plasma/kinfocenter.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/kinfocenter.nix
rename to pkgs/desktops/kde-5/plasma/kinfocenter.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kmenuedit.nix b/pkgs/desktops/kde-5/plasma/kmenuedit.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/kmenuedit.nix
rename to pkgs/desktops/kde-5/plasma/kmenuedit.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kscreen.nix b/pkgs/desktops/kde-5/plasma/kscreen.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/kscreen.nix
rename to pkgs/desktops/kde-5/plasma/kscreen.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kscreenlocker.nix b/pkgs/desktops/kde-5/plasma/kscreenlocker.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/kscreenlocker.nix
rename to pkgs/desktops/kde-5/plasma/kscreenlocker.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/ksshaskpass.nix b/pkgs/desktops/kde-5/plasma/ksshaskpass.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/ksshaskpass.nix
rename to pkgs/desktops/kde-5/plasma/ksshaskpass.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/ksysguard.nix b/pkgs/desktops/kde-5/plasma/ksysguard.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/ksysguard.nix
rename to pkgs/desktops/kde-5/plasma/ksysguard.nix
diff --git a/pkgs/desktops/kde-5/plasma/kwayland-integration.nix b/pkgs/desktops/kde-5/plasma/kwayland-integration.nix
new file mode 100644
index 00000000000..9045227a51a
--- /dev/null
+++ b/pkgs/desktops/kde-5/plasma/kwayland-integration.nix
@@ -0,0 +1,16 @@
+{ plasmaPackage
+, extra-cmake-modules
+, kidletime
+, kwayland
+, kwindowsystem
+}:
+
+plasmaPackage {
+ name = "kwayland-integration";
+ nativeBuildInputs = [
+ extra-cmake-modules
+ ];
+ propagatedBuildInputs = [
+ kidletime kwindowsystem kwayland
+ ];
+}
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kwin/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/plasma/kwin/0001-qdiriterator-follow-symlinks.patch
similarity index 89%
rename from pkgs/desktops/kde-5/plasma-5.6/kwin/0001-qdiriterator-follow-symlinks.patch
rename to pkgs/desktops/kde-5/plasma/kwin/0001-qdiriterator-follow-symlinks.patch
index 797a32fc5f8..7a70fec0d2d 100644
--- a/pkgs/desktops/kde-5/plasma-5.6/kwin/0001-qdiriterator-follow-symlinks.patch
+++ b/pkgs/desktops/kde-5/plasma/kwin/0001-qdiriterator-follow-symlinks.patch
@@ -9,8 +9,8 @@ Subject: [PATCH] qdiriterator follow symlinks
diff --git a/clients/aurorae/src/aurorae.cpp b/clients/aurorae/src/aurorae.cpp
index 781c960..ad5f420 100644
---- a/clients/aurorae/src/aurorae.cpp
-+++ b/clients/aurorae/src/aurorae.cpp
+--- a/plugins/kdecorations/aurorae/src/aurorae.cpp
++++ b/plugins/kdecorations/aurorae/src/aurorae.cpp
@@ -211,7 +211,7 @@ void Helper::init()
// so let's try to locate our plugin:
QString pluginPath;
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kwin/default.nix b/pkgs/desktops/kde-5/plasma/kwin/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/kwin/default.nix
rename to pkgs/desktops/kde-5/plasma/kwin/default.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kwrited.nix b/pkgs/desktops/kde-5/plasma/kwrited.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/kwrited.nix
rename to pkgs/desktops/kde-5/plasma/kwrited.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/libkscreen.nix b/pkgs/desktops/kde-5/plasma/libkscreen.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/libkscreen.nix
rename to pkgs/desktops/kde-5/plasma/libkscreen.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/libksysguard/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/plasma/libksysguard/0001-qdiriterator-follow-symlinks.patch
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/libksysguard/0001-qdiriterator-follow-symlinks.patch
rename to pkgs/desktops/kde-5/plasma/libksysguard/0001-qdiriterator-follow-symlinks.patch
diff --git a/pkgs/desktops/kde-5/plasma-5.6/libksysguard/default.nix b/pkgs/desktops/kde-5/plasma/libksysguard/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/libksysguard/default.nix
rename to pkgs/desktops/kde-5/plasma/libksysguard/default.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/milou.nix b/pkgs/desktops/kde-5/plasma/milou.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/milou.nix
rename to pkgs/desktops/kde-5/plasma/milou.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/oxygen.nix b/pkgs/desktops/kde-5/plasma/oxygen.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/oxygen.nix
rename to pkgs/desktops/kde-5/plasma/oxygen.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0001-qt-5.5-QML-import-paths.patch b/pkgs/desktops/kde-5/plasma/plasma-desktop/0001-qt-5.5-QML-import-paths.patch
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0001-qt-5.5-QML-import-paths.patch
rename to pkgs/desktops/kde-5/plasma/plasma-desktop/0001-qt-5.5-QML-import-paths.patch
diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0002-hwclock.patch b/pkgs/desktops/kde-5/plasma/plasma-desktop/0002-hwclock.patch
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0002-hwclock.patch
rename to pkgs/desktops/kde-5/plasma/plasma-desktop/0002-hwclock.patch
diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0003-tzdir.patch b/pkgs/desktops/kde-5/plasma/plasma-desktop/0003-tzdir.patch
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0003-tzdir.patch
rename to pkgs/desktops/kde-5/plasma/plasma-desktop/0003-tzdir.patch
diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix b/pkgs/desktops/kde-5/plasma/plasma-desktop/default.nix
similarity index 85%
rename from pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix
rename to pkgs/desktops/kde-5/plasma/plasma-desktop/default.nix
index 2a1d95806c1..3a61651644f 100644
--- a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix
+++ b/pkgs/desktops/kde-5/plasma/plasma-desktop/default.nix
@@ -1,6 +1,6 @@
{ plasmaPackage, substituteAll, extra-cmake-modules, kdoctools
-, attica, baloo, boost, fontconfig, kactivities, kauth, kcmutils
-, kdbusaddons, kdeclarative, kded, kdelibs4support, kemoticons
+, attica, baloo, boost, fontconfig, kactivities, kactivities-stats
+, kauth, kcmutils, kdbusaddons, kdeclarative, kded, kdelibs4support, kemoticons
, kglobalaccel, ki18n, kitemmodels, knewstuff, knotifications
, knotifyconfig, kpeople, krunner, kwallet, kwin, phonon
, plasma-framework, plasma-workspace, qtdeclarative, qtx11extras
@@ -21,9 +21,9 @@ plasmaPackage rec {
attica boost fontconfig kcmutils kdbusaddons kded kitemmodels knewstuff
knotifications knotifyconfig kwallet libcanberra_kde libXcursor
libpulseaudio libXft libxkbfile phonon qtsvg xf86inputevdev
- xf86inputsynaptics xkeyboard_config xinput baloo kactivities kauth
- kdeclarative kdelibs4support kemoticons kglobalaccel ki18n kpeople krunner
- kwin plasma-framework plasma-workspace qtdeclarative
+ xf86inputsynaptics xkeyboard_config xinput baloo kactivities
+ kactivities-stats kauth kdeclarative kdelibs4support kemoticons kglobalaccel
+ ki18n kpeople krunner kwin plasma-framework plasma-workspace qtdeclarative
qtquickcontrols qtx11extras ksysguard
];
patches = [
diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-integration.nix b/pkgs/desktops/kde-5/plasma/plasma-integration.nix
similarity index 67%
rename from pkgs/desktops/kde-5/plasma-5.6/plasma-integration.nix
rename to pkgs/desktops/kde-5/plasma/plasma-integration.nix
index 7bc41986a4f..97d30dcd773 100644
--- a/pkgs/desktops/kde-5/plasma-5.6/plasma-integration.nix
+++ b/pkgs/desktops/kde-5/plasma/plasma-integration.nix
@@ -1,5 +1,5 @@
{ plasmaPackage, extra-cmake-modules
-, kconfig, kconfigwidgets, kiconthemes, kio, kwayland
+, breeze-qt5, kconfig, kconfigwidgets, kiconthemes, kio, kwayland
, libXcursor
}:
@@ -11,7 +11,7 @@ plasmaPackage {
extra-cmake-modules
];
buildInputs = [
- kconfig kconfigwidgets kiconthemes kio kwayland
+ breeze-qt5 kconfig kconfigwidgets kiconthemes kio kwayland
libXcursor
];
}
diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-mediacenter.nix b/pkgs/desktops/kde-5/plasma/plasma-mediacenter.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/plasma-mediacenter.nix
rename to pkgs/desktops/kde-5/plasma/plasma-mediacenter.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-nm/0001-mobile-broadband-provider-info-path.patch b/pkgs/desktops/kde-5/plasma/plasma-nm/0001-mobile-broadband-provider-info-path.patch
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/plasma-nm/0001-mobile-broadband-provider-info-path.patch
rename to pkgs/desktops/kde-5/plasma/plasma-nm/0001-mobile-broadband-provider-info-path.patch
diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-nm/default.nix b/pkgs/desktops/kde-5/plasma/plasma-nm/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/plasma-nm/default.nix
rename to pkgs/desktops/kde-5/plasma/plasma-nm/default.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-pa.nix b/pkgs/desktops/kde-5/plasma/plasma-pa.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/plasma-pa.nix
rename to pkgs/desktops/kde-5/plasma/plasma-pa.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace-wallpapers.nix b/pkgs/desktops/kde-5/plasma/plasma-workspace-wallpapers.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/plasma-workspace-wallpapers.nix
rename to pkgs/desktops/kde-5/plasma/plasma-workspace-wallpapers.nix
diff --git a/pkgs/desktops/kde-5/plasma/plasma-workspace/default.nix b/pkgs/desktops/kde-5/plasma/plasma-workspace/default.nix
new file mode 100644
index 00000000000..190003ca5c7
--- /dev/null
+++ b/pkgs/desktops/kde-5/plasma/plasma-workspace/default.nix
@@ -0,0 +1,42 @@
+{
+ plasmaPackage, lib, copyPathsToStore,
+
+ extra-cmake-modules, kdoctools,
+
+ baloo, kactivities, kcmutils, kconfig, kcrash, kdbusaddons, kdeclarative,
+ kdelibs4support, kdesu, kglobalaccel, kidletime, kjsembed, knewstuff,
+ knotifyconfig, kpackage, krunner, ktexteditor, ktextwidgets, kwallet, kwayland,
+ kwin, kxmlrpcclient, libkscreen, libksysguard, networkmanager-qt, phonon,
+ plasma-framework, qtquickcontrols, qtscript, qtx11extras, solid, isocodes,
+ libdbusmenu, libSM, libXcursor, pam, wayland
+}:
+
+plasmaPackage {
+ name = "plasma-workspace";
+
+ nativeBuildInputs = [
+ extra-cmake-modules kdoctools
+ ];
+ buildInputs = [
+ baloo kactivities kcmutils kconfig kcrash kdbusaddons kdeclarative
+ kdelibs4support kdesu kglobalaccel kidletime kjsembed knewstuff
+ knotifyconfig kpackage krunner ktexteditor ktextwidgets kwallet kwayland
+ kwin kxmlrpcclient libkscreen libksysguard networkmanager-qt phonon
+ plasma-framework qtquickcontrols qtscript qtx11extras solid
+ isocodes libdbusmenu libSM libXcursor pam wayland
+ ];
+
+ patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
+
+ postPatch = ''
+ substituteInPlace startkde/kstartupconfig/kstartupconfig.cpp \
+ --replace kdostartupconfig5 $out/bin/kdostartupconfig5
+ '';
+
+ postInstall = ''
+ rm "$out/bin/startkde"
+ rm "$out/bin/startplasmacompositor"
+ rm "$out/lib/libexec/startplasma"
+ rm -r "$out/share/wayland-sessions"
+ '';
+}
diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch b/pkgs/desktops/kde-5/plasma/plasma-workspace/qml-import-path.patch
similarity index 88%
rename from pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch
rename to pkgs/desktops/kde-5/plasma/plasma-workspace/qml-import-path.patch
index 7842109669a..12eb65caa71 100644
--- a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch
+++ b/pkgs/desktops/kde-5/plasma/plasma-workspace/qml-import-path.patch
@@ -89,16 +89,3 @@ Index: plasma-workspace-5.6.3/applets/notifications/package/contents/ui/main.qml
MouseEventListener {
id: notificationsApplet
-Index: plasma-workspace-5.6.3/applets/systemtray/package/contents/ui/main.qml
-===================================================================
---- plasma-workspace-5.6.3.orig/applets/systemtray/package/contents/ui/main.qml
-+++ plasma-workspace-5.6.3/applets/systemtray/package/contents/ui/main.qml
-@@ -25,7 +25,7 @@ import org.kde.plasma.core 2.0 as Plasma
- // import org.kde.plasma.extras 2.0 as PlasmaExtras
-
- import org.kde.private.systemtray 2.0 as SystemTray
--import "Layout.js" as LayoutManager
-+import "../code/Layout.js" as LayoutManager
-
- Item {
- id: root
diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/series b/pkgs/desktops/kde-5/plasma/plasma-workspace/series
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/series
rename to pkgs/desktops/kde-5/plasma/plasma-workspace/series
diff --git a/pkgs/desktops/kde-5/plasma-5.6/polkit-kde-agent.nix b/pkgs/desktops/kde-5/plasma/polkit-kde-agent.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/polkit-kde-agent.nix
rename to pkgs/desktops/kde-5/plasma/polkit-kde-agent.nix
diff --git a/pkgs/desktops/kde-5/plasma/powerdevil.nix b/pkgs/desktops/kde-5/plasma/powerdevil.nix
new file mode 100644
index 00000000000..cbb2b9b019f
--- /dev/null
+++ b/pkgs/desktops/kde-5/plasma/powerdevil.nix
@@ -0,0 +1,18 @@
+{ plasmaPackage, extra-cmake-modules, kdoctools, bluez-qt, kactivities
+, kauth, kconfig, kdbusaddons, kdelibs4support, kglobalaccel, ki18n
+, kidletime, kio, knotifyconfig, kwayland, libkscreen, networkmanager-qt
+, plasma-workspace, qtx11extras, solid, udev
+}:
+
+plasmaPackage {
+ name = "powerdevil";
+ nativeBuildInputs = [
+ extra-cmake-modules
+ kdoctools
+ ];
+ propagatedBuildInputs = [
+ kconfig kdbusaddons knotifyconfig solid udev bluez-qt kactivities kauth
+ kdelibs4support kglobalaccel ki18n kio kidletime kwayland libkscreen
+ networkmanager-qt plasma-workspace qtx11extras
+ ];
+}
diff --git a/pkgs/desktops/kde-5/plasma/srcs.nix b/pkgs/desktops/kde-5/plasma/srcs.nix
new file mode 100644
index 00000000000..2dbfb6dd04a
--- /dev/null
+++ b/pkgs/desktops/kde-5/plasma/srcs.nix
@@ -0,0 +1,325 @@
+# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh
+{ fetchurl, mirror }:
+
+{
+ bluedevil = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/bluedevil-5.7.1.tar.xz";
+ sha256 = "1sz84r27bc4qavb22haqswr1qjv9m47b8j3knvlpzdln4wpxnb81";
+ name = "bluedevil-5.7.1.tar.xz";
+ };
+ };
+ breeze = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/breeze-5.7.1.tar.xz";
+ sha256 = "1sparlwykzr6mjqzv3ghzl59j0xi3yxf0m93sx7d3js92k77rqpk";
+ name = "breeze-5.7.1.tar.xz";
+ };
+ };
+ breeze-grub = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/breeze-grub-5.7.1.tar.xz";
+ sha256 = "0ahpsq429f8cdk2w91h9ji9fiqc7g8m9zlg447pz7r6lxnj9aw3x";
+ name = "breeze-grub-5.7.1.tar.xz";
+ };
+ };
+ breeze-gtk = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/breeze-gtk-5.7.1.tar.xz";
+ sha256 = "1xcznd9m6kxrv8c4j66m4qqgq02h32714dkjwr754k9qfiava2qg";
+ name = "breeze-gtk-5.7.1.tar.xz";
+ };
+ };
+ breeze-plymouth = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/breeze-plymouth-5.7.1.tar.xz";
+ sha256 = "16wx7k18yxf2jhxl2wwxy1dzdrrlfr9qkxbw72m5c21spx734wwb";
+ name = "breeze-plymouth-5.7.1.tar.xz";
+ };
+ };
+ discover = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/discover-5.7.1.tar.xz";
+ sha256 = "1r4g4ajyp6ap1nq2n9ngvsgzifypivrkkzfk14c06mmc4fbqblpd";
+ name = "discover-5.7.1.tar.xz";
+ };
+ };
+ kactivitymanagerd = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kactivitymanagerd-5.7.1.tar.xz";
+ sha256 = "1mc4dxxkvjyrq4khlg1gjhxdhn87xsghwlznp4gnfx4cjgvxi8bq";
+ name = "kactivitymanagerd-5.7.1.tar.xz";
+ };
+ };
+ kde-cli-tools = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kde-cli-tools-5.7.1.tar.xz";
+ sha256 = "0q3j6kd7yfrp10pbld5pdis8w234442va3h460q9j3bp7n7xp8h9";
+ name = "kde-cli-tools-5.7.1.tar.xz";
+ };
+ };
+ kdecoration = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kdecoration-5.7.1.tar.xz";
+ sha256 = "181vay4alcckv93cralbj980c4zxbmca710dh9qrmy4nfk2y0pq7";
+ name = "kdecoration-5.7.1.tar.xz";
+ };
+ };
+ kde-gtk-config = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kde-gtk-config-5.7.1.tar.xz";
+ sha256 = "18xm51j1604gg9sf9cmchqzgfrchwf2may4qhl2glns3c7xnps94";
+ name = "kde-gtk-config-5.7.1.tar.xz";
+ };
+ };
+ kdeplasma-addons = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kdeplasma-addons-5.7.1.tar.xz";
+ sha256 = "13mg01ll9np8av55ilns1dc0k3rv5cix901gp459dl9r05hzhxgp";
+ name = "kdeplasma-addons-5.7.1.tar.xz";
+ };
+ };
+ kgamma5 = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kgamma5-5.7.1.tar.xz";
+ sha256 = "1myxjj99jmp2n58f4jbarphr12jh9rqpjmvk2dpcijb94sxaimsl";
+ name = "kgamma5-5.7.1.tar.xz";
+ };
+ };
+ khotkeys = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/khotkeys-5.7.1.tar.xz";
+ sha256 = "0djnfax9ba1zm3lkxm2hfa4ai399g1p1n0zfpchjfif8639pf6fk";
+ name = "khotkeys-5.7.1.tar.xz";
+ };
+ };
+ kinfocenter = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kinfocenter-5.7.1.tar.xz";
+ sha256 = "0ynm1lb5f2ggc470k805acxrgxbjw00b780psg60m64bh12jn5ws";
+ name = "kinfocenter-5.7.1.tar.xz";
+ };
+ };
+ kmenuedit = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kmenuedit-5.7.1.tar.xz";
+ sha256 = "19188hwidv6vak1qas60jzc7bd6fx1slaqkiwljyx8r6w7l1lx4h";
+ name = "kmenuedit-5.7.1.tar.xz";
+ };
+ };
+ kscreen = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kscreen-5.7.1.tar.xz";
+ sha256 = "0f2zniavlh18ipkn3k6kpzd5nqhlj0pg723dqb3p5zdmxfwddqal";
+ name = "kscreen-5.7.1.tar.xz";
+ };
+ };
+ kscreenlocker = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kscreenlocker-5.7.1.tar.xz";
+ sha256 = "0dpx1cwvjzsnf9aryavqajlw10iqfmg3vjry50wkg03nb8z1rd49";
+ name = "kscreenlocker-5.7.1.tar.xz";
+ };
+ };
+ ksshaskpass = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/ksshaskpass-5.7.1.tar.xz";
+ sha256 = "0blmwnm512lld8r3gj2fi7z0cj2nhcngn6xw3568p54ijb5da6c2";
+ name = "ksshaskpass-5.7.1.tar.xz";
+ };
+ };
+ ksysguard = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/ksysguard-5.7.1.tar.xz";
+ sha256 = "14b9wspfls4q3zl1rxpr6h5kxx9q6dv10x8lbzmxml1fdkid3i5j";
+ name = "ksysguard-5.7.1.tar.xz";
+ };
+ };
+ kwallet-pam = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kwallet-pam-5.7.1.tar.xz";
+ sha256 = "04jxi4a75km9c5gy30aaikqzsd2z2algvh7w6phfqaqq66h5qx8d";
+ name = "kwallet-pam-5.7.1.tar.xz";
+ };
+ };
+ kwayland-integration = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kwayland-integration-5.7.1.tar.xz";
+ sha256 = "0ix30304ggh12xgqnnb9zrniqhklg3a8rkjnp3fad7sr3wa9346s";
+ name = "kwayland-integration-5.7.1.tar.xz";
+ };
+ };
+ kwin = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kwin-5.7.1.tar.xz";
+ sha256 = "0mkvfbsv1ivzs02fphm28km55cn258w6sram9zbqldklk2js7is0";
+ name = "kwin-5.7.1.tar.xz";
+ };
+ };
+ kwrited = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kwrited-5.7.1.tar.xz";
+ sha256 = "0mmb4hmwpcmxc03nzqhybwxk5nlyqamdswmr0vf8jcbvcqdmp473";
+ name = "kwrited-5.7.1.tar.xz";
+ };
+ };
+ libkscreen = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/libkscreen-5.7.1.tar.xz";
+ sha256 = "1my8k7r7i2qh59g46l79xdyci1km3ykxms1314vwzqf7fyadwjnp";
+ name = "libkscreen-5.7.1.tar.xz";
+ };
+ };
+ libksysguard = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/libksysguard-5.7.1.tar.xz";
+ sha256 = "0249cxgfy6yb9dcc9z2ckxwy7khkbzk0922479v900avaf87l4hj";
+ name = "libksysguard-5.7.1.tar.xz";
+ };
+ };
+ milou = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/milou-5.7.1.tar.xz";
+ sha256 = "0fcrf8q0sxsgjbi9j2h9qcl4g40mvia1zkb98crzir5qb1z6ji1f";
+ name = "milou-5.7.1.tar.xz";
+ };
+ };
+ oxygen = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/oxygen-5.7.1.tar.xz";
+ sha256 = "1pjygznb3fjyyvm84dxxj6smm6hpi5mr0c5077rc1xm2p20g7xn0";
+ name = "oxygen-5.7.1.tar.xz";
+ };
+ };
+ plasma-desktop = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/plasma-desktop-5.7.1.tar.xz";
+ sha256 = "1civd76q2lkas8x5pzm57dfjyplmgb91w34avn75lcdkl2p0zq44";
+ name = "plasma-desktop-5.7.1.tar.xz";
+ };
+ };
+ plasma-integration = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/plasma-integration-5.7.1.tar.xz";
+ sha256 = "12cjays5y3zr4za7j49p8yrzk6fxmsgvw4n8i8aida390lbnw5c6";
+ name = "plasma-integration-5.7.1.tar.xz";
+ };
+ };
+ plasma-mediacenter = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/plasma-mediacenter-5.7.1.tar.xz";
+ sha256 = "135c7vgps9nsna4x5b28p8p2lir7wx2ad6p5m4sg7irf2wr6mivd";
+ name = "plasma-mediacenter-5.7.1.tar.xz";
+ };
+ };
+ plasma-nm = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/plasma-nm-5.7.1.tar.xz";
+ sha256 = "0siq0na8cqqp0lqp963miwimsr7w9papj6cpf9k0frw40arqk26h";
+ name = "plasma-nm-5.7.1.tar.xz";
+ };
+ };
+ plasma-pa = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/plasma-pa-5.7.1.tar.xz";
+ sha256 = "0g4rgsf39imknxbccl77d7j7404gfyv0nh6r0dmli19alhhiczay";
+ name = "plasma-pa-5.7.1.tar.xz";
+ };
+ };
+ plasma-sdk = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/plasma-sdk-5.7.1.tar.xz";
+ sha256 = "1mn54zwq9bcrazv6zh832xyagrd4k1xjdwhdqxqbvq1d139v8shj";
+ name = "plasma-sdk-5.7.1.tar.xz";
+ };
+ };
+ plasma-workspace = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/plasma-workspace-5.7.1.tar.xz";
+ sha256 = "0x4ghm385kkj2ax91vy10p4f481c6ikpk0azmhnk2d685r7x03yn";
+ name = "plasma-workspace-5.7.1.tar.xz";
+ };
+ };
+ plasma-workspace-wallpapers = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/plasma-workspace-wallpapers-5.7.1.tar.xz";
+ sha256 = "0nl3bjb57djzgvx81knrjkbdix9y3j5ggxpd1a6lj80nixicg8h7";
+ name = "plasma-workspace-wallpapers-5.7.1.tar.xz";
+ };
+ };
+ polkit-kde-agent = {
+ version = "1-5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/polkit-kde-agent-1-5.7.1.tar.xz";
+ sha256 = "1pcmdplxq0fsa3bdxyl73vpndvhlmsmjbqfc35aa1ds2wkj7ql2q";
+ name = "polkit-kde-agent-1-5.7.1.tar.xz";
+ };
+ };
+ powerdevil = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/powerdevil-5.7.1.tar.xz";
+ sha256 = "0vdrpfgdw2c2gp6cwmrwyrwgfgxfslypa5ls79cf9wqgkrlh3phy";
+ name = "powerdevil-5.7.1.tar.xz";
+ };
+ };
+ sddm-kcm = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/sddm-kcm-5.7.1.tar.xz";
+ sha256 = "0bnfy0ndg5040za73sj41ajskwx7bvfa4x92wrfzv27gda3c7fdg";
+ name = "sddm-kcm-5.7.1.tar.xz";
+ };
+ };
+ systemsettings = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/systemsettings-5.7.1.tar.xz";
+ sha256 = "0arcvhqvcsm59l3fm6brqqcv1084qm8wawj9dj6w5wb194ys41hw";
+ name = "systemsettings-5.7.1.tar.xz";
+ };
+ };
+ user-manager = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/user-manager-5.7.1.tar.xz";
+ sha256 = "1jzwwzixwbb6f92zi09i3jfs4dqsg3kcjis60w1bh2pkm96gq35y";
+ name = "user-manager-5.7.1.tar.xz";
+ };
+ };
+}
diff --git a/pkgs/desktops/kde-5/plasma/startkde/default.nix b/pkgs/desktops/kde-5/plasma/startkde/default.nix
new file mode 100644
index 00000000000..516d651cec2
--- /dev/null
+++ b/pkgs/desktops/kde-5/plasma/startkde/default.nix
@@ -0,0 +1,54 @@
+{
+ stdenv, lib, runCommand, dbus, qttools, socat, gnugrep, gnused, kconfig,
+ kinit, kservice, plasma-workspace, xmessage, xprop, xsetroot, qtbase,
+ qtdeclarative, qtgraphicaleffects, qtquickcontrols, qtscript, qtsvg,
+ qtx11extras, qtxmlpatterns
+}:
+
+let
+
+ env = {
+ inherit (stdenv) shell;
+ bins = builtins.map (pkg: pkg.out or pkg)
+ [
+ dbus qttools socat
+ gnugrep gnused
+ kconfig kinit kservice
+ plasma-workspace
+ xmessage xprop xsetroot
+ ];
+ libs = builtins.map (pkg: pkg.out or pkg)
+ [
+ qtbase qtdeclarative qtgraphicaleffects qtquickcontrols
+ qtscript qtsvg qtx11extras qtxmlpatterns
+ ];
+ };
+
+in runCommand "startkde" env ''
+
+ # Configure PATH variable
+ suffixPATH=
+ for p in $bins; do
+ addToSearchPath suffixPATH "$p/bin"
+ addToSearchPath suffixPATH "$p/lib/libexec"
+ addToSearchPath suffixPATH "$p/lib/libexec/kf5"
+ done
+
+ # Configure Qt search paths
+ QT_PLUGIN_PATH=
+ QML_IMPORT_PATH=
+ QML2_IMPORT_PATH=
+ for p in $libs; do
+ addToSearchPath QT_PLUGIN_PATH "$p/lib/qt5/plugins"
+ addToSearchPath QML_IMPORT_PATH "$p/lib/qt5/imports"
+ addToSearchPath QML2_IMPORT_PATH "$p/lib/qt5/qml"
+ done
+
+ substitute ${./startkde.sh} "$out" \
+ --subst-var shell \
+ --subst-var suffixPATH \
+ --subst-var QT_PLUGIN_PATH \
+ --subst-var QML_IMPORT_PATH \
+ --subst-var QML2_IMPORT_PATH
+ chmod +x "$out"
+''
diff --git a/pkgs/desktops/kde-5/plasma-5.6/startkde/startkde.sh b/pkgs/desktops/kde-5/plasma/startkde/startkde.sh
similarity index 96%
rename from pkgs/desktops/kde-5/plasma-5.6/startkde/startkde.sh
rename to pkgs/desktops/kde-5/plasma/startkde/startkde.sh
index d839226a456..18cf08081c4 100755
--- a/pkgs/desktops/kde-5/plasma-5.6/startkde/startkde.sh
+++ b/pkgs/desktops/kde-5/plasma/startkde/startkde.sh
@@ -1,6 +1,10 @@
#!@shell@
-PATH="@prefix_PATH@:$PATH"
+PATH="$PATH${PATH:+:}@suffixPATH@"
+
+export QT_PLUGIN_PATH="$QT_PLUGIN_PATH${QT_PLUGIN_PATH:+:}@QT_PLUGIN_PATH@"
+export QML_IMPORT_PATH="$QML_IMPORT_PATH${QML_IMPORT_PATH:+:}@QML_IMPORT_PATH@"
+export QML2_IMPORT_PATH="$QML2_IMPORT_PATH${QML2_IMPORT_PATH:+:}@QML2_IMPORT_PATH@"
# The KDE icon cache is supposed to update itself
# automatically, but it uses the timestamp on the icon
@@ -73,7 +77,7 @@ kcminputrc Mouse cursorTheme 'breeze_cursors'
kcminputrc Mouse cursorSize ''
ksplashrc KSplash Theme Breeze
ksplashrc KSplash Engine KSplashQML
-kdeglobals KScreen ScaleFactor 1
+kdeglobals KScreen ScreenScaleFactors ''
kcmfonts General forceFontDPI 0
EOF
@@ -153,20 +157,6 @@ xsetroot -cursor_name left_ptr
dl=$DESKTOP_LOCKED
unset DESKTOP_LOCKED # Don't want it in the environment
-# Make sure that D-Bus is running
-# D-Bus autolaunch is broken
-if test -z "$DBUS_SESSION_BUS_ADDRESS" ; then
- eval $(dbus-launch --sh-syntax --exit-with-session)
-fi
-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 -geometry 500x100 "Could not start D-Bus. Can you call qdbus?"
- exit 1
-fi
-
ksplash_pid=
if test -z "$dl"; then
# the splashscreen and progress indicator
@@ -205,6 +195,16 @@ done
echo 'startkde: Starting up...' 1>&2
+# Make sure that D-Bus is running
+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 -geometry 500x100 "Could not start D-Bus. Can you call qdbus?"
+ exit 1
+fi
+
# 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
@@ -251,7 +251,7 @@ if test -n "$PAM_KWALLET5_LOGIN" ; then
fi
# At this point all environment variables are set, let's send it to the DBus session server to update the activation environment
-ksyncdbusenv
+dbus-update-activation-environment --systemd --all
if test $? -ne 0; then
# Startup error
echo 'startkde: Could not sync environment to dbus.' 1>&2
@@ -271,6 +271,8 @@ if test $? -ne 0; then
exit 1
fi
+qdbus org.kde.KSplash /KSplash org.kde.KSplash.setStage kinit
+
# (NixOS) 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!
diff --git a/pkgs/desktops/kde-5/plasma-5.6/systemsettings.nix b/pkgs/desktops/kde-5/plasma/systemsettings.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/systemsettings.nix
rename to pkgs/desktops/kde-5/plasma/systemsettings.nix
diff --git a/pkgs/desktops/mate/mate-icon-theme-faenza/default.nix b/pkgs/desktops/mate/mate-icon-theme-faenza/default.nix
index ea441f0cc09..e0f370fed76 100644
--- a/pkgs/desktops/mate/mate-icon-theme-faenza/default.nix
+++ b/pkgs/desktops/mate/mate-icon-theme-faenza/default.nix
@@ -4,11 +4,11 @@ stdenv.mkDerivation rec {
name = "mate-icon-theme-faenza-${version}";
version = "${major-ver}.${minor-ver}";
major-ver = "1.15";
- minor-ver = "0";
+ minor-ver = "1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
- sha256 = "0ypk61sjgqj0b1sina9947x1dg456baxhsyybmxrwpgy3pr06qlz";
+ sha256 = "1x2jn86gcv6spnkvhjg0mzp5qhlb5dw4h8m8qp1hdgzzrzinfr3p";
};
nativeBuildInputs = [ autoreconfHook ];
diff --git a/pkgs/development/compilers/elm/default.nix b/pkgs/development/compilers/elm/default.nix
index 08f69ba8776..950caeedf53 100644
--- a/pkgs/development/compilers/elm/default.nix
+++ b/pkgs/development/compilers/elm/default.nix
@@ -40,7 +40,7 @@ let
EOF
'' + lib.concatStrings cmds;
- hsPkgs = haskell.packages.ghc7103.override {
+ hsPkgs = haskell.packages.ghc801.override {
overrides = self: super:
let hlib = haskell.lib;
elmRelease = import ./packages/release.nix { inherit (self) callPackage; };
diff --git a/pkgs/development/compilers/elm/packages/elm-compiler.nix b/pkgs/development/compilers/elm/packages/elm-compiler.nix
index 8bebdf4315a..dc2a0a12138 100644
--- a/pkgs/development/compilers/elm/packages/elm-compiler.nix
+++ b/pkgs/development/compilers/elm/packages/elm-compiler.nix
@@ -3,15 +3,15 @@
, fetchgit, filemanip, filepath, HUnit, indents
, language-ecmascript, language-glsl, mtl, parsec, pretty, process
, QuickCheck, stdenv, test-framework, test-framework-hunit
-, test-framework-quickcheck2, text, union-find, wl-pprint
+, test-framework-quickcheck2, text, union-find
}:
mkDerivation {
pname = "elm-compiler";
- version = "0.17";
+ version = "0.17.1";
src = fetchgit {
url = "https://github.com/elm-lang/elm-compiler";
- sha256 = "1vx4jp20nj4s41zsqnwyh80dvg7b7kd9fh6agl99v1xx9d3i6ws1";
- rev = "c9c7e72c424a13255f8ee84c719f7ef48b689c1a";
+ sha256 = "17y0jlii81mnjywknblcv1nfja51slmwrhz9x8w144b0sblcj0if";
+ rev = "e44deafaf9cbf3749484070f267f03a368711adb";
};
isLibrary = true;
isExecutable = true;
@@ -19,7 +19,7 @@ mkDerivation {
aeson aeson-pretty ansi-terminal ansi-wl-pprint base binary
bytestring containers directory edit-distance filepath indents
language-ecmascript language-glsl mtl parsec pretty process text
- union-find wl-pprint
+ union-find
];
executableHaskellDepends = [
aeson base binary directory filepath process text
@@ -29,10 +29,10 @@ mkDerivation {
bytestring containers directory edit-distance filemanip filepath
HUnit indents language-ecmascript language-glsl mtl parsec pretty
process QuickCheck test-framework test-framework-hunit
- test-framework-quickcheck2 text union-find wl-pprint
+ test-framework-quickcheck2 text union-find
];
jailbreak = true;
homepage = "http://elm-lang.org";
- description = "Values to help with elm-package, elm-make, and elm-lang.org";
+ description = "Values to help with elm-package, elm-make, and elm-lang.org.";
license = stdenv.lib.licenses.bsd3;
}
diff --git a/pkgs/development/compilers/elm/packages/elm-format.nix b/pkgs/development/compilers/elm/packages/elm-format.nix
index 12550e46a97..4d30c697abd 100644
--- a/pkgs/development/compilers/elm/packages/elm-format.nix
+++ b/pkgs/development/compilers/elm/packages/elm-format.nix
@@ -2,17 +2,16 @@
, bytestring, containers, directory, edit-distance, fetchgit
, filemanip, filepath, HUnit, indents, mtl, optparse-applicative
, parsec, pretty, process, QuickCheck, quickcheck-io
-, regex-applicative, split, stdenv, test-framework
-, test-framework-hunit, test-framework-quickcheck2, text
-, union-find, wl-pprint
+, regex-applicative, split, stdenv, tasty, tasty-golden
+, tasty-hunit, tasty-quickcheck, text, union-find, wl-pprint
}:
mkDerivation {
pname = "elm-format";
- version = "0.3.1";
+ version = "0.4.0";
src = fetchgit {
url = "http://github.com/avh4/elm-format";
- sha256 = "04kl50kzvjf4i140dlhs6f9fd2wmk6cnvyfamx2xh8vbwbnwrkj4";
- rev = "0637f3772de2297d12ea35f5b66961e1d827552c";
+ sha256 = "199xh2w5cwcf79a8fv6j8dpk9h8a4cygrf8cfr9p7bvp2wvczibm";
+ rev = "d9cbe65c5f01d21b5a02c2f963aa4c9d3f0539d0";
};
isLibrary = false;
isExecutable = true;
@@ -23,14 +22,24 @@ mkDerivation {
text
];
testHaskellDepends = [
- aeson ansi-terminal base binary bytestring containers directory
- edit-distance filemanip filepath HUnit indents mtl parsec pretty
- process QuickCheck quickcheck-io regex-applicative split
- test-framework test-framework-hunit test-framework-quickcheck2 text
- union-find wl-pprint
+ aeson ansi-terminal ansi-wl-pprint base binary bytestring
+ containers directory edit-distance filemanip filepath HUnit indents
+ mtl optparse-applicative parsec pretty process QuickCheck
+ quickcheck-io regex-applicative split tasty tasty-golden
+ tasty-hunit tasty-quickcheck text union-find wl-pprint
];
jailbreak = true;
homepage = "http://elm-lang.org";
description = "A source code formatter for Elm";
license = stdenv.lib.licenses.bsd3;
+
+ # XXX: I've manually disabled tests, only the following test is failing
+ # ...
+ # ElmFormat.Cli
+ # format a single file in place: OK
+ # usage instructions: FAIL
+ # ...
+ # 1 out of 266 tests failed (0.50s)
+ # Test suite elm-format-tests: FAIL
+ doCheck = false;
}
diff --git a/pkgs/development/compilers/elm/packages/elm-make.nix b/pkgs/development/compilers/elm/packages/elm-make.nix
index 1fe4acc9e3b..bed7698cfe4 100644
--- a/pkgs/development/compilers/elm/packages/elm-make.nix
+++ b/pkgs/development/compilers/elm/packages/elm-make.nix
@@ -1,22 +1,23 @@
{ mkDerivation, aeson, ansi-terminal, ansi-wl-pprint, base, binary
, blaze-html, blaze-markup, bytestring, containers, directory
, elm-compiler, elm-package, fetchgit, filepath, mtl
-, optparse-applicative, stdenv, text, time, raw-strings-qq
+, optparse-applicative, raw-strings-qq, stdenv, text, time
}:
mkDerivation {
pname = "elm-make";
- version = "0.17";
+ version = "0.17.1";
src = fetchgit {
url = "https://github.com/elm-lang/elm-make";
- sha256 = "0ywi6iq2a3rb8a68ryqpq9y22536aa9k71wy7fcmrd5nwkmpwd2r";
- rev = "5f7b74567c43eff341048c7caceb247b51cdb8bb";
+ sha256 = "0k9w5gl48lhhr3n2iflf0vkb3w6al0xcbglgiw4fq1ssz3aa7ijw";
+ rev = "0a0a1f52ab04e2d68d60a5798722e1de30b47335";
};
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
aeson ansi-terminal ansi-wl-pprint base binary blaze-html
blaze-markup bytestring containers directory elm-compiler
- elm-package filepath mtl optparse-applicative text time raw-strings-qq
+ elm-package filepath mtl optparse-applicative raw-strings-qq text
+ time
];
jailbreak = true;
homepage = "http://elm-lang.org";
diff --git a/pkgs/development/compilers/elm/packages/elm-package.nix b/pkgs/development/compilers/elm/packages/elm-package.nix
index 7df5516b27a..ef2d4e9c8e7 100644
--- a/pkgs/development/compilers/elm/packages/elm-package.nix
+++ b/pkgs/development/compilers/elm/packages/elm-package.nix
@@ -1,29 +1,32 @@
{ mkDerivation, aeson, aeson-pretty, ansi-wl-pprint, base, binary
-, bytestring, containers, directory, elm-compiler, fetchgit
-, filepath, HTTP, http-client, http-client-tls, http-types, mtl
-, network, optparse-applicative, pretty, stdenv, text, time
-, unordered-containers, vector, zip-archive
+, bytestring, containers, directory, edit-distance, elm-compiler
+, fetchgit, filepath, HTTP, http-client, http-client-tls
+, http-types, mtl, network, optparse-applicative, parallel-io
+, pretty, stdenv, text, time, unordered-containers, vector
+, zip-archive
}:
mkDerivation {
pname = "elm-package";
- version = "0.17";
+ version = "0.17.1";
src = fetchgit {
url = "https://github.com/elm-lang/elm-package";
- sha256 = "0z86560a2f7w3ywqvzqghgz100z0yn8zsiixkw4lp5168krp4axg";
- rev = "fc0924210fe5a7c0af543769b1353dbb2ddf2f0c";
+ sha256 = "0dnn871py0pvzxsjjggy5ww2zj9g71c2dcnp38rcr4nbj8yxik85";
+ rev = "9011ccdbced1d06aa60de0e3096e609ef44d26dd";
};
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- aeson aeson-pretty base binary bytestring containers directory
- elm-compiler filepath HTTP http-client http-client-tls http-types
- mtl network text time unordered-containers vector zip-archive
+ aeson aeson-pretty ansi-wl-pprint base binary bytestring containers
+ directory edit-distance elm-compiler filepath HTTP http-client
+ http-client-tls http-types mtl network parallel-io text time
+ unordered-containers vector zip-archive
];
executableHaskellDepends = [
aeson aeson-pretty ansi-wl-pprint base binary bytestring containers
- directory elm-compiler filepath HTTP http-client http-client-tls
- http-types mtl network optparse-applicative pretty text time
- unordered-containers vector zip-archive
+ directory edit-distance elm-compiler filepath HTTP http-client
+ http-client-tls http-types mtl network optparse-applicative
+ parallel-io pretty text time unordered-containers vector
+ zip-archive
];
jailbreak = true;
homepage = "http://github.com/elm-lang/elm-package";
diff --git a/pkgs/development/compilers/elm/packages/elm-reactor-elm.nix b/pkgs/development/compilers/elm/packages/elm-reactor-elm.nix
index a84f9e48ba0..79043012590 100644
--- a/pkgs/development/compilers/elm/packages/elm-reactor-elm.nix
+++ b/pkgs/development/compilers/elm/packages/elm-reactor-elm.nix
@@ -1,22 +1,22 @@
{
"elm-lang/virtual-dom" = {
- version = "1.0.0";
- sha256 = "0pa8k04g9yfixahsb30j0rbhfh6hwdh7xmm2fvk0hkidw7b4xg57";
+ version = "1.1.0";
+ sha256 = "16g66cvvh85ddciq0ymaqfyq2bcz11pxn0g0dc1wx7bmlqx7q1jz";
};
"evancz/elm-markdown" = {
version = "3.0.0";
sha256 = "0r3hcim4mpn46ahv1q6sjp6i2viyp7jik6i71xgwmvfb9drns2p6";
};
"elm-lang/html" = {
- version = "1.0.0";
- sha256 = "16cr01yxkpkmgbgclp2p80nd62a6fjw3qipzjsgksrhwv9vv4gm4";
+ version = "1.1.0";
+ sha256 = "1v7pwxxd81qrfywb4rr199p2i9z77vjkbwjwm5gy1nxdpi8mb50y";
};
"elm-lang/svg" = {
- version = "1.0.0";
- sha256 = "0c29y6c58x2sq1bl29z1hr5gi2rlza8clk7ssgzmsf4xbvcczbjx";
+ version = "1.1.1";
+ sha256 = "0xzc0fq2kg797km0nq2f52w6xdffrl9l0y5zbkpa72w163zpxkkn";
};
"elm-lang/core" = {
- version = "4.0.0";
- sha256 = "04qgzgv90qyhjk55yw4szy50h2dqdlm0a2padbgn02yf4bb1b4nw";
+ version = "4.0.2";
+ sha256 = "1qjhfr3gd1qmfvna7iddspmk26v2nmgmgw9m6yyz10ygy3i9mla6";
};
}
diff --git a/pkgs/development/compilers/elm/packages/elm-reactor.nix b/pkgs/development/compilers/elm/packages/elm-reactor.nix
index 55b6b9ae416..cf6d33a5acb 100644
--- a/pkgs/development/compilers/elm/packages/elm-reactor.nix
+++ b/pkgs/development/compilers/elm/packages/elm-reactor.nix
@@ -1,22 +1,25 @@
-{ mkDerivation, base, blaze-html, blaze-markup, bytestring, cmdargs
-, directory, elm-compiler, fetchgit, filepath, fsnotify, mtl
-, snap-core, snap-server, stdenv, text, time, transformers
-, websockets, websockets-snap, elm-package, file-embed
+{ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring
+, cmdargs, containers, directory, elm-compiler, elm-package
+, fetchgit, file-embed, filepath, fsnotify, mtl, process, snap-core
+, snap-server, stdenv, template-haskell, text, time, transformers
+, unordered-containers, utf8-string, websockets, websockets-snap
}:
mkDerivation {
pname = "elm-reactor";
- version = "0.17";
+ version = "0.17.1";
src = fetchgit {
url = "https://github.com/elm-lang/elm-reactor";
- sha256 = "03lb6fcc5d02gflarxc54l71hbwdb73v423ffjz5hvlha6ixglv7";
- rev = "4781ad2fbb6cbcde0d659dec293bbed9c847ba71";
+ sha256 = "14kkqskvhkfznpl8cmjlvv3rp6ciqmdbxrmq6f20p3aznvkrdvf8";
+ rev = "7522d7ef379c5a4ffbba11b1be09ed04add08a63";
};
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
- base blaze-html blaze-markup bytestring cmdargs directory
- elm-compiler filepath fsnotify mtl snap-core snap-server text time
- transformers websockets websockets-snap elm-package file-embed
+ aeson base blaze-html blaze-markup bytestring cmdargs containers
+ directory elm-compiler elm-package file-embed filepath fsnotify mtl
+ process snap-core snap-server template-haskell text time
+ transformers unordered-containers utf8-string websockets
+ websockets-snap
];
jailbreak = true;
homepage = "http://elm-lang.org";
diff --git a/pkgs/development/compilers/elm/packages/elm-repl.nix b/pkgs/development/compilers/elm/packages/elm-repl.nix
index 3b17722b91d..e08c295f294 100644
--- a/pkgs/development/compilers/elm/packages/elm-repl.nix
+++ b/pkgs/development/compilers/elm/packages/elm-repl.nix
@@ -2,20 +2,21 @@
, containers, directory, elm-compiler, elm-package, fetchgit
, filepath, haskeline, HUnit, mtl, parsec, QuickCheck, stdenv
, test-framework, test-framework-hunit, test-framework-quickcheck2
+, text
}:
mkDerivation {
pname = "elm-repl";
- version = "0.17";
+ version = "0.17.1";
src = fetchgit {
url = "https://github.com/elm-lang/elm-repl";
- sha256 = "0bpmkm7q3a0h4hwlbwcnzaqgf6n5p1qw65z8kw84f52s5bndc0wc";
- rev = "95b4555cff6b6e2a55a4ea3dab00bfb39dfebf0d";
+ sha256 = "0nh2yfr0bi4rg1kak1gjaczpq56y1nii05b5y7hn6n4w651jkm28";
+ rev = "413ac0d4ee43c8542afd3041bbb7b8c903cd3d30";
};
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
base binary bytestring bytestring-trie cmdargs containers directory
- elm-compiler elm-package filepath haskeline mtl parsec
+ elm-compiler elm-package filepath haskeline mtl parsec text
];
testHaskellDepends = [
base bytestring bytestring-trie cmdargs directory elm-compiler
@@ -24,6 +25,6 @@ mkDerivation {
];
jailbreak = true;
homepage = "https://github.com/elm-lang/elm-repl";
- description = "A REPL for Elm";
+ description = "a REPL for Elm";
license = stdenv.lib.licenses.bsd3;
}
diff --git a/pkgs/development/compilers/elm/packages/release.nix b/pkgs/development/compilers/elm/packages/release.nix
index 531da88452f..6817d8e297f 100644
--- a/pkgs/development/compilers/elm/packages/release.nix
+++ b/pkgs/development/compilers/elm/packages/release.nix
@@ -2,7 +2,7 @@
# Please, do not modify it by hand!
{ callPackage }:
{
- version = "0.17";
+ version = "0.17.1";
packages = {
elm-compiler = callPackage ./elm-compiler.nix { };
elm-package = callPackage ./elm-package.nix { };
diff --git a/pkgs/development/compilers/elm/update-elm.rb b/pkgs/development/compilers/elm/update-elm.rb
index e27279604ae..a1f76945cd2 100755
--- a/pkgs/development/compilers/elm/update-elm.rb
+++ b/pkgs/development/compilers/elm/update-elm.rb
@@ -1,19 +1,19 @@
#!/usr/bin/env ruby
# Take those from https://github.com/elm-lang/elm-platform/blob/master/installers/BuildFromSource.hs
-$elm_version = "0.17"
-$elm_packages = { "elm-compiler" => "0.17",
- "elm-package" => "0.17",
- "elm-make" => "0.17",
- "elm-reactor" => "0.17",
- "elm-repl" => "0.17"
+$elm_version = "0.17.1"
+$elm_packages = { "elm-compiler" => "0.17.1",
+ "elm-package" => "0.17.1",
+ "elm-make" => "0.17.1",
+ "elm-reactor" => "0.17.1",
+ "elm-repl" => "0.17.1"
}
for pkg, ver in $elm_packages
- system "cabal2nix https://github.com/elm-lang/#{pkg} --revision refs/tags/#{ver} --jailbreak > #{pkg}.nix"
+ system "cabal2nix https://github.com/elm-lang/#{pkg} --revision refs/tags/#{ver} --jailbreak > packages/#{pkg}.nix"
end
-File.open("release.nix", 'w') do |file|
+File.open("packages/release.nix", 'w') do |file|
file.puts "# This file is auto-generated by ./update-elm.rb."
file.puts "# Please, do not modify it by hand!"
file.puts "{ callPackage }:"
diff --git a/pkgs/development/compilers/gcc-arm-embedded/default.nix b/pkgs/development/compilers/gcc-arm-embedded/default.nix
index 85d8d37b21c..65c0f2ea1c5 100644
--- a/pkgs/development/compilers/gcc-arm-embedded/default.nix
+++ b/pkgs/development/compilers/gcc-arm-embedded/default.nix
@@ -22,11 +22,11 @@ stdenv.mkDerivation {
};
buildInputs = [ bzip2 patchelf ];
-
+
dontPatchELF = true;
-
+
phases = "unpackPhase patchPhase installPhase";
-
+
installPhase = ''
mkdir -pv $out
cp -r ./* $out
@@ -42,8 +42,9 @@ stdenv.mkDerivation {
meta = with stdenv.lib; {
description = "Pre-built GNU toolchain from ARM Cortex-M & Cortex-R processors (Cortex-M0/M0+/M3/M4, Cortex-R4/R5/R7)";
- homepage = "https://launchpad.net/gcc-arm-embedded";
- license = licenses.gpl3;
+ homepage = https://launchpad.net/gcc-arm-embedded;
+ license = with licenses; [ bsd2 gpl2 gpl3 lgpl21 lgpl3 mit ];
+ maintainers = [ maintainers.rasendubi ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/development/compilers/ghc/6.10.2-binary.nix b/pkgs/development/compilers/ghc/6.10.2-binary.nix
index 81bdebdcbd4..2df019bd7f1 100644
--- a/pkgs/development/compilers/ghc/6.10.2-binary.nix
+++ b/pkgs/development/compilers/ghc/6.10.2-binary.nix
@@ -1,4 +1,4 @@
-{stdenv, lib, fetchurl, perl, libedit, ncurses, gmp}:
+{stdenv, lib, fetchurl, perl, libedit, ncurses5, gmp}:
stdenv.mkDerivation rec {
version = "6.10.2";
@@ -40,7 +40,7 @@ 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.out}/lib:${gmp.out}/lib" {} \;
+ --set-rpath "${libedit}/lib:${ncurses5.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
diff --git a/pkgs/development/compilers/ghc/7.0.4-binary.nix b/pkgs/development/compilers/ghc/7.0.4-binary.nix
index f0f54252b3f..9b9da4d4f78 100644
--- a/pkgs/development/compilers/ghc/7.0.4-binary.nix
+++ b/pkgs/development/compilers/ghc/7.0.4-binary.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, perl, ncurses, gmp, libiconv}:
+{stdenv, fetchurl, perl, ncurses5, gmp, libiconv}:
stdenv.mkDerivation rec {
version = "7.0.4";
@@ -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.out}/lib:${gmp.out}/lib" {} \;
+ --set-rpath "${ncurses5.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
diff --git a/pkgs/development/compilers/ghc/7.4.2-binary.nix b/pkgs/development/compilers/ghc/7.4.2-binary.nix
index 07137578585..5faae118d8c 100644
--- a/pkgs/development/compilers/ghc/7.4.2-binary.nix
+++ b/pkgs/development/compilers/ghc/7.4.2-binary.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, perl, ncurses, gmp, libiconv, makeWrapper}:
+{stdenv, fetchurl, perl, ncurses5, gmp, libiconv, makeWrapper}:
stdenv.mkDerivation rec {
version = "7.4.2";
@@ -61,7 +61,7 @@ stdenv.mkDerivation rec {
# find editline/gmp.
stdenv.lib.optionalString stdenv.isLinux ''
mkdir -p "$out/lib"
- ln -sv "${ncurses.out}/lib/libncurses.so" "$out/lib/libncurses${stdenv.lib.optionalString stdenv.is64bit "w"}.so.5"
+ ln -sv "${ncurses5.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.out}/lib" {} \;
diff --git a/pkgs/development/compilers/jsonnet/default.nix b/pkgs/development/compilers/jsonnet/default.nix
index da91bd3a547..d31654cdf2d 100644
--- a/pkgs/development/compilers/jsonnet/default.nix
+++ b/pkgs/development/compilers/jsonnet/default.nix
@@ -5,7 +5,7 @@ let version = "0.8.7"; in
stdenv.mkDerivation {
name = "jsonnet-${version}";
- srcs = fetchFromGitHub {
+ src = fetchFromGitHub {
rev = "v${version}";
owner = "google";
repo = "jsonnet";
diff --git a/pkgs/development/compilers/kotlin/default.nix b/pkgs/development/compilers/kotlin/default.nix
index 871d4d568cd..ba546f6f51f 100644
--- a/pkgs/development/compilers/kotlin/default.nix
+++ b/pkgs/development/compilers/kotlin/default.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, makeWrapper, jre, unzip }:
stdenv.mkDerivation rec {
- version = "1.0.2";
+ version = "1.0.3";
name = "kotlin-${version}";
src = fetchurl {
- url = "https://github.com/JetBrains/kotlin/releases/download/${version}/kotlin-compiler-${version}.zip";
- sha256 = "1m3j1ca0kvryqarvpscrb9mvmsscd1sc8vfjsz03br6h2hwmnr3z";
+ url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}.zip";
+ sha256 = "15ywjv46i2d7zgg2b3vdklc6agr62nvn0gkz7k9hql78ccfmyq9p";
};
propagatedBuildInputs = [ jre ] ;
diff --git a/pkgs/development/compilers/orc/default.nix b/pkgs/development/compilers/orc/default.nix
index 1488736a480..057b51ce80c 100644
--- a/pkgs/development/compilers/orc/default.nix
+++ b/pkgs/development/compilers/orc/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
- name = "orc-0.4.24";
+ name = "orc-0.4.25";
src = fetchurl {
url = "http://gstreamer.freedesktop.org/src/orc/${name}.tar.xz";
- sha256 = "16ykgdrgxr6pfpy931p979cs68klvwmk3ii1k0a00wr4nn9x931k";
+ sha256 = "1lak3hyvvb0w9avzmf0a8vayb7vqhj4m709q1czlhvgjb15dbcf1";
};
outputs = [ "dev" "out" ];
diff --git a/pkgs/development/compilers/path64/default.nix b/pkgs/development/compilers/path64/default.nix
deleted file mode 100644
index 694bdc8990f..00000000000
--- a/pkgs/development/compilers/path64/default.nix
+++ /dev/null
@@ -1,35 +0,0 @@
-{stdenv, fetchgit, perl, flex, bison, gmp, mpfr, cmake}:
-
-assert stdenv.system == "x86_64-linux";
-
-stdenv.mkDerivation {
- name = "path64-2010-07-02";
-
- src = fetchgit {
- url = git://github.com/path64/compiler.git;
- rev = "e17f7f952831bbf1d996";
- sha256 = "fa1320959e1131557d5f82e98f4621a222ec45e1d6e0e7f271d2c13de4fd0dd1";
- };
-
- 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.out}/lib/ld-linux-x86-64.so.2, src/include/main_defs.h.in
- '';
-
- cmakeFlags = ''
- -DPATH64_ENABLE_HUGEPAGES=ON
- -DPATH64_ENABLE_MATHLIBS=ON -DPATH64_ENABLE_OPENMP=ON
- -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.out}/lib
- '';
-
- makeFlags = "-j4";
-
- installPhase = ''
- exit 1;
- '';
-
- buildInputs = [ perl flex bison gmp mpfr cmake ];
-}
diff --git a/pkgs/development/compilers/rust/bootstrap.nix b/pkgs/development/compilers/rust/bootstrap.nix
index 300f6929453..bfc82c4317d 100644
--- a/pkgs/development/compilers/rust/bootstrap.nix
+++ b/pkgs/development/compilers/rust/bootstrap.nix
@@ -50,7 +50,11 @@ rec {
--set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
"$out/bin/rustc"
- wrapProgram "$out/bin/rustc"
+ # Do NOT, I repeat, DO NOT use `wrapProgram` on $out/bin/rustc
+ # (or similar) here. It causes strange effects where rustc loads
+ # the wrong libraries in a bootstrap-build causing failures that
+ # are very hard to track dow. For details, see
+ # https://github.com/rust-lang/rust/issues/34722#issuecomment-232164943
'';
};
diff --git a/pkgs/development/compilers/rust/default.nix b/pkgs/development/compilers/rust/default.nix
index d1e7460fa54..adabdd71a1d 100644
--- a/pkgs/development/compilers/rust/default.nix
+++ b/pkgs/development/compilers/rust/default.nix
@@ -2,31 +2,31 @@
targets ? [], targetToolchains ? [], targetPatches ? [] }:
let
- rustPlatform = recurseIntoAttrs (makeRustPlatform (callPackage ./bootstrap.nix {}) rustPlatform);
- rustSnapshotPlatform = recurseIntoAttrs (makeRustPlatform (callPackage ./snapshot.nix {}) rustPlatform);
+ rustPlatform = recurseIntoAttrs (makeRustPlatform (callPackage ./bootstrap.nix {}));
in
rec {
rustc = callPackage ./rustc.nix {
- shortVersion = "1.9.0";
+ shortVersion = "1.10.0";
isRelease = true;
forceBundledLLVM = false;
configureFlags = [ "--release-channel=stable" ];
- srcRev = "e4e8b666850a763fdf1c3c2c142856ab51e32779";
- srcSha = "1pz4qx70mqv78fxm4w1mq7csk5pssq4qmr2vwwb5v8hyx03caff8";
- patches = [ ./patches/remove-uneeded-git.patch ]
- ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch;
+ srcRev = "cfcb716cf0961a7e3a4eceac828d94805cf8140b";
+ srcSha = "15i81ybh32xymmkyz3bkb5bdgi9hx8nb0sh00ac6qba6w8ljpii9";
+ patches = [
+ ./patches/disable-lockfile-check.patch
+ ] ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch;
inherit targets;
inherit targetPatches;
inherit targetToolchains;
- rustPlatform = rustSnapshotPlatform;
+ inherit rustPlatform;
};
cargo = callPackage ./cargo.nix rec {
- version = "0.10.0";
+ version = "0.11.0";
srcRev = "refs/tags/${version}";
- srcSha = "06scvx5qh60mgvlpvri9ig4np2fsnicsfd452fi9w983dkxnz4l2";
- depsSha256 = "0js4697n7v93wnqnpvamhp446w58llj66za5hkd6wannmc0gsy3b";
+ srcSha = "0ic2093bmwiw6vl2l9yhip87ni6dbz7dhrizy9wdx61229k16hc4";
+ depsSha256 = "0690sgn6fcay7sazlmrbbn4jbhnvmznrpz5z3rvkbaifkjrg4w6d";
inherit rustc; # the rustc that will be wrapped by cargo
inherit rustPlatform; # used to build cargo
};
diff --git a/pkgs/development/compilers/rust/patches/remove-uneeded-git.patch b/pkgs/development/compilers/rust/patches/remove-uneeded-git.patch
deleted file mode 100644
index 3c68d777f88..00000000000
--- a/pkgs/development/compilers/rust/patches/remove-uneeded-git.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-diff --git a/src/etc/tidy.py b/src/etc/tidy.py
-index 9f5f919..a607180 100644
---- a/src/etc/tidy.py
-+++ b/src/etc/tidy.py
-@@ -66,13 +66,9 @@ def interesting_file(f):
- return any(os.path.splitext(f)[1] == ext for ext in interesting_files)
-
-
--# Be careful to support Python 2.4, 2.6, and 3.x here!
--config_proc = subprocess.Popen(["git", "config", "core.autocrlf"],
-- stdout=subprocess.PIPE)
--result = config_proc.communicate()[0]
-
- true = "true".encode('utf8')
--autocrlf = result.strip() == true if result is not None else False
-+autocrlf = False
-
- current_name = ""
- current_contents = ""
diff --git a/pkgs/development/compilers/rust/patches/use-rustc-1.9.0.patch b/pkgs/development/compilers/rust/patches/use-rustc-1.9.0.patch
deleted file mode 100644
index 150306744be..00000000000
--- a/pkgs/development/compilers/rust/patches/use-rustc-1.9.0.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 2710f3c8ae142abe1720b3476cd1ca60cee0c077 Mon Sep 17 00:00:00 2001
-From: David Craven
-Date: Wed, 1 Jun 2016 00:12:35 +0200
-Subject: [PATCH] Patch stage0.txt to use rustc 1.9.0
-
----
- src/stage0.txt | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/src/stage0.txt b/src/stage0.txt
-index 58b7f8f..3c84cab 100644
---- a/src/stage0.txt
-+++ b/src/stage0.txt
-@@ -12,6 +12,6 @@
- # tarball for a stable release you'll likely see `1.x.0-$date` where `1.x.0` was
- # released on `$date`
-
--rustc: beta-2016-04-13
--rustc_key: c2743eb4
-+rustc: 1.9.0-2016-05-24
-+rustc_key: d16b8f0e
- cargo: nightly-2016-04-10
---
-2.8.3
-
diff --git a/pkgs/development/compilers/rust/snapshot.nix b/pkgs/development/compilers/rust/snapshot.nix
deleted file mode 100644
index 47f271b18e0..00000000000
--- a/pkgs/development/compilers/rust/snapshot.nix
+++ /dev/null
@@ -1,65 +0,0 @@
-/* NOTE: Rust 1.9.0 is the last version that uses snapshots
- This file can be deleted after the 1.10.0 release and bootstrap.nix
- can be used instead
-*/
-{ stdenv, fetchurl, callPackage }:
-
-let
- platform = if stdenv.system == "i686-linux"
- then "linux-i386"
- else if stdenv.system == "x86_64-linux"
- then "linux-x86_64"
- else if stdenv.system == "i686-darwin"
- then "macos-i386"
- else if stdenv.system == "x86_64-darwin"
- then "macos-x86_64"
- else abort "no snapshot to bootstrap for this platform (missing platform url suffix)";
-
- /* Rust is bootstrapped from an earlier built version. We need
- to fetch these earlier versions, which vary per platform.
- The shapshot info you want can be found at
- https://github.com/rust-lang/rust/blob/{$shortVersion}/src/snapshots.txt
- with the set you want at the top. Make sure this is the latest snapshot
- for the tagged release and not a snapshot in the current HEAD.
- */
-
- snapshotHashLinux686 = "0e0e4448b80d0a12b75485795244bb3857a0a7ef";
- snapshotHashLinux64 = "1273b6b6aed421c9e40c59f366d0df6092ec0397";
- snapshotHashDarwin686 = "9f9c0b4a2db09acbce54b792fb8839a735585565";
- snapshotHashDarwin64 = "52570f6fd915b0210a9be98cfc933148e16a75f8";
- snapshotDate = "2016-03-18";
- snapshotRev = "235d774";
-
- snapshotHash = if stdenv.system == "i686-linux"
- then snapshotHashLinux686
- else if stdenv.system == "x86_64-linux"
- then snapshotHashLinux64
- else if stdenv.system == "i686-darwin"
- then snapshotHashDarwin686
- else if stdenv.system == "x86_64-darwin"
- then snapshotHashDarwin64
- else abort "no snapshot for platform ${stdenv.system}";
-
- snapshotName = "rust-stage0-${snapshotDate}-${snapshotRev}-${platform}-${snapshotHash}.tar.bz2";
-in
-
-rec {
- rustc = stdenv.mkDerivation {
- name = "rustc-snapshot";
- src = fetchurl {
- url = "http://static.rust-lang.org/stage0-snapshots/${snapshotName}";
- sha1 = snapshotHash;
- };
- dontStrip = true;
- installPhase = ''
- mkdir -p "$out"
- cp -r bin "$out/bin"
- '' + stdenv.lib.optionalString stdenv.isLinux ''
- patchelf --interpreter "${stdenv.glibc.out}/lib/${stdenv.cc.dynamicLinker}" \
- --set-rpath "${stdenv.cc.cc.lib}/lib/:${stdenv.cc.cc.lib}/lib64/" \
- "$out/bin/rustc"
- '';
- };
-
- cargo = null;
-}
diff --git a/pkgs/development/compilers/sbcl/default.nix b/pkgs/development/compilers/sbcl/default.nix
index e9a1624df1d..296f81d271d 100644
--- a/pkgs/development/compilers/sbcl/default.nix
+++ b/pkgs/development/compilers/sbcl/default.nix
@@ -9,11 +9,11 @@
stdenv.mkDerivation rec {
name = "sbcl-${version}";
- version = "1.3.6";
+ version = "1.3.7";
src = fetchurl {
url = "mirror://sourceforge/project/sbcl/sbcl/${version}/${name}-source.tar.bz2";
- sha256 = "1ndha72ji30qkq3rq76sp0yrka0679agg97x9imda2pyv0dsq5zh";
+ sha256 = "0fjdqnb2rsm2vi9794ywp27jr239ddvzc4xfr0dk49jd4v7p2kc5";
};
patchPhase = ''
diff --git a/pkgs/development/compilers/urweb/default.nix b/pkgs/development/compilers/urweb/default.nix
index eebc8a56765..d9c448970c9 100644
--- a/pkgs/development/compilers/urweb/default.nix
+++ b/pkgs/development/compilers/urweb/default.nix
@@ -4,11 +4,11 @@
stdenv.mkDerivation rec {
name = "urweb-${version}";
- version = "20151220";
+ version = "20160621";
src = fetchurl {
url = "http://www.impredicative.com/ur/${name}.tgz";
- sha256 = "155maalm4l1ni7az3yqs0lrgl5f2xr3pz4118ag1hnk82qldd4s5";
+ sha256 = "08km96hli5yp754nsxxjzih2la0m89j5wc2cq12rkas43nqqgr65";
};
buildInputs = [ openssl mlton mysql postgresql sqlite ];
diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json
index 3dcd53a124b..9e1b4369136 100644
--- a/pkgs/development/go-modules/libs.json
+++ b/pkgs/development/go-modules/libs.json
@@ -1564,5 +1564,257 @@
"rev": "7cef48da76dca6a496faa7fe63e39ed665cbd219",
"sha256": "0hw11jj5r3f6qwydg41nc3c6aadlbkhc1qpxra2609lis0qa9h4r"
}
+ },
+ {
+ "goPackagePath": "github.com/tdewolff/buffer",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/tdewolff/buffer",
+ "rev": "0edfcb7b750146ff879e95831de2ef53605a5cb5",
+ "sha256": "1mdd4k9byp22mw0a399j3w73zjb5g0vn58g76rjy7ajb0dzm80vl"
+ }
+ },
+ {
+ "goPackagePath": "github.com/tdewolff/parse",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/tdewolff/parse",
+ "rev": "34d5c1160d4503da4b456e5094609f2331d6dde3",
+ "sha256": "0hxf65fgkrc1q4p99p33xxxy1s6wxpn1vfsnqf9p846awwbqsy0v"
+ }
+ },
+ {
+ "goPackagePath": "github.com/tdewolff/strconv",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/tdewolff/strconv",
+ "rev": "3e8091f4417ebaaa3910da63a45ea394ebbfb0e3",
+ "sha256": "00w2mryfjhz3vaqzxvbwvyhi1vgpc1s4xfv1r9hxn8hwa078q5gp"
+ }
+ },
+ {
+ "goPackagePath": "github.com/matryer/try",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/matryer/try",
+ "rev": "93d30e50512f879b73829eb79867df38084bcd31",
+ "sha256": "0dmc8iar9685ks1ba3vnycjsx8qxwyqv51jb7677dvwnzbqhgw6f"
+ }
+ },
+ {
+ "goPackagePath": "github.com/yosssi/ace",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/yosssi/ace",
+ "rev": "71afeb714739f9d5f7e1849bcd4a0a5938e1a70d",
+ "sha256": "15k7ji8m3nqbwhnsvp82j4qa45sgvwv2giliw2xkdwi2g7mfrn8k"
+ }
+ },
+ {
+ "goPackagePath": "github.com/spf13/viper",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/spf13/viper",
+ "rev": "c1ccc378a054ea8d4e38d8c67f6938d4760b53dd",
+ "sha256": "0lpdzalqhqp9pwsg63inkxwjji7m0pp42ryw1499bqbjp97hriq0"
+ }
+ },
+ {
+ "goPackagePath": "github.com/spf13/pflag",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/spf13/pflag",
+ "rev": "367864438f1b1a3c7db4da06a2f55b144e6784e0",
+ "sha256": "03c6654hv4v1fj79i5sri3p9q2afqgicka4nicb6fr4kcfkkgbfp"
+ }
+ },
+ {
+ "goPackagePath": "github.com/spf13/jwalterweatherman",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/spf13/jwalterweatherman",
+ "rev": "33c24e77fb80341fe7130ee7c594256ff08ccc46",
+ "sha256": "1knvzspqzc2bh58q16zggzc8gcabjp5gr7zk4k7nx5ij4092cg0z"
+ }
+ },
+ {
+ "goPackagePath": "github.com/fsnotify/fsnotify",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/fsnotify/fsnotify",
+ "rev": "30411dbcefb7a1da7e84f75530ad3abe4011b4f8",
+ "sha256": "0kbpvyi6p9942k0vmcw5z13mja47f7hq7nqd332pn2zydss6kddm"
+ }
+ },
+ {
+ "goPackagePath": "github.com/ogier/pflag",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/ogier/pflag",
+ "rev": "45c278ab3607870051a2ea9040bb85fcb8557481",
+ "sha256": "0620v75wppfd84d95n312wpngcb73cph4q3ivs1h0waljfnsrd5l"
+ }
+ },
+ {
+ "goPackagePath": "github.com/magiconair/properties",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/magiconair/properties",
+ "rev": "c265cfa48dda6474e208715ca93e987829f572f8",
+ "sha256": "1ab9ywwsrdq5mvrcwl7m3276y1q4dfwinbv88vgpqwcqai9wkpp3"
+ }
+ },
+ {
+ "goPackagePath": "github.com/bep/inflect",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/bep/inflect",
+ "rev": "b896c45f5af983b1f416bdf3bb89c4f1f0926f69",
+ "sha256": "0drv6in94n7lmap4ajvgqlvdcbpn8alinfdzywzpihvzbx21b3h3"
+ }
+ },
+ {
+ "goPackagePath": "github.com/eknkc/amber",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/eknkc/amber",
+ "rev": "91774f050c1453128146169b626489e60108ec03",
+ "sha256": "1rb8bm35h8a77q4py6r3818cpwh7kpq1kh2ib2rb4i5s7z75ciis"
+ }
+ },
+ {
+ "goPackagePath": "github.com/spf13/afero",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/spf13/afero",
+ "rev": "1a8ecf8b9da1fb5306e149e83128fc447957d2a8",
+ "sha256": "1nrg0gmqnl4h6zjmi4mdhrwnl3l34nzxpq2hsr3nizfvrx5gqbzw"
+ }
+ },
+ {
+ "goPackagePath": "github.com/spf13/cast",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/spf13/cast",
+ "rev": "27b586b42e29bec072fe7379259cc719e1289da6",
+ "sha256": "1y73pfxdvm1bfpghwsfxj8gl4miv6fpzi9azxcknp6rcjn1gmq0x"
+ }
+ },
+ {
+ "goPackagePath": "github.com/spf13/cobra",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/spf13/cobra",
+ "rev": "bc81c21bd0d8be5ba2d6630a505d79d4467566e7",
+ "sha256": "1sp8gl25cjx0yibh6q1i8d5rbxpwaal3z8vz372wfmbz002say8r"
+ }
+ },
+ {
+ "goPackagePath": "github.com/dchest/cssmin",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/dchest/cssmin",
+ "rev": "fb8d9b44afdc258bfff6052d3667521babcb2239",
+ "sha256": "09sdijfx5d05z4cd5k6lhl7k3kbpdf2amzlngv15h5v0fff9qw4s"
+ }
+ },
+ {
+ "goPackagePath": "github.com/spf13/fsync",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/spf13/fsync",
+ "rev": "eefee59ad7de621617d4ff085cf768aab4b919b1",
+ "sha256": "0d56xdczawikyczc12i661qc79dbv4q8ihlj4p20zsjkyxxym59p"
+ }
+ },
+ {
+ "goPackagePath": "github.com/cpuguy83/go-md2man",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/cpuguy83/go-md2man",
+ "rev": "2724a9c9051aa62e9cca11304e7dd518e9e41599",
+ "sha256": "1j2bigs7ixy20cdqd246nxr417md2qcyvkfk3x94992cr88d0vyj"
+ }
+ },
+ {
+ "goPackagePath": "github.com/miekg/mmark",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/miekg/mmark",
+ "rev": "adb5c3e2e9f3e7da9bd25291edda8e66c0045a2a",
+ "sha256": "0fycz17fj37fh95lfshdrfwrgkzi3hl1kgnily0cxc9zwfbap3qa"
+ }
+ },
+ {
+ "goPackagePath": "github.com/spf13/nitro",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/spf13/nitro",
+ "rev": "24d7ef30a12da0bdc5e2eb370a79c659ddccf0e8",
+ "sha256": "143sbpx0jdgf8f8ayv51x6l4jg6cnv6nps6n60qxhx4vd90s6mib"
+ }
+ },
+ {
+ "goPackagePath": "github.com/PuerkitoBio/purell",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/PuerkitoBio/purell",
+ "rev": "1d5d1cfad45d42ec5f81fa8ef23de09cebc6dcc3",
+ "sha256": "12k82576ka21c6572yy2v81kxpjrgf9mffjlz469g3vs0g3nkwlb"
+ }
+ },
+ {
+ "goPackagePath": "github.com/opennota/urlesc",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/opennota/urlesc",
+ "rev": "5fa9ff0392746aeae1c4b37fcc42c65afa7a9587",
+ "sha256": "0dppkmfs0hb5vcqli191x9yss5vvlx29qxjcywhdfirc89rn0sni"
+ }
+ },
+ {
+ "goPackagePath": "github.com/pkg/sftp",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/pkg/sftp",
+ "rev": "d4c18e7ffdc496a38de67dde6e29b2f364afc472",
+ "sha256": "0cnl83k317gxskayfj3xwr4bl0vcbjvlwi3q0vjwvircynb6xscj"
+ }
+ },
+ {
+ "goPackagePath": "github.com/kr/fs",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/kr/fs",
+ "rev": "2788f0dbd16903de03cb8186e5c7d97b69ad387b",
+ "sha256": "1c0fipl4rsh0v5liq1ska1dl83v3llab4k6lm8mvrx9c4dyp71ly"
+ }
+ },
+ {
+ "goPackagePath": "github.com/kyokomi/emoji",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/kyokomi/emoji",
+ "rev": "17c5e7085c9d59630aa578df67f4469481fbe7a9",
+ "sha256": "0qs4mi7z1lghiyiw7s2bz5y959wj9ifmhyqh39xwqk69d690jwlp"
+ }
+ },
+ {
+ "goPackagePath": "github.com/pkg/errors",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/pkg/errors",
+ "rev": "494e70f7620561491c2ca11e185bbef4b70060da",
+ "sha256": "0a0961ixl67vryhnzyzhai357c9n9a7v3vpkpqrh32spn033gjd9"
+ }
+ },
+ {
+ "goPackagePath": "github.com/PuerkitoBio/urlesc",
+ "fetch": {
+ "type": "git",
+ "url": "https://github.com/PuerkitoBio/urlesc",
+ "rev": "5fa9ff0392746aeae1c4b37fcc42c65afa7a9587",
+ "sha256": "0dppkmfs0hb5vcqli191x9yss5vvlx29qxjcywhdfirc89rn0sni"
+ }
}
]
diff --git a/pkgs/development/guile-modules/guile-sdl/default.nix b/pkgs/development/guile-modules/guile-sdl/default.nix
index 4a0f23457ba..94f3418b031 100644
--- a/pkgs/development/guile-modules/guile-sdl/default.nix
+++ b/pkgs/development/guile-modules/guile-sdl/default.nix
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ guile ];
buildInputs = [
- SDL SDL_image SDL_ttf SDL_mixer
+ SDL.dev SDL_image SDL_ttf SDL_mixer
];
GUILE_AUTO_COMPILE = 0;
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 19a5581480c..d60f9b641df 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -204,11 +204,6 @@ self: super: {
# on darwin: https://github.com/NixOS/cabal2nix/issues/146.
hinotify = if pkgs.stdenv.isDarwin then self.hfsevents else super.hinotify;
- # hfsevents needs CoreServices in scope
- hfsevents = if pkgs.stdenv.isDarwin
- then with pkgs.darwin.apple_sdk.frameworks; addBuildTool (addBuildDepends super.hfsevents [Cocoa]) CoreServices
- else super.hfsevents;
-
# FSEvents API is very buggy and tests are unreliable. See
# http://openradar.appspot.com/10207999 and similar issues.
# https://github.com/haskell-fswatch/hfsnotify/issues/62
@@ -237,6 +232,15 @@ self: super: {
'';
})) pkgs.libcxx;
+ inline-c-cpp = if !pkgs.stdenv.isDarwin
+ then super.inline-c-cpp
+ else addExtraLibrary (overrideCabal super.inline-c-cpp (drv:
+ {
+ postPatch = ''
+ substituteInPlace inline-c-cpp.cabal --replace stdc++ c++
+ '';
+ })) pkgs.libcxx;
+
# tests don't compile for some odd reason
jwt = dontCheck super.jwt;
@@ -626,8 +630,20 @@ self: super: {
# Uses OpenGL in testing
caramia = dontCheck super.caramia;
+ llvm-general-darwin = overrideCabal (super.llvm-general.override { llvm-config = pkgs.llvm_35; }) (drv: {
+ preConfigure = ''
+ sed -i llvm-general.cabal \
+ -e 's,extra-libraries: stdc++,extra-libraries: c++,'
+ '';
+ configureFlags = (drv.configureFlags or []) ++ ["--extra-include-dirs=${pkgs.libcxx}/include/c++/v1"];
+ librarySystemDepends = [ pkgs.libcxx ] ++ drv.librarySystemDepends or [];
+ });
+
# Supports only 3.5 for now, https://github.com/bscarlet/llvm-general/issues/142
- llvm-general = super.llvm-general.override { llvm-config = pkgs.llvm_35; };
+ llvm-general =
+ if pkgs.stdenv.isDarwin
+ then self.llvm-general-darwin
+ else super.llvm-general.override { llvm-config = pkgs.llvm_35; };
# Needs help finding LLVM.
spaceprobe = addBuildTool super.spaceprobe self.llvmPackages.llvm;
diff --git a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix
index b4ea8fd95b9..7707733a930 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix
@@ -41,7 +41,7 @@ self: super: {
unix = null;
# These packages are core libraries in GHC 7.10.x, but not here.
- binary = self.binary_0_8_4_0;
+ binary = self.binary_0_8_4_1;
deepseq = self.deepseq_1_3_0_1;
haskeline = self.haskeline_0_7_2_1;
hoopl = self.hoopl_3_10_2_0;
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 4131e33234b..ab8a091aabe 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
@@ -63,9 +63,6 @@ self: super: {
nats = dontHaddock super.nats;
bytestring-builder = dontHaddock super.bytestring-builder;
- # requires filepath >=1.1 && <1.4
- Glob = doJailbreak super.Glob;
-
# Setup: At least the following dependencies are missing: base <4.8
hspec-expectations = overrideCabal super.hspec-expectations (drv: {
postPatch = "sed -i -e 's|base < 4.8|base|' hspec-expectations.cabal";
@@ -211,6 +208,8 @@ self: super: {
semigroups_0_18_1 = addBuildDepends super.semigroups (with self; [hashable tagged text unordered-containers]);
semigroups = addBuildDepends super.semigroups (with self; [hashable tagged text unordered-containers]);
intervals = addBuildDepends super.intervals (with self; [doctest QuickCheck]);
+ Glob_0_7_9 = addBuildDepends super.Glob_0_7_9 (with self; [semigroups]);
+ Glob = addBuildDepends super.Glob (with self; [semigroups]);
# Moved out from common as no longer the case for GHC8
ghc-mod = super.ghc-mod.override { cabal-helper = self.cabal-helper_0_6_3_1; };
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix
index 2507f9d6aed..740035f0bb6 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix
@@ -42,7 +42,7 @@ self: super: {
xhtml = self.xhtml_3000_2_1;
# https://github.com/haskell/cabal/issues/2322
- Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = self.binary_0_8_4_0; process = self.process_1_2_3_0; };
+ Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = self.binary_0_8_4_1; process = self.process_1_2_3_0; };
# Newer versions don't compile.
Cabal_1_18_1_7 = dontJailbreak super.Cabal_1_18_1_7;
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
index 980f4159bc1..aca043e240b 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
@@ -41,10 +41,10 @@ self: super: {
xhtml = self.xhtml_3000_2_1;
# https://github.com/haskell/cabal/issues/2322
- Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_8_4_0; };
+ Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_8_4_1; };
# Avoid inconsistent 'binary' versions from 'text' and 'Cabal'.
- cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_4_0; });
+ cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_4_1; });
# https://github.com/tibbe/hashable/issues/85
hashable = dontCheck super.hashable;
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
index b48f9cfd33c..39652da5a5d 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
@@ -40,10 +40,10 @@ self: super: {
xhtml = self.xhtml_3000_2_1;
# https://github.com/haskell/cabal/issues/2322
- Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_8_4_0; };
+ Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_8_4_1; };
# Avoid inconsistent 'binary' versions from 'text' and 'Cabal'.
- cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_4_0; });
+ cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_4_1; });
# https://github.com/tibbe/hashable/issues/85
hashable = dontCheck super.hashable;
diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
index 976baab0aa4..b213780ff4b 100644
--- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
+++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
@@ -90,6 +90,14 @@ package-maintainers:
khumba:
- goatee
- goatee-gtk
+ - hoppy-docs
+ - hoppy-generator
+ - hoppy-runtime
+ - hoppy-std
+ - qtah-cpp-qt5
+ - qtah-examples
+ - qtah-generator
+ - qtah-qt5
psibi:
- path-pieces
- persistent
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix
index 0de5fc2f95f..fe80fc5aad3 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix
@@ -199,6 +199,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -434,6 +435,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -798,6 +800,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1828,6 +1831,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_4_0_2";
@@ -2088,7 +2092,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2198,6 +2204,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2518,6 +2525,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-conduit" = doDistribute super."csv-conduit_0_6_3";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
@@ -2594,6 +2602,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2606,6 +2615,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2659,6 +2669,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3114,6 +3125,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3439,6 +3451,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3597,6 +3610,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3607,6 +3624,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3693,6 +3711,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4428,9 +4447,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4510,6 +4531,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4896,6 +4918,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4942,6 +4965,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5213,6 +5237,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_2_2";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5410,6 +5435,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5450,11 +5476,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_2";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5720,6 +5748,7 @@ self: super: {
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_2_0_2";
"lifted-base" = doDistribute super."lifted-base_0_2_2_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5834,6 +5863,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_9_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = doDistribute super."logfloat_0_12_1";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5933,6 +5963,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = dontDistribute super."managed";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5997,6 +6028,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = dontDistribute super."mbox";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6102,6 +6134,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6150,6 +6183,7 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_5_0_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11";
"monad-logger-json" = dontDistribute super."monad-logger-json";
@@ -6347,6 +6381,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6390,6 +6425,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6685,6 +6721,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = dontDistribute super."pagerduty";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6810,6 +6847,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6934,6 +6972,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7224,6 +7263,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7262,6 +7305,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7499,6 +7543,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7749,6 +7794,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7767,6 +7813,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7863,6 +7910,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7980,6 +8028,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_0";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -8020,6 +8069,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8119,6 +8169,7 @@ self: super: {
"sodium" = doDistribute super."sodium_0_11_0_2";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8212,6 +8263,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8450,6 +8502,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8490,6 +8543,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8635,6 +8689,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8671,6 +8726,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9133,6 +9189,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9375,6 +9432,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix
index e9649ded74e..c9b8a0406e9 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix
@@ -199,6 +199,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -434,6 +435,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -798,6 +800,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1828,6 +1831,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_4_0_2";
@@ -2088,7 +2092,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2198,6 +2204,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2518,6 +2525,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-conduit" = doDistribute super."csv-conduit_0_6_3";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
@@ -2594,6 +2602,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2606,6 +2615,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2659,6 +2669,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3114,6 +3125,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3439,6 +3451,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3597,6 +3610,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3607,6 +3624,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3693,6 +3711,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4428,9 +4447,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4510,6 +4531,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4896,6 +4918,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4942,6 +4965,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5213,6 +5237,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_2_2";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5410,6 +5435,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5450,11 +5476,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_2";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5720,6 +5748,7 @@ self: super: {
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_2_0_2";
"lifted-base" = doDistribute super."lifted-base_0_2_2_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5834,6 +5863,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_9_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = doDistribute super."logfloat_0_12_1";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5933,6 +5963,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = dontDistribute super."managed";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5997,6 +6028,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = dontDistribute super."mbox";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6102,6 +6134,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6150,6 +6183,7 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_5_0_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11";
"monad-logger-json" = dontDistribute super."monad-logger-json";
@@ -6347,6 +6381,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6390,6 +6425,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6685,6 +6721,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = dontDistribute super."pagerduty";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6810,6 +6847,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6934,6 +6972,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7224,6 +7263,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7262,6 +7305,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7499,6 +7543,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7749,6 +7794,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7767,6 +7813,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7863,6 +7910,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7980,6 +8028,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_0";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -8020,6 +8069,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8119,6 +8169,7 @@ self: super: {
"sodium" = doDistribute super."sodium_0_11_0_2";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8212,6 +8263,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8450,6 +8502,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8490,6 +8543,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8635,6 +8689,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8671,6 +8726,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9133,6 +9189,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9375,6 +9432,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix
index ddd270cab51..0f2b41e0e52 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix
@@ -199,6 +199,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -434,6 +435,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -798,6 +800,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1828,6 +1831,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_4_0_2";
@@ -2088,7 +2092,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2198,6 +2204,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2518,6 +2525,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-conduit" = doDistribute super."csv-conduit_0_6_3";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
@@ -2594,6 +2602,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2606,6 +2615,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2659,6 +2669,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3114,6 +3125,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3439,6 +3451,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3597,6 +3610,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3607,6 +3624,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3693,6 +3711,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4428,9 +4447,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4510,6 +4531,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4896,6 +4918,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4942,6 +4965,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5213,6 +5237,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_2_2";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5410,6 +5435,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5450,11 +5476,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_2";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5720,6 +5748,7 @@ self: super: {
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_2_0_2";
"lifted-base" = doDistribute super."lifted-base_0_2_2_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5834,6 +5863,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_9_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = doDistribute super."logfloat_0_12_1";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5933,6 +5963,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = dontDistribute super."managed";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5997,6 +6028,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = dontDistribute super."mbox";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6102,6 +6134,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6150,6 +6183,7 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_5_0_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11";
"monad-logger-json" = dontDistribute super."monad-logger-json";
@@ -6347,6 +6381,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6390,6 +6425,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6685,6 +6721,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = dontDistribute super."pagerduty";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6810,6 +6847,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6934,6 +6972,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7224,6 +7263,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7262,6 +7305,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7499,6 +7543,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7749,6 +7794,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7767,6 +7813,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7863,6 +7910,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7980,6 +8028,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_0";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -8020,6 +8069,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8119,6 +8169,7 @@ self: super: {
"sodium" = doDistribute super."sodium_0_11_0_2";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8212,6 +8263,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8450,6 +8502,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8490,6 +8543,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8635,6 +8689,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8671,6 +8726,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9133,6 +9189,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9375,6 +9432,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix
index ed01ed9ba0b..81a840f0c11 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix
@@ -199,6 +199,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -434,6 +435,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -798,6 +800,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1828,6 +1831,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_4_0_2";
@@ -2088,7 +2092,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2198,6 +2204,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2518,6 +2525,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-conduit" = doDistribute super."csv-conduit_0_6_3";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
@@ -2594,6 +2602,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2606,6 +2615,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2659,6 +2669,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3114,6 +3125,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3439,6 +3451,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3597,6 +3610,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3607,6 +3624,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3693,6 +3711,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4428,9 +4447,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4510,6 +4531,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4896,6 +4918,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4942,6 +4965,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5213,6 +5237,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_2_2";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5410,6 +5435,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5450,11 +5476,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_2";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5720,6 +5748,7 @@ self: super: {
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_2_0_2";
"lifted-base" = doDistribute super."lifted-base_0_2_2_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5834,6 +5863,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_9_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = doDistribute super."logfloat_0_12_1";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5933,6 +5963,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = dontDistribute super."managed";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5997,6 +6028,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = dontDistribute super."mbox";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6102,6 +6134,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6150,6 +6183,7 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_5_0_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11";
"monad-logger-json" = dontDistribute super."monad-logger-json";
@@ -6347,6 +6381,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6390,6 +6425,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6685,6 +6721,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = dontDistribute super."pagerduty";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6810,6 +6847,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6934,6 +6972,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7224,6 +7263,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7262,6 +7305,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7499,6 +7543,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7749,6 +7794,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7767,6 +7813,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7863,6 +7910,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7980,6 +8028,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_0";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -8020,6 +8069,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8119,6 +8169,7 @@ self: super: {
"sodium" = doDistribute super."sodium_0_11_0_2";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8212,6 +8263,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8450,6 +8502,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8490,6 +8543,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8635,6 +8689,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8671,6 +8726,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9133,6 +9189,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9375,6 +9432,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix
index a7ba69d54ce..3c8e119baae 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix
@@ -199,6 +199,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -434,6 +435,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -798,6 +800,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1828,6 +1831,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_4_0_2";
@@ -2088,7 +2092,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2198,6 +2204,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2518,6 +2525,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-conduit" = doDistribute super."csv-conduit_0_6_3";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
@@ -2594,6 +2602,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2606,6 +2615,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2659,6 +2669,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3114,6 +3125,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3439,6 +3451,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3597,6 +3610,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3607,6 +3624,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3693,6 +3711,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4426,9 +4445,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4508,6 +4529,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4894,6 +4916,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4940,6 +4963,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5211,6 +5235,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_2_2";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5408,6 +5433,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5448,11 +5474,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_2";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5718,6 +5746,7 @@ self: super: {
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_2_0_2";
"lifted-base" = doDistribute super."lifted-base_0_2_2_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5832,6 +5861,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_9_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = doDistribute super."logfloat_0_12_1";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5931,6 +5961,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = dontDistribute super."managed";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5995,6 +6026,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = dontDistribute super."mbox";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6100,6 +6132,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6148,6 +6181,7 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_5_0_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
@@ -6345,6 +6379,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6388,6 +6423,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6683,6 +6719,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = dontDistribute super."pagerduty";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6808,6 +6845,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6932,6 +6970,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7222,6 +7261,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7260,6 +7303,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7497,6 +7541,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7746,6 +7791,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7764,6 +7810,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7860,6 +7907,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7977,6 +8025,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_0";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -8017,6 +8066,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8116,6 +8166,7 @@ self: super: {
"sodium" = doDistribute super."sodium_0_11_0_2";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8209,6 +8260,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8447,6 +8499,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8487,6 +8540,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8632,6 +8686,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8668,6 +8723,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9130,6 +9186,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9372,6 +9429,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix
index 40e2308969d..0654ab1a9b8 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix
@@ -199,6 +199,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -434,6 +435,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -798,6 +800,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1828,6 +1831,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_4_0_2";
@@ -2088,7 +2092,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2198,6 +2204,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2518,6 +2525,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-conduit" = doDistribute super."csv-conduit_0_6_3";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
@@ -2594,6 +2602,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2606,6 +2615,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2659,6 +2669,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3114,6 +3125,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3439,6 +3451,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3597,6 +3610,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3607,6 +3624,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3693,6 +3711,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4426,9 +4445,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4508,6 +4529,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4894,6 +4916,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4940,6 +4963,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5211,6 +5235,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_2_2";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5408,6 +5433,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5448,11 +5474,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_2";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5718,6 +5746,7 @@ self: super: {
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_2_0_2";
"lifted-base" = doDistribute super."lifted-base_0_2_2_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5832,6 +5861,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_9_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = doDistribute super."logfloat_0_12_1";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5931,6 +5961,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = dontDistribute super."managed";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5995,6 +6026,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = dontDistribute super."mbox";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6100,6 +6132,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6148,6 +6181,7 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_5_0_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
@@ -6345,6 +6379,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6388,6 +6423,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6683,6 +6719,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = dontDistribute super."pagerduty";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6808,6 +6845,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6932,6 +6970,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7222,6 +7261,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7260,6 +7303,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7497,6 +7541,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7746,6 +7791,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7764,6 +7810,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7860,6 +7907,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7977,6 +8025,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_0";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -8017,6 +8066,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8116,6 +8166,7 @@ self: super: {
"sodium" = doDistribute super."sodium_0_11_0_2";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8209,6 +8260,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8447,6 +8499,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8487,6 +8540,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8632,6 +8686,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8668,6 +8723,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9130,6 +9186,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9372,6 +9429,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix
index fd306cd0a75..a63516c5307 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix
@@ -199,6 +199,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -434,6 +435,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -797,6 +799,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1827,6 +1830,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_4_0_2";
@@ -2087,7 +2091,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2197,6 +2203,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2517,6 +2524,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-conduit" = doDistribute super."csv-conduit_0_6_3";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
@@ -2593,6 +2601,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2605,6 +2614,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2658,6 +2668,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3113,6 +3124,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3438,6 +3450,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3596,6 +3609,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3606,6 +3623,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3692,6 +3710,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4424,9 +4443,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4506,6 +4527,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4892,6 +4914,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4938,6 +4961,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5209,6 +5233,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_2_2";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5406,6 +5431,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5446,11 +5472,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_2";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5716,6 +5744,7 @@ self: super: {
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_2_0_2";
"lifted-base" = doDistribute super."lifted-base_0_2_2_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5830,6 +5859,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_9_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = doDistribute super."logfloat_0_12_1";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5929,6 +5959,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = dontDistribute super."managed";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5993,6 +6024,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = dontDistribute super."mbox";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6098,6 +6130,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6146,6 +6179,7 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_5_0_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
@@ -6343,6 +6377,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6386,6 +6421,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6681,6 +6717,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = dontDistribute super."pagerduty";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6806,6 +6843,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6930,6 +6968,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7220,6 +7259,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7258,6 +7301,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7494,6 +7538,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7743,6 +7788,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7761,6 +7807,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7857,6 +7904,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7974,6 +8022,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_0";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -8014,6 +8063,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8113,6 +8163,7 @@ self: super: {
"sodium" = doDistribute super."sodium_0_11_0_2";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8206,6 +8257,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8444,6 +8496,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8484,6 +8537,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8629,6 +8683,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8665,6 +8720,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9127,6 +9183,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9369,6 +9426,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix
index 6418e9b7209..4e358f38324 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix
@@ -199,6 +199,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -434,6 +435,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -797,6 +799,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1827,6 +1830,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_4_0_2";
@@ -2087,7 +2091,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2197,6 +2203,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2517,6 +2524,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-conduit" = doDistribute super."csv-conduit_0_6_3";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
@@ -2593,6 +2601,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2605,6 +2614,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2658,6 +2668,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3113,6 +3124,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3438,6 +3450,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3596,6 +3609,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3606,6 +3623,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3692,6 +3710,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4424,9 +4443,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4506,6 +4527,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4892,6 +4914,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4938,6 +4961,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5209,6 +5233,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_2_2";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5406,6 +5431,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5446,11 +5472,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_2";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5716,6 +5744,7 @@ self: super: {
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_2_0_2";
"lifted-base" = doDistribute super."lifted-base_0_2_2_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5830,6 +5859,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_9_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = doDistribute super."logfloat_0_12_1";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5929,6 +5959,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = dontDistribute super."managed";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5993,6 +6024,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = dontDistribute super."mbox";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6098,6 +6130,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6146,6 +6179,7 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_5_0_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
@@ -6343,6 +6377,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6386,6 +6421,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6681,6 +6717,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = dontDistribute super."pagerduty";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6806,6 +6843,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6930,6 +6968,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7220,6 +7259,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7258,6 +7301,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7494,6 +7538,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7743,6 +7788,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7761,6 +7807,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7857,6 +7904,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7974,6 +8022,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_0";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -8014,6 +8063,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8113,6 +8163,7 @@ self: super: {
"sodium" = doDistribute super."sodium_0_11_0_2";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8206,6 +8257,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8444,6 +8496,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8484,6 +8537,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8629,6 +8683,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8665,6 +8720,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9127,6 +9183,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9369,6 +9426,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix
index ba011110146..6a2c203a850 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix
@@ -199,6 +199,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -432,6 +433,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -794,6 +796,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1825,6 +1828,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1876,6 +1880,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2083,7 +2088,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2193,6 +2200,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2512,6 +2520,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-conduit" = doDistribute super."csv-conduit_0_6_3";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
@@ -2588,6 +2597,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2600,6 +2610,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2653,6 +2664,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3106,6 +3118,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3432,6 +3445,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3590,6 +3604,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3600,6 +3618,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3686,6 +3705,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4418,9 +4438,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4500,6 +4522,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4885,6 +4908,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4931,6 +4955,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5202,6 +5227,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_0";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5399,6 +5425,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5439,11 +5466,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_2";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5709,6 +5738,7 @@ self: super: {
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_2_0_2";
"lifted-base" = doDistribute super."lifted-base_0_2_3_3";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5823,6 +5853,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_9_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = doDistribute super."logfloat_0_12_1";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5922,6 +5953,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = dontDistribute super."managed";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5986,6 +6018,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = dontDistribute super."mbox";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6091,6 +6124,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6139,6 +6173,7 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_6_0_2";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
@@ -6336,6 +6371,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6379,6 +6415,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6674,6 +6711,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = dontDistribute super."pagerduty";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6799,6 +6837,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6923,6 +6962,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7213,6 +7253,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7251,6 +7295,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7486,6 +7531,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7735,6 +7781,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7753,6 +7800,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7849,6 +7897,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7966,6 +8015,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_0";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -8006,6 +8056,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8104,6 +8155,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8197,6 +8249,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8435,6 +8488,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8475,6 +8529,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8620,6 +8675,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8656,6 +8712,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9117,6 +9174,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9359,6 +9417,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix
index cfe4e6c6171..c3616d56856 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix
@@ -199,6 +199,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -432,6 +433,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -794,6 +796,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1825,6 +1828,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1876,6 +1880,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2082,7 +2087,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2192,6 +2199,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2510,6 +2518,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-conduit" = doDistribute super."csv-conduit_0_6_3";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
@@ -2586,6 +2595,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2598,6 +2608,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2651,6 +2662,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3103,6 +3115,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3429,6 +3442,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3587,6 +3601,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3597,6 +3615,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3683,6 +3702,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4414,9 +4434,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4496,6 +4518,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4879,6 +4902,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4925,6 +4949,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5196,6 +5221,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_0";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5393,6 +5419,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5433,11 +5460,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_2";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5703,6 +5732,7 @@ self: super: {
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_2_0_2";
"lifted-base" = doDistribute super."lifted-base_0_2_3_3";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5817,6 +5847,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_9_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = doDistribute super."logfloat_0_12_1";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5916,6 +5947,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = dontDistribute super."managed";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5980,6 +6012,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = dontDistribute super."mbox";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6084,6 +6117,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6132,6 +6166,7 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_6_0_2";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
@@ -6329,6 +6364,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6372,6 +6408,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6667,6 +6704,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = dontDistribute super."pagerduty";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6792,6 +6830,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6916,6 +6955,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7206,6 +7246,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7244,6 +7288,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7479,6 +7524,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7728,6 +7774,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7746,6 +7793,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7841,6 +7889,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7958,6 +8007,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_0";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7998,6 +8048,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8096,6 +8147,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8189,6 +8241,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8426,6 +8479,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8466,6 +8520,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8609,6 +8664,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8645,6 +8701,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9106,6 +9163,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9348,6 +9406,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix
index bfe57849529..f1e1efe2b4a 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix
@@ -199,6 +199,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -432,6 +433,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -793,6 +795,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1824,6 +1827,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1875,6 +1879,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2080,7 +2085,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2189,6 +2196,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2506,6 +2514,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-conduit" = doDistribute super."csv-conduit_0_6_3";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
@@ -2582,6 +2591,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2594,6 +2604,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2647,6 +2658,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3099,6 +3111,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3422,6 +3435,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3579,6 +3593,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3589,6 +3607,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3674,6 +3693,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4403,9 +4423,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4485,6 +4507,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4868,6 +4891,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4914,6 +4938,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5180,6 +5205,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5377,6 +5403,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_1";
"json-sop" = dontDistribute super."json-sop";
@@ -5417,11 +5444,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_2";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5686,6 +5715,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5800,6 +5830,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_9_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = doDistribute super."logfloat_0_12_1";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5899,6 +5930,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = dontDistribute super."managed";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5963,6 +5995,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = dontDistribute super."mbox";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6067,6 +6100,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6115,6 +6149,7 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_6_0_2";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
@@ -6311,6 +6346,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6354,6 +6390,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6648,6 +6685,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = dontDistribute super."pagerduty";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6773,6 +6811,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6897,6 +6936,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7187,6 +7227,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7225,6 +7269,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7460,6 +7505,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7709,6 +7755,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7727,6 +7774,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7821,6 +7869,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7937,6 +7986,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_0";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7977,6 +8027,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8075,6 +8126,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8168,6 +8220,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8405,6 +8458,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8444,6 +8498,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8586,6 +8641,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8622,6 +8678,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9080,6 +9137,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9322,6 +9380,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix
index 881dfeaa62e..7290bbd9afe 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix
@@ -199,6 +199,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -432,6 +433,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -793,6 +795,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1824,6 +1827,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1875,6 +1879,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2080,7 +2085,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2189,6 +2196,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2506,6 +2514,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-conduit" = doDistribute super."csv-conduit_0_6_3";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
@@ -2582,6 +2591,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2594,6 +2604,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2647,6 +2658,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3099,6 +3111,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3421,6 +3434,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3578,6 +3592,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3588,6 +3606,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3673,6 +3692,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4402,9 +4422,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4484,6 +4506,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4867,6 +4890,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4913,6 +4937,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5178,6 +5203,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5374,6 +5400,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_1";
"json-sop" = dontDistribute super."json-sop";
@@ -5414,11 +5441,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_2";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5683,6 +5712,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5797,6 +5827,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_9_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = doDistribute super."logfloat_0_12_1";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5896,6 +5927,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = dontDistribute super."managed";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5960,6 +5992,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = dontDistribute super."mbox";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6064,6 +6097,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6112,6 +6146,7 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_6_0_2";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
@@ -6308,6 +6343,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6351,6 +6387,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6645,6 +6682,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = dontDistribute super."pagerduty";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6770,6 +6808,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6894,6 +6933,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7184,6 +7224,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7222,6 +7266,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7457,6 +7502,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7706,6 +7752,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7724,6 +7771,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7818,6 +7866,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7934,6 +7983,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_0";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7974,6 +8024,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8072,6 +8123,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8165,6 +8217,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8402,6 +8455,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8441,6 +8495,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8583,6 +8638,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8619,6 +8675,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9077,6 +9134,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9319,6 +9377,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix
index 9be52c89fe4..7ebad80925b 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix
@@ -199,6 +199,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -432,6 +433,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -793,6 +795,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1824,6 +1827,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1875,6 +1879,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2080,7 +2085,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2189,6 +2196,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2506,6 +2514,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-conduit" = doDistribute super."csv-conduit_0_6_3";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
@@ -2582,6 +2591,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2594,6 +2604,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2647,6 +2658,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3099,6 +3111,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3421,6 +3434,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3578,6 +3592,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3588,6 +3606,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3673,6 +3692,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4402,9 +4422,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4484,6 +4506,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4867,6 +4890,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4913,6 +4937,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5178,6 +5203,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5374,6 +5400,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_1";
"json-sop" = dontDistribute super."json-sop";
@@ -5414,11 +5441,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_2";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5683,6 +5712,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5797,6 +5827,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_9_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = doDistribute super."logfloat_0_12_1";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5896,6 +5927,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = dontDistribute super."managed";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5960,6 +5992,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = dontDistribute super."mbox";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6064,6 +6097,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6112,6 +6146,7 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_6_0_2";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
@@ -6308,6 +6343,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6351,6 +6387,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6645,6 +6682,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = dontDistribute super."pagerduty";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6770,6 +6808,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6894,6 +6933,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7184,6 +7224,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7222,6 +7266,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7457,6 +7502,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7706,6 +7752,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7724,6 +7771,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7818,6 +7866,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7934,6 +7983,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_0";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7974,6 +8024,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8072,6 +8123,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8165,6 +8217,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8402,6 +8455,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8441,6 +8495,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8583,6 +8638,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8619,6 +8675,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9077,6 +9134,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9319,6 +9377,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix
index 5c278cc91c0..a24b8baa1af 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix
@@ -199,6 +199,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -432,6 +433,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -793,6 +795,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1824,6 +1827,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1875,6 +1879,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2080,7 +2085,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2189,6 +2196,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2506,6 +2514,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-conduit" = doDistribute super."csv-conduit_0_6_3";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
@@ -2582,6 +2591,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2594,6 +2604,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2647,6 +2658,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3099,6 +3111,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3421,6 +3434,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3578,6 +3592,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3588,6 +3606,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3673,6 +3692,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4401,9 +4421,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4483,6 +4505,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4866,6 +4889,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4912,6 +4936,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5177,6 +5202,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5373,6 +5399,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_1";
"json-sop" = dontDistribute super."json-sop";
@@ -5413,11 +5440,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_2";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5682,6 +5711,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5796,6 +5826,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_9_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = doDistribute super."logfloat_0_12_1";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5895,6 +5926,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = dontDistribute super."managed";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5959,6 +5991,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = dontDistribute super."mbox";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6063,6 +6096,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6111,6 +6145,7 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_6_0_2";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
@@ -6307,6 +6342,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6350,6 +6386,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6644,6 +6681,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = dontDistribute super."pagerduty";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6769,6 +6807,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6893,6 +6932,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7183,6 +7223,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7221,6 +7265,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7456,6 +7501,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7705,6 +7751,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7723,6 +7770,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7817,6 +7865,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7933,6 +7982,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_0";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7973,6 +8023,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8071,6 +8122,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8164,6 +8216,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8401,6 +8454,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8440,6 +8494,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8581,6 +8636,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8617,6 +8673,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9075,6 +9132,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9317,6 +9375,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix
index b2682cb4f13..cbf9665b20d 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix
@@ -199,6 +199,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -431,6 +432,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -792,6 +794,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1822,6 +1825,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1873,6 +1877,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2078,7 +2083,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2187,6 +2194,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2503,6 +2511,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-conduit" = doDistribute super."csv-conduit_0_6_3";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
@@ -2579,6 +2588,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2591,6 +2601,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2644,6 +2655,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3096,6 +3108,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3418,6 +3431,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3575,6 +3589,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3585,6 +3603,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3670,6 +3689,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4398,9 +4418,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4480,6 +4502,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4863,6 +4886,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4909,6 +4933,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5174,6 +5199,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5370,6 +5396,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_1";
"json-sop" = dontDistribute super."json-sop";
@@ -5410,11 +5437,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5679,6 +5708,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5793,6 +5823,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_9_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = doDistribute super."logfloat_0_12_1";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5892,6 +5923,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = dontDistribute super."managed";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5956,6 +5988,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = dontDistribute super."mbox";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6060,6 +6093,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6108,6 +6142,7 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_6_0_2";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
@@ -6304,6 +6339,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6347,6 +6383,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6641,6 +6678,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = dontDistribute super."pagerduty";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6766,6 +6804,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6890,6 +6929,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7180,6 +7220,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7217,6 +7261,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7452,6 +7497,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7701,6 +7747,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7719,6 +7766,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7813,6 +7861,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7929,6 +7978,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_0";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7969,6 +8019,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8067,6 +8118,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8160,6 +8212,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8397,6 +8450,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8436,6 +8490,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8577,6 +8632,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8613,6 +8669,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9071,6 +9128,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9313,6 +9371,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix
index bf8c9eb0b04..062eee5fcc4 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix
@@ -199,6 +199,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -431,6 +432,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -792,6 +794,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1821,6 +1824,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1872,6 +1876,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2077,7 +2082,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2185,6 +2192,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2501,6 +2509,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2576,6 +2585,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2588,6 +2598,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2641,6 +2652,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3093,6 +3105,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3415,6 +3428,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3572,6 +3586,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3582,6 +3600,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3667,6 +3686,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4395,9 +4415,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4477,6 +4499,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4860,6 +4883,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4906,6 +4930,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5171,6 +5196,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5367,6 +5393,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_1";
"json-sop" = dontDistribute super."json-sop";
@@ -5407,11 +5434,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5676,6 +5705,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5790,6 +5820,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_9_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = doDistribute super."logfloat_0_12_1";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5889,6 +5920,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = dontDistribute super."managed";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5953,6 +5985,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = dontDistribute super."mbox";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6057,6 +6090,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6105,6 +6139,7 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_6_0_2";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
@@ -6299,6 +6334,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6342,6 +6378,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6636,6 +6673,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = dontDistribute super."pagerduty";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6761,6 +6799,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6885,6 +6924,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7175,6 +7215,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7211,6 +7255,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7446,6 +7491,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7695,6 +7741,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7713,6 +7760,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7807,6 +7855,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7923,6 +7972,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_0";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7963,6 +8013,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8061,6 +8112,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8154,6 +8206,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8390,6 +8443,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8429,6 +8483,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8570,6 +8625,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8606,6 +8662,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9064,6 +9121,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9306,6 +9364,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix
index 05852c538a5..49b84cd61e5 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix
@@ -199,6 +199,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -432,6 +433,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -794,6 +796,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1825,6 +1828,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1876,6 +1880,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2082,7 +2087,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2191,6 +2198,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2508,6 +2516,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-conduit" = doDistribute super."csv-conduit_0_6_3";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
@@ -2584,6 +2593,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2596,6 +2606,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2649,6 +2660,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3101,6 +3113,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3427,6 +3440,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3585,6 +3599,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3595,6 +3613,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3680,6 +3699,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4411,9 +4431,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4493,6 +4515,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4876,6 +4899,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4922,6 +4946,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5193,6 +5218,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_0";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5390,6 +5416,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5430,11 +5457,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_2";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5700,6 +5729,7 @@ self: super: {
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_2_0_2";
"lifted-base" = doDistribute super."lifted-base_0_2_3_3";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5814,6 +5844,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_9_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = doDistribute super."logfloat_0_12_1";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5913,6 +5944,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = dontDistribute super."managed";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5977,6 +6009,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = dontDistribute super."mbox";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6081,6 +6114,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6129,6 +6163,7 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_6_0_2";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
@@ -6326,6 +6361,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6369,6 +6405,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6663,6 +6700,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = dontDistribute super."pagerduty";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6788,6 +6826,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6912,6 +6951,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7202,6 +7242,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7240,6 +7284,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7475,6 +7520,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7724,6 +7770,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7742,6 +7789,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7836,6 +7884,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7953,6 +8002,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_0";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7993,6 +8043,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8091,6 +8142,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8184,6 +8236,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8421,6 +8474,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8461,6 +8515,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8604,6 +8659,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8640,6 +8696,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9101,6 +9158,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9343,6 +9401,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix
index 2aef19ffcd2..2cbac473b07 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix
@@ -199,6 +199,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -432,6 +433,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -793,6 +795,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1824,6 +1827,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1875,6 +1879,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2081,7 +2086,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2190,6 +2197,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2507,6 +2515,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-conduit" = doDistribute super."csv-conduit_0_6_3";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
@@ -2583,6 +2592,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2595,6 +2605,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2648,6 +2659,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3100,6 +3112,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3425,6 +3438,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3583,6 +3597,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3593,6 +3611,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3678,6 +3697,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4408,9 +4428,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4490,6 +4512,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4873,6 +4896,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4919,6 +4943,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5190,6 +5215,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_0";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5387,6 +5413,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5427,11 +5454,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_2";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5697,6 +5726,7 @@ self: super: {
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_2_0_2";
"lifted-base" = doDistribute super."lifted-base_0_2_3_3";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5811,6 +5841,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_9_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = doDistribute super."logfloat_0_12_1";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5910,6 +5941,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = dontDistribute super."managed";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5974,6 +6006,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = dontDistribute super."mbox";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6078,6 +6111,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6126,6 +6160,7 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_6_0_2";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
@@ -6322,6 +6357,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6365,6 +6401,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6659,6 +6696,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = dontDistribute super."pagerduty";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6784,6 +6822,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6908,6 +6947,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7198,6 +7238,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7236,6 +7280,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7471,6 +7516,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7720,6 +7766,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7738,6 +7785,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7832,6 +7880,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7949,6 +7998,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_0";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7989,6 +8039,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8087,6 +8138,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8180,6 +8232,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8417,6 +8470,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8457,6 +8511,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8599,6 +8654,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8635,6 +8691,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9096,6 +9153,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9338,6 +9396,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix
index 5a546217a35..f2c7261a578 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix
@@ -199,6 +199,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -432,6 +433,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -793,6 +795,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1824,6 +1827,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1875,6 +1879,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2080,7 +2085,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2189,6 +2196,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2506,6 +2514,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-conduit" = doDistribute super."csv-conduit_0_6_3";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
@@ -2582,6 +2591,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2594,6 +2604,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2647,6 +2658,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3099,6 +3111,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3424,6 +3437,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3582,6 +3596,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3592,6 +3610,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3677,6 +3696,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4407,9 +4427,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4489,6 +4511,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4872,6 +4895,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4918,6 +4942,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5189,6 +5214,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_0";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5386,6 +5412,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_1";
"json-sop" = dontDistribute super."json-sop";
@@ -5426,11 +5453,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_2";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5696,6 +5725,7 @@ self: super: {
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_2_0_2";
"lifted-base" = doDistribute super."lifted-base_0_2_3_3";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5810,6 +5840,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_9_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = doDistribute super."logfloat_0_12_1";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5909,6 +5940,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = dontDistribute super."managed";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5973,6 +6005,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = dontDistribute super."mbox";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6077,6 +6110,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6125,6 +6159,7 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_6_0_2";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
@@ -6321,6 +6356,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6364,6 +6400,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6658,6 +6695,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = dontDistribute super."pagerduty";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6783,6 +6821,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6907,6 +6946,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7197,6 +7237,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7235,6 +7279,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7470,6 +7515,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7719,6 +7765,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7737,6 +7784,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7831,6 +7879,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7948,6 +7997,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_0";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7988,6 +8038,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8086,6 +8137,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8179,6 +8231,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8416,6 +8469,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8456,6 +8510,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8598,6 +8653,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8634,6 +8690,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9093,6 +9150,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9335,6 +9393,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix
index eb3a19da6a5..f61382ad830 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix
@@ -199,6 +199,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -432,6 +433,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -793,6 +795,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1824,6 +1827,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1875,6 +1879,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2080,7 +2085,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2189,6 +2196,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2506,6 +2514,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-conduit" = doDistribute super."csv-conduit_0_6_3";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
@@ -2582,6 +2591,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2594,6 +2604,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2647,6 +2658,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3099,6 +3111,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3424,6 +3437,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3582,6 +3596,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3592,6 +3610,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3677,6 +3696,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4407,9 +4427,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4489,6 +4511,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4872,6 +4895,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4918,6 +4942,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5184,6 +5209,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_0";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5381,6 +5407,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_1";
"json-sop" = dontDistribute super."json-sop";
@@ -5421,11 +5448,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_2";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5691,6 +5720,7 @@ self: super: {
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_2_0_2";
"lifted-base" = doDistribute super."lifted-base_0_2_3_3";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5805,6 +5835,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_9_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = doDistribute super."logfloat_0_12_1";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5904,6 +5935,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = dontDistribute super."managed";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5968,6 +6000,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = dontDistribute super."mbox";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6072,6 +6105,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6120,6 +6154,7 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_6_0_2";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
@@ -6316,6 +6351,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6359,6 +6395,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6653,6 +6690,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = dontDistribute super."pagerduty";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6778,6 +6816,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6902,6 +6941,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7192,6 +7232,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7230,6 +7274,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7465,6 +7510,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7714,6 +7760,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7732,6 +7779,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7826,6 +7874,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7943,6 +7992,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_0";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7983,6 +8033,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8081,6 +8132,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8174,6 +8226,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8411,6 +8464,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8451,6 +8505,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8593,6 +8648,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8629,6 +8685,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9088,6 +9145,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9330,6 +9388,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix
index 456b208b980..1b632c3715f 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix
@@ -199,6 +199,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -432,6 +433,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -793,6 +795,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1824,6 +1827,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1875,6 +1879,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2080,7 +2085,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2189,6 +2196,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2506,6 +2514,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-conduit" = doDistribute super."csv-conduit_0_6_3";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
@@ -2582,6 +2591,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2594,6 +2604,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2647,6 +2658,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3099,6 +3111,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3422,6 +3435,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3580,6 +3594,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3590,6 +3608,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3675,6 +3694,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4404,9 +4424,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4486,6 +4508,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4869,6 +4892,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4915,6 +4939,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5181,6 +5206,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_0";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5378,6 +5404,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_1";
"json-sop" = dontDistribute super."json-sop";
@@ -5418,11 +5445,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_2";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5687,6 +5716,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5801,6 +5831,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_9_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = doDistribute super."logfloat_0_12_1";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5900,6 +5931,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = dontDistribute super."managed";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5964,6 +5996,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = dontDistribute super."mbox";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6068,6 +6101,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6116,6 +6150,7 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_6_0_2";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_12";
"monad-logger-json" = dontDistribute super."monad-logger-json";
@@ -6312,6 +6347,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6355,6 +6391,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6649,6 +6686,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = dontDistribute super."pagerduty";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6774,6 +6812,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6898,6 +6937,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7188,6 +7228,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7226,6 +7270,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7461,6 +7506,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7710,6 +7756,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7728,6 +7775,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7822,6 +7870,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7939,6 +7988,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_0";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7979,6 +8029,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8077,6 +8128,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8170,6 +8222,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8407,6 +8460,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8447,6 +8501,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8589,6 +8644,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8625,6 +8681,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9083,6 +9140,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9325,6 +9383,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix
index a933be151b7..01ad3efffae 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix
@@ -199,6 +199,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -432,6 +433,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -793,6 +795,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1824,6 +1827,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1875,6 +1879,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2080,7 +2085,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2189,6 +2196,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2506,6 +2514,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-conduit" = doDistribute super."csv-conduit_0_6_3";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
@@ -2582,6 +2591,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2594,6 +2604,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2647,6 +2658,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3099,6 +3111,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3422,6 +3435,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3579,6 +3593,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3589,6 +3607,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3674,6 +3693,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4403,9 +4423,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4485,6 +4507,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4868,6 +4891,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4914,6 +4938,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5180,6 +5205,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5377,6 +5403,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_1";
"json-sop" = dontDistribute super."json-sop";
@@ -5417,11 +5444,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_2";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5686,6 +5715,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5800,6 +5830,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_9_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = doDistribute super."logfloat_0_12_1";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5899,6 +5930,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = dontDistribute super."managed";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5963,6 +5995,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = dontDistribute super."mbox";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6067,6 +6100,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6115,6 +6149,7 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_6_0_2";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_12";
"monad-logger-json" = dontDistribute super."monad-logger-json";
@@ -6311,6 +6346,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6354,6 +6390,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6648,6 +6685,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = dontDistribute super."pagerduty";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6773,6 +6811,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6897,6 +6936,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7187,6 +7227,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7225,6 +7269,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7460,6 +7505,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7709,6 +7755,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7727,6 +7774,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7821,6 +7869,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7938,6 +7987,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_0";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7978,6 +8028,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8076,6 +8127,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8169,6 +8221,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8406,6 +8459,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8446,6 +8500,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8588,6 +8643,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8624,6 +8680,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9082,6 +9139,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9324,6 +9382,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix
index d7bedfd0bc0..473962c25a9 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix
@@ -198,6 +198,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -429,6 +430,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -787,6 +789,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1813,6 +1816,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1864,6 +1868,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2070,7 +2075,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2177,6 +2184,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2491,6 +2499,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2566,6 +2575,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2578,6 +2588,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2631,6 +2642,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3084,6 +3096,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3404,6 +3417,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3562,6 +3576,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3572,6 +3590,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3657,6 +3676,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4383,9 +4403,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4464,6 +4486,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4845,6 +4868,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4892,6 +4916,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5152,6 +5177,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5346,6 +5372,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_1";
"json-sop" = dontDistribute super."json-sop";
@@ -5386,11 +5413,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5651,6 +5680,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5765,6 +5795,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_0_1";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5863,6 +5894,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5926,6 +5958,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6030,6 +6063,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6078,9 +6112,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@@ -6267,6 +6303,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6310,6 +6347,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6601,6 +6639,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = doDistribute super."pagerduty_0_0_3";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_1";
"palindromes" = dontDistribute super."palindromes";
@@ -6726,6 +6765,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6849,6 +6889,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7140,6 +7181,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7176,6 +7221,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7411,6 +7457,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7660,6 +7707,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7678,6 +7726,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7770,6 +7819,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7886,6 +7936,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7926,6 +7977,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8021,6 +8073,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8114,6 +8167,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8348,6 +8402,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8387,6 +8442,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8528,6 +8584,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8564,6 +8621,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9021,6 +9079,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9261,6 +9320,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix
index 31db8fe1440..641f292420a 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix
@@ -198,6 +198,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -429,6 +430,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -787,6 +789,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1813,6 +1816,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1864,6 +1868,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2070,7 +2075,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2177,6 +2184,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2491,6 +2499,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2566,6 +2575,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2578,6 +2588,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2631,6 +2642,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3084,6 +3096,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3404,6 +3417,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3562,6 +3576,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3572,6 +3590,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3657,6 +3676,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4383,9 +4403,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4464,6 +4486,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4845,6 +4868,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4892,6 +4916,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5152,6 +5177,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5346,6 +5372,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_2";
"json-sop" = dontDistribute super."json-sop";
@@ -5386,11 +5413,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5651,6 +5680,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5765,6 +5795,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_0_1";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5863,6 +5894,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5926,6 +5958,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6030,6 +6063,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6078,9 +6112,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@@ -6267,6 +6303,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6310,6 +6347,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6601,6 +6639,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = doDistribute super."pagerduty_0_0_3";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_1";
"palindromes" = dontDistribute super."palindromes";
@@ -6726,6 +6765,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6849,6 +6889,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7140,6 +7181,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7176,6 +7221,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7411,6 +7457,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7660,6 +7707,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7678,6 +7726,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7770,6 +7819,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7886,6 +7936,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7926,6 +7977,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8021,6 +8073,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8114,6 +8167,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8348,6 +8402,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8387,6 +8442,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8528,6 +8584,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8564,6 +8621,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9021,6 +9079,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9261,6 +9320,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix
index e98942f659b..159f38dac4e 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix
@@ -198,6 +198,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -429,6 +430,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -786,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1807,6 +1810,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1858,6 +1862,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2063,7 +2068,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2170,6 +2177,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2483,6 +2491,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2558,6 +2567,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2570,6 +2580,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2622,6 +2633,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3074,6 +3086,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3391,6 +3404,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3549,6 +3563,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3559,6 +3577,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3644,6 +3663,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4369,9 +4389,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4450,6 +4472,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4831,6 +4854,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4878,6 +4902,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5136,6 +5161,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5328,6 +5354,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_5";
"json-sop" = dontDistribute super."json-sop";
@@ -5368,11 +5395,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5632,6 +5661,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5746,6 +5776,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_0_1";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5844,6 +5875,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5907,6 +5939,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6011,6 +6044,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6059,9 +6093,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@@ -6249,6 +6285,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6291,6 +6328,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6582,6 +6620,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = doDistribute super."pagerduty_0_0_3_1";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6706,6 +6745,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6829,6 +6869,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7120,6 +7161,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -7155,6 +7200,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7389,6 +7435,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7637,6 +7684,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7655,6 +7703,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7747,6 +7796,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7863,6 +7913,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7903,6 +7954,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7997,6 +8049,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8090,6 +8143,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8098,6 +8152,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@@ -8317,6 +8372,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8356,6 +8412,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8497,6 +8554,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8533,6 +8591,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8988,6 +9047,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9228,6 +9288,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix
index c8ae32d7c38..69342cf7876 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix
@@ -198,6 +198,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -429,6 +430,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -786,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1806,6 +1809,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1857,6 +1861,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2062,7 +2067,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2169,6 +2176,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2482,6 +2490,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2557,6 +2566,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2569,6 +2579,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2621,6 +2632,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3073,6 +3085,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3390,6 +3403,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3548,6 +3562,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3558,6 +3576,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3643,6 +3662,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4368,9 +4388,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4449,6 +4471,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4830,6 +4853,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4877,6 +4901,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5135,6 +5160,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5327,6 +5353,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_6";
"json-sop" = dontDistribute super."json-sop";
@@ -5367,11 +5394,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5631,6 +5660,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5745,6 +5775,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_1";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5843,6 +5874,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5906,6 +5938,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6010,6 +6043,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6058,9 +6092,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@@ -6248,6 +6284,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6290,6 +6327,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6580,6 +6618,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = doDistribute super."pagerduty_0_0_3_1";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6704,6 +6743,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6827,6 +6867,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7118,6 +7159,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -7153,6 +7198,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7387,6 +7433,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7634,6 +7681,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7652,6 +7700,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7744,6 +7793,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7860,6 +7910,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7900,6 +7951,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7994,6 +8046,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8087,6 +8140,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8095,6 +8149,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@@ -8313,6 +8368,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8352,6 +8408,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8493,6 +8550,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8529,6 +8587,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8984,6 +9043,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9224,6 +9284,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix
index 6750cb2d5d1..150235f3022 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix
@@ -198,6 +198,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -429,6 +430,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -786,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1806,6 +1809,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1857,6 +1861,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2062,7 +2067,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2169,6 +2176,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2482,6 +2490,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2557,6 +2566,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2569,6 +2579,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2621,6 +2632,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3073,6 +3085,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3390,6 +3403,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3548,6 +3562,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3558,6 +3576,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3643,6 +3662,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4368,9 +4388,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4449,6 +4471,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4830,6 +4853,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4877,6 +4901,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5135,6 +5160,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5327,6 +5353,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_6";
"json-sop" = dontDistribute super."json-sop";
@@ -5367,11 +5394,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5631,6 +5660,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5745,6 +5775,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_1";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5843,6 +5874,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5906,6 +5938,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6010,6 +6043,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6058,9 +6092,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@@ -6248,6 +6284,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6290,6 +6327,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6580,6 +6618,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = doDistribute super."pagerduty_0_0_3_1";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6704,6 +6743,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6827,6 +6867,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7118,6 +7159,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -7153,6 +7198,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7387,6 +7433,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7634,6 +7681,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7651,6 +7699,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7743,6 +7792,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7859,6 +7909,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7899,6 +7950,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7993,6 +8045,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8086,6 +8139,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8094,6 +8148,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@@ -8312,6 +8367,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8351,6 +8407,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8492,6 +8549,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8528,6 +8586,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8983,6 +9042,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9223,6 +9283,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix
index 61125b12723..68ab563ffd3 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix
@@ -198,6 +198,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -429,6 +430,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -786,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1806,6 +1809,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1857,6 +1861,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2062,7 +2067,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2169,6 +2176,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2482,6 +2490,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2557,6 +2566,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2569,6 +2579,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2621,6 +2632,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3073,6 +3085,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3390,6 +3403,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3548,6 +3562,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3558,6 +3576,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3643,6 +3662,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4368,9 +4388,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4449,6 +4471,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4830,6 +4853,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4877,6 +4901,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5134,6 +5159,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5326,6 +5352,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_6";
"json-sop" = dontDistribute super."json-sop";
@@ -5366,11 +5393,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5630,6 +5659,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5744,6 +5774,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_1";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5842,6 +5873,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5905,6 +5937,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6009,6 +6042,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6057,9 +6091,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@@ -6247,6 +6283,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6289,6 +6326,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6579,6 +6617,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = doDistribute super."pagerduty_0_0_3_1";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6703,6 +6742,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6826,6 +6866,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7117,6 +7158,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -7152,6 +7197,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7386,6 +7432,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7633,6 +7680,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7650,6 +7698,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7742,6 +7791,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7858,6 +7908,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7898,6 +7949,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7992,6 +8044,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8085,6 +8138,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8093,6 +8147,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@@ -8311,6 +8366,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8350,6 +8406,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8491,6 +8548,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8527,6 +8585,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8982,6 +9041,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9222,6 +9282,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix
index d8cf7ce903f..1e253e9cf1c 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix
@@ -198,6 +198,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -429,6 +430,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -786,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1806,6 +1809,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1857,6 +1861,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2062,7 +2067,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2169,6 +2176,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2482,6 +2490,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2557,6 +2566,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2569,6 +2579,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2621,6 +2632,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3073,6 +3085,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3389,6 +3402,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3547,6 +3561,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3557,6 +3575,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3642,6 +3661,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4367,9 +4387,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4448,6 +4470,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4829,6 +4852,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4875,6 +4899,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5132,6 +5157,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5324,6 +5350,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_6";
"json-sop" = dontDistribute super."json-sop";
@@ -5364,11 +5391,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5628,6 +5657,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5742,6 +5772,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_1";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5840,6 +5871,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5903,6 +5935,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6007,6 +6040,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6055,9 +6089,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@@ -6245,6 +6281,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6287,6 +6324,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6577,6 +6615,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = doDistribute super."pagerduty_0_0_3_1";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6701,6 +6740,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6824,6 +6864,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7115,6 +7156,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -7150,6 +7195,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7384,6 +7430,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7631,6 +7678,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7648,6 +7696,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7740,6 +7789,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7856,6 +7906,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7896,6 +7947,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7990,6 +8042,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8083,6 +8136,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8091,6 +8145,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@@ -8309,6 +8364,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8348,6 +8404,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8489,6 +8546,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8525,6 +8583,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8980,6 +9039,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9220,6 +9280,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix
index b5ac5df9262..a95ec6caccf 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix
@@ -198,6 +198,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -429,6 +430,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -786,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1806,6 +1809,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1857,6 +1861,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2062,7 +2067,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2169,6 +2176,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2482,6 +2490,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2557,6 +2566,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2569,6 +2579,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2621,6 +2632,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3072,6 +3084,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3388,6 +3401,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3546,6 +3560,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3556,6 +3574,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3641,6 +3660,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4366,9 +4386,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4447,6 +4469,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4828,6 +4851,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4874,6 +4898,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5131,6 +5156,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5323,6 +5349,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_6";
"json-sop" = dontDistribute super."json-sop";
@@ -5363,11 +5390,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5627,6 +5656,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5741,6 +5771,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_1";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5839,6 +5870,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5902,6 +5934,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6006,6 +6039,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6054,9 +6088,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6243,6 +6279,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6285,6 +6322,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6575,6 +6613,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = doDistribute super."pagerduty_0_0_3_1";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6699,6 +6738,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6822,6 +6862,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7113,6 +7154,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -7148,6 +7193,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7382,6 +7428,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7629,6 +7676,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7646,6 +7694,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7738,6 +7787,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7854,6 +7904,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7894,6 +7945,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7988,6 +8040,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8080,6 +8133,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8088,6 +8142,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@@ -8306,6 +8361,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8345,6 +8401,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8486,6 +8543,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8522,6 +8580,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8977,6 +9036,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9217,6 +9277,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix
index d1cefdb9f1a..da9ce2a0bce 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix
@@ -198,6 +198,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -429,6 +430,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -786,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1806,6 +1809,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1857,6 +1861,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2062,7 +2067,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2168,6 +2175,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2481,6 +2489,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2556,6 +2565,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2568,6 +2578,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2620,6 +2631,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3070,6 +3082,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3385,6 +3398,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3543,6 +3557,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3553,6 +3571,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3638,6 +3657,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4363,9 +4383,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4444,6 +4466,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4825,6 +4848,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4871,6 +4895,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5128,6 +5153,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5320,6 +5346,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_6";
"json-sop" = dontDistribute super."json-sop";
@@ -5360,11 +5387,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5623,6 +5652,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5737,6 +5767,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_1";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5835,6 +5866,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5898,6 +5930,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6002,6 +6035,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6050,9 +6084,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6239,6 +6275,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6281,6 +6318,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6571,6 +6609,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = doDistribute super."pagerduty_0_0_3_2";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6695,6 +6734,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6818,6 +6858,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7109,6 +7150,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -7144,6 +7189,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7378,6 +7424,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7625,6 +7672,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7642,6 +7690,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7734,6 +7783,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7850,6 +7900,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7890,6 +7941,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7984,6 +8036,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8076,6 +8129,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8084,6 +8138,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@@ -8302,6 +8357,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8341,6 +8397,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8482,6 +8539,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8518,6 +8576,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8973,6 +9032,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9213,6 +9273,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix
index 62817592f11..184948230fc 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix
@@ -198,6 +198,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -429,6 +430,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -786,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1805,6 +1808,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1856,6 +1860,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2061,7 +2066,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2167,6 +2174,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2480,6 +2488,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2555,6 +2564,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2567,6 +2577,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2619,6 +2630,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3069,6 +3081,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3382,6 +3395,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3540,6 +3554,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3550,6 +3568,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3635,6 +3654,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4360,9 +4380,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4441,6 +4463,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4822,6 +4845,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4868,6 +4892,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5125,6 +5150,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5317,6 +5343,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_7";
"json-sop" = dontDistribute super."json-sop";
@@ -5357,11 +5384,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5620,6 +5649,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5734,6 +5764,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_1";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5832,6 +5863,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5895,6 +5927,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5999,6 +6032,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6047,9 +6081,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6236,6 +6272,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6278,6 +6315,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6567,6 +6605,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = doDistribute super."pagerduty_0_0_3_2";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6691,6 +6730,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6814,6 +6854,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7105,6 +7146,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -7140,6 +7185,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7374,6 +7420,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7621,6 +7668,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7638,6 +7686,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7730,6 +7779,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7846,6 +7896,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7886,6 +7937,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7980,6 +8032,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8072,6 +8125,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8080,6 +8134,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@@ -8298,6 +8353,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8337,6 +8393,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8478,6 +8535,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8514,6 +8572,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8969,6 +9028,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9209,6 +9269,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix
index 12e7a63a99c..d22dac32860 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix
@@ -198,6 +198,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -429,6 +430,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -786,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1805,6 +1808,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1856,6 +1860,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2060,7 +2065,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2166,6 +2173,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2479,6 +2487,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2554,6 +2563,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2566,6 +2576,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2618,6 +2629,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3067,6 +3079,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3380,6 +3393,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3538,6 +3552,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3548,6 +3566,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3633,6 +3652,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4358,9 +4378,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4439,6 +4461,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4820,6 +4843,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4866,6 +4890,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5123,6 +5148,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5315,6 +5341,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_7";
"json-sop" = dontDistribute super."json-sop";
@@ -5355,11 +5382,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5618,6 +5647,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5732,6 +5762,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_1_1";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5830,6 +5861,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5893,6 +5925,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5997,6 +6030,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6045,9 +6079,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6234,6 +6270,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6276,6 +6313,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6564,6 +6602,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = doDistribute super."pagerduty_0_0_3_2";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6688,6 +6727,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6811,6 +6851,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7102,6 +7143,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -7137,6 +7182,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7371,6 +7417,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7618,6 +7665,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7635,6 +7683,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7727,6 +7776,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7843,6 +7893,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7883,6 +7934,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7977,6 +8029,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8069,6 +8122,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8077,6 +8131,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@@ -8295,6 +8350,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8334,6 +8390,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8475,6 +8532,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8511,6 +8569,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8966,6 +9025,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9206,6 +9266,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix
index c76562a5ae9..841b28f07f6 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix
@@ -198,6 +198,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -429,6 +430,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -786,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1805,6 +1808,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1856,6 +1860,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2060,7 +2065,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2166,6 +2173,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2479,6 +2487,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2554,6 +2563,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2566,6 +2576,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2618,6 +2629,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3067,6 +3079,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3379,6 +3392,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3537,6 +3551,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3547,6 +3565,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3632,6 +3651,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4357,9 +4377,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4438,6 +4460,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4819,6 +4842,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4865,6 +4889,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5122,6 +5147,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5314,6 +5340,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_7";
"json-sop" = dontDistribute super."json-sop";
@@ -5354,11 +5381,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5617,6 +5646,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5731,6 +5761,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_1_1";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5829,6 +5860,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5892,6 +5924,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5996,6 +6029,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6044,9 +6078,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6233,6 +6269,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6275,6 +6312,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6563,6 +6601,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = doDistribute super."pagerduty_0_0_3_2";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6687,6 +6726,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6810,6 +6850,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7101,6 +7142,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -7136,6 +7181,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7370,6 +7416,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7617,6 +7664,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7634,6 +7682,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7726,6 +7775,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7842,6 +7892,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7882,6 +7933,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7976,6 +8028,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8068,6 +8121,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8076,6 +8130,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@@ -8294,6 +8349,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8333,6 +8389,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8474,6 +8531,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8510,6 +8568,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8965,6 +9024,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9205,6 +9265,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix
index 540f6a33be0..576d5a9afe1 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix
@@ -198,6 +198,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -429,6 +430,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -787,6 +789,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1812,6 +1815,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1863,6 +1867,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2068,7 +2073,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2175,6 +2182,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2489,6 +2497,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2564,6 +2573,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2576,6 +2586,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2629,6 +2640,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3082,6 +3094,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3402,6 +3415,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3560,6 +3574,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3570,6 +3588,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3655,6 +3674,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4381,9 +4401,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4462,6 +4484,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4843,6 +4866,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4890,6 +4914,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5150,6 +5175,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5344,6 +5370,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_3";
"json-sop" = dontDistribute super."json-sop";
@@ -5384,11 +5411,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5649,6 +5678,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5763,6 +5793,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_0_1";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5861,6 +5892,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5924,6 +5956,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6028,6 +6061,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6076,9 +6110,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@@ -6265,6 +6301,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6308,6 +6345,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6599,6 +6637,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = doDistribute super."pagerduty_0_0_3";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_1";
"palindromes" = dontDistribute super."palindromes";
@@ -6724,6 +6763,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6847,6 +6887,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7138,6 +7179,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7174,6 +7219,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7409,6 +7455,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7658,6 +7705,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7676,6 +7724,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7768,6 +7817,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7884,6 +7934,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7924,6 +7975,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8019,6 +8071,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8112,6 +8165,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8346,6 +8400,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8385,6 +8440,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8526,6 +8582,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8562,6 +8619,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9019,6 +9077,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9259,6 +9318,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix
index ee32b47ad0b..7e2b5906980 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix
@@ -198,6 +198,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -429,6 +430,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -786,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1805,6 +1808,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1856,6 +1860,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2060,7 +2065,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2166,6 +2173,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2479,6 +2487,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2554,6 +2563,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2566,6 +2576,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2618,6 +2629,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3067,6 +3079,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3379,6 +3392,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3537,6 +3551,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3547,6 +3565,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3632,6 +3651,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4357,9 +4377,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4438,6 +4460,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4819,6 +4842,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4865,6 +4889,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5122,6 +5147,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5314,6 +5340,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_7";
"json-sop" = dontDistribute super."json-sop";
@@ -5354,11 +5381,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5617,6 +5646,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5731,6 +5761,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_2";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5829,6 +5860,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5892,6 +5924,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5996,6 +6029,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6044,9 +6078,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6233,6 +6269,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6275,6 +6312,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6563,6 +6601,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = doDistribute super."pagerduty_0_0_3_2";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6687,6 +6726,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6810,6 +6850,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7101,6 +7142,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -7136,6 +7181,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7370,6 +7416,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7617,6 +7664,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7634,6 +7682,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7726,6 +7775,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7841,6 +7891,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7881,6 +7932,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7975,6 +8027,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8067,6 +8120,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8075,6 +8129,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@@ -8293,6 +8348,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8332,6 +8388,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8473,6 +8530,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8509,6 +8567,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8964,6 +9023,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9204,6 +9264,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix
index 744ce37cb1d..28f96f44662 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix
@@ -198,6 +198,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -429,6 +430,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -786,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1805,6 +1808,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1856,6 +1860,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2060,7 +2065,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2166,6 +2173,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2479,6 +2487,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2554,6 +2563,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2566,6 +2576,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2618,6 +2629,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3067,6 +3079,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3379,6 +3392,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3537,6 +3551,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3547,6 +3565,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3632,6 +3651,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4357,9 +4377,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4438,6 +4460,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4819,6 +4842,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4865,6 +4889,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5122,6 +5147,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5314,6 +5340,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_7";
"json-sop" = dontDistribute super."json-sop";
@@ -5354,11 +5381,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5617,6 +5646,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5731,6 +5761,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_2";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5829,6 +5860,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5892,6 +5924,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5996,6 +6029,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6044,9 +6078,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6233,6 +6269,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6275,6 +6312,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6563,6 +6601,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = doDistribute super."pagerduty_0_0_3_2";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6687,6 +6726,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6810,6 +6850,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7100,6 +7141,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -7135,6 +7180,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7369,6 +7415,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7616,6 +7663,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7633,6 +7681,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7725,6 +7774,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7840,6 +7890,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7880,6 +7931,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7974,6 +8026,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8066,6 +8119,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8074,6 +8128,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@@ -8292,6 +8347,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8331,6 +8387,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8472,6 +8529,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8508,6 +8566,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8963,6 +9022,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9203,6 +9263,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix
index 1ca17474a51..c2990d8b810 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix
@@ -198,6 +198,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -429,6 +430,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -786,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1805,6 +1808,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1856,6 +1860,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2060,7 +2065,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2166,6 +2173,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2479,6 +2487,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2554,6 +2563,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2566,6 +2576,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2618,6 +2629,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3067,6 +3079,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3379,6 +3392,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3537,6 +3551,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3547,6 +3565,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3632,6 +3651,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4357,9 +4377,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4438,6 +4460,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4818,6 +4841,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4864,6 +4888,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5121,6 +5146,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5313,6 +5339,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5353,11 +5380,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5616,6 +5645,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5730,6 +5760,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_2";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5828,6 +5859,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5891,6 +5923,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5995,6 +6028,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6043,9 +6077,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6232,6 +6268,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6274,6 +6311,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6562,6 +6600,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = doDistribute super."pagerduty_0_0_3_2";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6686,6 +6725,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6809,6 +6849,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7099,6 +7140,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -7134,6 +7179,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7368,6 +7414,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7615,6 +7662,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7632,6 +7680,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7724,6 +7773,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7839,6 +7889,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7879,6 +7930,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7973,6 +8025,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8065,6 +8118,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8073,6 +8127,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@@ -8291,6 +8346,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8330,6 +8386,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8471,6 +8528,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8507,6 +8565,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8962,6 +9021,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9202,6 +9262,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix
index 65521fa360c..96a4ea2c990 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix
@@ -198,6 +198,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -429,6 +430,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -787,6 +789,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1812,6 +1815,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1863,6 +1867,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2068,7 +2073,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2175,6 +2182,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2489,6 +2497,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2564,6 +2573,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2576,6 +2586,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2629,6 +2640,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3082,6 +3094,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3401,6 +3414,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3559,6 +3573,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3569,6 +3587,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3654,6 +3673,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4380,9 +4400,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4461,6 +4483,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4842,6 +4865,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4889,6 +4913,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5148,6 +5173,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5342,6 +5368,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_4";
"json-sop" = dontDistribute super."json-sop";
@@ -5382,11 +5409,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5647,6 +5676,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5761,6 +5791,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_0_1";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5859,6 +5890,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5922,6 +5954,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6026,6 +6059,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6074,9 +6108,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@@ -6263,6 +6299,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6306,6 +6343,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6597,6 +6635,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = doDistribute super."pagerduty_0_0_3";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_1";
"palindromes" = dontDistribute super."palindromes";
@@ -6722,6 +6761,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6845,6 +6885,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7136,6 +7177,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7172,6 +7217,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7407,6 +7453,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7656,6 +7703,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7674,6 +7722,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7766,6 +7815,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7882,6 +7932,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7922,6 +7973,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8017,6 +8069,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8110,6 +8163,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8344,6 +8398,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8383,6 +8438,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8524,6 +8580,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8560,6 +8617,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9017,6 +9075,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9257,6 +9316,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix
index 589429db307..172f6b5c2f9 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix
@@ -198,6 +198,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -429,6 +430,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -787,6 +789,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1812,6 +1815,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1863,6 +1867,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2068,7 +2073,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2175,6 +2182,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2489,6 +2497,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2564,6 +2573,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2576,6 +2586,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2629,6 +2640,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3082,6 +3094,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3401,6 +3414,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3559,6 +3573,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3569,6 +3587,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3654,6 +3673,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4380,9 +4400,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4461,6 +4483,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4842,6 +4865,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4889,6 +4913,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5148,6 +5173,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5342,6 +5368,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_4";
"json-sop" = dontDistribute super."json-sop";
@@ -5382,11 +5409,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5647,6 +5676,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5761,6 +5791,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_0_1";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5859,6 +5890,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5922,6 +5954,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6026,6 +6059,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6074,9 +6108,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@@ -6263,6 +6299,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6306,6 +6343,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6597,6 +6635,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = doDistribute super."pagerduty_0_0_3";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6721,6 +6760,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6844,6 +6884,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7135,6 +7176,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7171,6 +7216,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7405,6 +7451,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7654,6 +7701,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7672,6 +7720,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7764,6 +7813,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7880,6 +7930,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7920,6 +7971,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8015,6 +8067,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8108,6 +8161,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8342,6 +8396,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8381,6 +8436,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8522,6 +8578,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8558,6 +8615,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9015,6 +9073,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9255,6 +9314,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix
index e70c6e29102..1203e9c1938 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix
@@ -198,6 +198,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -429,6 +430,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -787,6 +789,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1812,6 +1815,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1863,6 +1867,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2068,7 +2073,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2175,6 +2182,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2488,6 +2496,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2563,6 +2572,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2575,6 +2585,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2628,6 +2639,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3081,6 +3093,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3400,6 +3413,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3558,6 +3572,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3568,6 +3586,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3653,6 +3672,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4379,9 +4399,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4460,6 +4482,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4841,6 +4864,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4888,6 +4912,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5147,6 +5172,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5341,6 +5367,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_4";
"json-sop" = dontDistribute super."json-sop";
@@ -5381,11 +5408,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5646,6 +5675,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5760,6 +5790,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_0_1";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5858,6 +5889,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5921,6 +5953,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6025,6 +6058,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6073,9 +6107,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@@ -6262,6 +6298,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6305,6 +6342,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6596,6 +6634,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = doDistribute super."pagerduty_0_0_3";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6720,6 +6759,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6843,6 +6883,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7134,6 +7175,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7170,6 +7215,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7404,6 +7450,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7653,6 +7700,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7671,6 +7719,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7763,6 +7812,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7879,6 +7929,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7919,6 +7970,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8014,6 +8066,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8107,6 +8160,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8341,6 +8395,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8380,6 +8435,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8521,6 +8577,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8557,6 +8614,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9014,6 +9072,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9254,6 +9313,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix
index 4bce5603ac1..a6e59be4b6b 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix
@@ -198,6 +198,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -429,6 +430,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -787,6 +789,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1810,6 +1813,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1861,6 +1865,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2066,7 +2071,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2173,6 +2180,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2486,6 +2494,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2561,6 +2570,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2573,6 +2583,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2626,6 +2637,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3079,6 +3091,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3398,6 +3411,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3556,6 +3570,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3566,6 +3584,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3651,6 +3670,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4376,9 +4396,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4457,6 +4479,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4838,6 +4861,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4885,6 +4909,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5144,6 +5169,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5338,6 +5364,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_4";
"json-sop" = dontDistribute super."json-sop";
@@ -5378,11 +5405,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5643,6 +5672,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5757,6 +5787,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_0_1";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5855,6 +5886,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5918,6 +5950,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6022,6 +6055,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6070,9 +6104,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@@ -6259,6 +6295,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6301,6 +6338,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6592,6 +6630,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = doDistribute super."pagerduty_0_0_3";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6716,6 +6755,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6839,6 +6879,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7130,6 +7171,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7166,6 +7211,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7400,6 +7446,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7649,6 +7696,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7667,6 +7715,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7759,6 +7808,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7875,6 +7925,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7915,6 +7966,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8010,6 +8062,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8103,6 +8156,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8337,6 +8391,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8376,6 +8431,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8517,6 +8573,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8553,6 +8610,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9008,6 +9066,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9248,6 +9307,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix
index 96b0b5cc31a..4fe69666932 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix
@@ -198,6 +198,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -429,6 +430,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -787,6 +789,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1810,6 +1813,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1861,6 +1865,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2066,7 +2071,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2173,6 +2180,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2486,6 +2494,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2561,6 +2570,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2573,6 +2583,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2626,6 +2637,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3079,6 +3091,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3398,6 +3411,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3556,6 +3570,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3566,6 +3584,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3651,6 +3670,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4376,9 +4396,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4457,6 +4479,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4838,6 +4861,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4885,6 +4909,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5144,6 +5169,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5338,6 +5364,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_4";
"json-sop" = dontDistribute super."json-sop";
@@ -5378,11 +5405,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5643,6 +5672,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5757,6 +5787,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_0_1";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5855,6 +5886,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5918,6 +5950,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6022,6 +6055,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6070,9 +6104,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@@ -6260,6 +6296,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6302,6 +6339,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6593,6 +6631,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = doDistribute super."pagerduty_0_0_3";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6717,6 +6756,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6840,6 +6880,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7131,6 +7172,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7167,6 +7212,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7401,6 +7447,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7650,6 +7697,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7668,6 +7716,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7760,6 +7809,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7876,6 +7926,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7916,6 +7967,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8011,6 +8063,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8104,6 +8157,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8338,6 +8392,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8377,6 +8432,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8518,6 +8574,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8554,6 +8611,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9009,6 +9067,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9249,6 +9308,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix
index e3f56a38ef6..dbe8f6baef2 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix
@@ -198,6 +198,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -429,6 +430,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -786,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1809,6 +1812,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1860,6 +1864,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2065,7 +2070,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2172,6 +2179,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2485,6 +2493,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2560,6 +2569,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2572,6 +2582,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2625,6 +2636,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3078,6 +3090,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3396,6 +3409,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3554,6 +3568,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3564,6 +3582,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3649,6 +3668,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4374,9 +4394,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4455,6 +4477,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4836,6 +4859,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4883,6 +4907,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5142,6 +5167,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5336,6 +5362,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_4";
"json-sop" = dontDistribute super."json-sop";
@@ -5376,11 +5403,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5641,6 +5670,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5755,6 +5785,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_0_1";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5853,6 +5884,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5916,6 +5948,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6020,6 +6053,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6068,9 +6102,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@@ -6258,6 +6294,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6300,6 +6337,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6591,6 +6629,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = doDistribute super."pagerduty_0_0_3";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6715,6 +6754,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6838,6 +6878,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7129,6 +7170,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7165,6 +7210,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7399,6 +7445,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7647,6 +7694,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7665,6 +7713,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7757,6 +7806,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7873,6 +7923,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7913,6 +7964,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8007,6 +8059,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8100,6 +8153,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8332,6 +8386,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8371,6 +8426,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8512,6 +8568,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8548,6 +8605,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -9003,6 +9061,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9243,6 +9302,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix
index 2e5c024af52..54ccf254af5 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix
@@ -198,6 +198,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -429,6 +430,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -786,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1807,6 +1810,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@@ -1858,6 +1862,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2063,7 +2068,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"cereal-vector" = dontDistribute super."cereal-vector";
"cf" = dontDistribute super."cf";
@@ -2170,6 +2177,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2483,6 +2491,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2558,6 +2567,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2570,6 +2580,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2623,6 +2634,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3075,6 +3087,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3392,6 +3405,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3550,6 +3564,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3560,6 +3578,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3645,6 +3664,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4370,9 +4390,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = dontDistribute super."hedis";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4451,6 +4473,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4832,6 +4855,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4879,6 +4903,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5137,6 +5162,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5331,6 +5357,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_3_5";
"json-sop" = dontDistribute super."json-sop";
@@ -5371,11 +5398,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5635,6 +5664,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5749,6 +5779,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_0_1";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5847,6 +5878,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5910,6 +5942,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -6014,6 +6047,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@@ -6062,9 +6096,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@@ -6252,6 +6288,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6294,6 +6331,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6585,6 +6623,7 @@ self: super: {
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
"pagerduty" = doDistribute super."pagerduty_0_0_3_1";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6709,6 +6748,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6832,6 +6872,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -7123,6 +7164,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin";
@@ -7159,6 +7204,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7393,6 +7439,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7641,6 +7688,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -7659,6 +7707,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@@ -7751,6 +7800,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7867,6 +7917,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7907,6 +7958,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -8001,6 +8053,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -8094,6 +8147,7 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = dontDistribute super."stack";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
@@ -8102,6 +8156,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@@ -8322,6 +8377,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8361,6 +8417,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8502,6 +8559,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8538,6 +8596,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8993,6 +9052,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9233,6 +9293,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix
index 785f9b4bbf0..9395ee0ccf7 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -420,6 +421,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -775,6 +777,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1762,6 +1765,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
@@ -1811,6 +1815,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2012,7 +2017,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -2117,6 +2124,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2427,6 +2435,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2502,6 +2511,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2514,6 +2524,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2564,6 +2575,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3005,6 +3017,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3309,6 +3322,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3466,6 +3480,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3476,6 +3494,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3560,6 +3579,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4120,6 +4140,7 @@ self: super: {
"haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4278,9 +4299,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_9";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4357,6 +4380,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4733,6 +4757,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4778,6 +4803,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5026,6 +5052,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5213,6 +5240,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5253,11 +5281,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5509,6 +5539,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5621,6 +5652,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_2";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5658,6 +5690,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5717,6 +5750,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5780,6 +5814,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5881,6 +5916,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5927,9 +5963,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6112,6 +6150,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6154,6 +6193,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6317,6 +6357,7 @@ self: super: {
"octopus" = dontDistribute super."octopus";
"oculus" = dontDistribute super."oculus";
"oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = doDistribute super."oeis_0_3_6";
"off-simple" = dontDistribute super."off-simple";
"ofx" = dontDistribute super."ofx";
"ohloh-hs" = dontDistribute super."ohloh-hs";
@@ -6436,6 +6477,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_3_2";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6559,6 +6601,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6639,6 +6682,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6676,6 +6720,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6964,6 +7009,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6999,6 +7048,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7235,6 +7285,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7483,6 +7534,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_6_0_0";
@@ -7500,6 +7552,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_0_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_16_2_2";
@@ -7585,6 +7638,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7700,6 +7754,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7740,6 +7795,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_0_2";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7835,6 +7891,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7925,12 +7982,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = doDistribute super."stack_0_1_3_0";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = dontDistribute super."stack-run-auto";
"stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-sandbox" = doDistribute super."stackage-sandbox_0_1_5";
"stackage-types" = doDistribute super."stackage-types_1_1_0";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
@@ -8143,6 +8202,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8181,6 +8241,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8321,6 +8382,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8357,6 +8419,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8803,6 +8866,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9039,6 +9103,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix
index e2804c9e689..8910bb011b2 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -420,6 +421,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -775,6 +777,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1761,6 +1764,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
@@ -1810,6 +1814,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2011,7 +2016,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -2116,6 +2123,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2426,6 +2434,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2501,6 +2510,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2513,6 +2523,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2563,6 +2574,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3004,6 +3016,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3307,6 +3320,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3464,6 +3478,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3474,6 +3492,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3558,6 +3577,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4118,6 +4138,7 @@ self: super: {
"haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4276,9 +4297,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_9";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4355,6 +4378,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4731,6 +4755,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4776,6 +4801,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5024,6 +5050,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5211,6 +5238,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5251,11 +5279,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5507,6 +5537,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5619,6 +5650,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_2";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5656,6 +5688,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5714,6 +5747,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5777,6 +5811,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5878,6 +5913,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5924,9 +5960,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6109,6 +6147,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6151,6 +6190,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6314,6 +6354,7 @@ self: super: {
"octopus" = dontDistribute super."octopus";
"oculus" = dontDistribute super."oculus";
"oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = doDistribute super."oeis_0_3_6";
"off-simple" = dontDistribute super."off-simple";
"ofx" = dontDistribute super."ofx";
"ohloh-hs" = dontDistribute super."ohloh-hs";
@@ -6433,6 +6474,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_3_2";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6556,6 +6598,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6635,6 +6678,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6672,6 +6716,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6960,6 +7005,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6995,6 +7044,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7231,6 +7281,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7478,6 +7529,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_6_0_0";
@@ -7495,6 +7547,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_0_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_16_2_2";
@@ -7580,6 +7633,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7695,6 +7749,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7735,6 +7790,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_0_2";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7830,6 +7886,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7920,12 +7977,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = doDistribute super."stack_0_1_3_1";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = dontDistribute super."stack-run-auto";
"stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-sandbox" = doDistribute super."stackage-sandbox_0_1_5";
"stackage-types" = doDistribute super."stackage-types_1_1_0";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
@@ -8138,6 +8197,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8176,6 +8236,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8316,6 +8377,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8352,6 +8414,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8798,6 +8861,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9033,6 +9097,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix
index 823b01c4c89..3912438ff7a 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -420,6 +421,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -774,6 +776,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1754,6 +1757,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
@@ -1803,6 +1807,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2004,7 +2009,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -2109,6 +2116,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2418,6 +2426,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2493,6 +2502,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2505,6 +2515,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2555,6 +2566,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2993,6 +3005,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3169,6 +3182,7 @@ self: super: {
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fft" = dontDistribute super."fft";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
"fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
@@ -3294,6 +3308,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3451,6 +3466,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3461,6 +3480,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3544,6 +3564,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4102,6 +4123,7 @@ self: super: {
"haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4259,9 +4281,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_9";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4338,6 +4362,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4712,6 +4737,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4757,6 +4783,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5003,6 +5030,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_2";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5190,6 +5218,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5230,11 +5259,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5484,6 +5515,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5596,6 +5628,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5633,6 +5666,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5691,6 +5725,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_1";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5754,6 +5789,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5854,6 +5890,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5900,9 +5937,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_14";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6084,6 +6123,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6126,6 +6166,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6287,6 +6328,7 @@ self: super: {
"octopus" = dontDistribute super."octopus";
"oculus" = dontDistribute super."oculus";
"oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = doDistribute super."oeis_0_3_6";
"off-simple" = dontDistribute super."off-simple";
"ofx" = dontDistribute super."ofx";
"ohloh-hs" = dontDistribute super."ohloh-hs";
@@ -6406,6 +6448,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_3_2";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6529,6 +6572,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6608,6 +6652,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6645,6 +6690,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6930,6 +6976,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6946,6 +6996,7 @@ self: super: {
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6964,6 +7015,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7200,6 +7252,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7447,6 +7500,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_6_1_0";
@@ -7464,6 +7518,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_0_4";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_16_2_2";
@@ -7549,6 +7604,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7664,6 +7720,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7704,6 +7761,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7797,6 +7855,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7886,12 +7945,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = doDistribute super."stack_0_1_6_0";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = dontDistribute super."stack-run-auto";
"stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-types" = doDistribute super."stackage-types_1_1_0";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
@@ -8103,6 +8164,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8141,6 +8203,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8171,6 +8234,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tasty-silver" = doDistribute super."tasty-silver_3_1_7";
"tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1";
"tasty-tap" = dontDistribute super."tasty-tap";
@@ -8277,6 +8341,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8313,6 +8378,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8757,6 +8823,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8990,6 +9057,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix
index 793438b4421..6e95124cc29 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -420,6 +421,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -774,6 +776,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1754,6 +1757,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
@@ -1803,6 +1807,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2004,7 +2009,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -2109,6 +2116,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2418,6 +2426,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2493,6 +2502,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2505,6 +2515,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2555,6 +2566,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2993,6 +3005,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3168,6 +3181,7 @@ self: super: {
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fft" = dontDistribute super."fft";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
"fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
@@ -3293,6 +3307,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3450,6 +3465,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3460,6 +3479,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3543,6 +3563,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4101,6 +4122,7 @@ self: super: {
"haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4258,9 +4280,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_9";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4337,6 +4361,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4711,6 +4736,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4756,6 +4782,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5002,6 +5029,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_2";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5189,6 +5217,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5229,11 +5258,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5483,6 +5514,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5595,6 +5627,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5632,6 +5665,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5690,6 +5724,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_1";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5753,6 +5788,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5853,6 +5889,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5899,9 +5936,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_14";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6083,6 +6122,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6125,6 +6165,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6286,6 +6327,7 @@ self: super: {
"octopus" = dontDistribute super."octopus";
"oculus" = dontDistribute super."oculus";
"oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = doDistribute super."oeis_0_3_6";
"off-simple" = dontDistribute super."off-simple";
"ofx" = dontDistribute super."ofx";
"ohloh-hs" = dontDistribute super."ohloh-hs";
@@ -6405,6 +6447,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_3_2";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6528,6 +6571,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6607,6 +6651,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6644,6 +6689,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6929,6 +6975,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6945,6 +6995,7 @@ self: super: {
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6963,6 +7014,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7199,6 +7251,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7446,6 +7499,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_6_1_0";
@@ -7463,6 +7517,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_0_4";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_16_2_2";
@@ -7548,6 +7603,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7663,6 +7719,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7703,6 +7760,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7796,6 +7854,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7885,12 +7944,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = doDistribute super."stack_0_1_6_0";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = dontDistribute super."stack-run-auto";
"stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-types" = doDistribute super."stackage-types_1_1_0";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
@@ -8102,6 +8163,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8140,6 +8202,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8170,6 +8233,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tasty-silver" = doDistribute super."tasty-silver_3_1_7";
"tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1";
"tasty-tap" = dontDistribute super."tasty-tap";
@@ -8276,6 +8340,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8312,6 +8377,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8756,6 +8822,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8989,6 +9056,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix
index d4c3a236f10..8768024efef 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -420,6 +421,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -774,6 +776,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1754,6 +1757,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
@@ -1803,6 +1807,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2004,7 +2009,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -2039,6 +2046,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2108,6 +2116,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2417,6 +2426,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2492,6 +2502,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2504,6 +2515,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2554,6 +2566,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2992,6 +3005,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3167,6 +3181,7 @@ self: super: {
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fft" = dontDistribute super."fft";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
"fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
@@ -3292,6 +3307,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3449,6 +3465,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3459,6 +3479,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3542,6 +3563,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4099,6 +4121,7 @@ self: super: {
"haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4256,9 +4279,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_9";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4335,6 +4360,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4709,6 +4735,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4754,6 +4781,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5000,6 +5028,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_2";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5187,6 +5216,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5227,11 +5257,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5481,6 +5513,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5593,6 +5626,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5630,6 +5664,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5688,6 +5723,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_1";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5751,6 +5787,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5851,6 +5888,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5897,9 +5935,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_15";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6081,6 +6121,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6123,6 +6164,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6284,6 +6326,7 @@ self: super: {
"octopus" = dontDistribute super."octopus";
"oculus" = dontDistribute super."oculus";
"oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = doDistribute super."oeis_0_3_6";
"off-simple" = dontDistribute super."off-simple";
"ofx" = dontDistribute super."ofx";
"ohloh-hs" = dontDistribute super."ohloh-hs";
@@ -6403,6 +6446,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_3_3";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6525,6 +6569,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6604,6 +6649,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6641,6 +6687,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6926,6 +6973,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6942,6 +6993,7 @@ self: super: {
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6960,6 +7012,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7196,6 +7249,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7443,6 +7497,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_6_1_0";
@@ -7460,6 +7515,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_0_4";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_16_2_2";
@@ -7545,6 +7601,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7660,6 +7717,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7700,6 +7758,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7793,6 +7852,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7882,12 +7942,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = doDistribute super."stack_0_1_6_0";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = dontDistribute super."stack-run-auto";
"stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-types" = doDistribute super."stackage-types_1_1_0";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
@@ -8099,6 +8161,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8137,6 +8200,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_5";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8167,6 +8231,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tasty-silver" = doDistribute super."tasty-silver_3_1_7";
"tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1";
"tasty-tap" = dontDistribute super."tasty-tap";
@@ -8272,6 +8337,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8308,6 +8374,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8752,6 +8819,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8985,6 +9053,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix
index 5ae2df82cb5..01594754b65 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -420,6 +421,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -774,6 +776,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1754,6 +1757,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
@@ -1803,6 +1807,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2004,7 +2009,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -2039,6 +2046,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2108,6 +2116,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2417,6 +2426,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2492,6 +2502,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2504,6 +2515,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2554,6 +2566,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2992,6 +3005,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3167,6 +3181,7 @@ self: super: {
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fft" = dontDistribute super."fft";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
"fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
@@ -3292,6 +3307,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3449,6 +3465,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3459,6 +3479,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3542,6 +3563,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4099,6 +4121,7 @@ self: super: {
"haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4256,9 +4279,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_9";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4334,6 +4359,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4708,6 +4734,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4753,6 +4780,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -4999,6 +5027,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_2";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5186,6 +5215,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5226,11 +5256,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5479,6 +5511,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5591,6 +5624,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5628,6 +5662,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5686,6 +5721,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_1";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5749,6 +5785,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5849,6 +5886,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5895,9 +5933,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_15";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6079,6 +6119,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6121,6 +6162,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6282,6 +6324,7 @@ self: super: {
"octopus" = dontDistribute super."octopus";
"oculus" = dontDistribute super."oculus";
"oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = doDistribute super."oeis_0_3_6";
"off-simple" = dontDistribute super."off-simple";
"ofx" = dontDistribute super."ofx";
"ohloh-hs" = dontDistribute super."ohloh-hs";
@@ -6401,6 +6444,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_3_3";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6522,6 +6566,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6601,6 +6646,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6638,6 +6684,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6923,6 +6970,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6939,6 +6990,7 @@ self: super: {
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6957,6 +7009,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7193,6 +7246,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7440,6 +7494,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_6_1_0";
@@ -7457,6 +7512,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_0_4";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_16_2_2";
@@ -7542,6 +7598,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7657,6 +7714,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7697,6 +7755,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7790,6 +7849,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7879,12 +7939,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = doDistribute super."stack_0_1_6_0";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = dontDistribute super."stack-run-auto";
"stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-types" = doDistribute super."stackage-types_1_1_0";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
@@ -8096,6 +8158,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8134,6 +8197,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_5";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8164,6 +8228,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tasty-silver" = doDistribute super."tasty-silver_3_1_7";
"tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1";
"tasty-tap" = dontDistribute super."tasty-tap";
@@ -8269,6 +8334,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8305,6 +8371,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8749,6 +8816,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8982,6 +9050,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix
index c60052a30e0..ebd6dfc7915 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -420,6 +421,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -774,6 +776,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1754,6 +1757,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
@@ -1803,6 +1807,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2004,7 +2009,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -2039,6 +2046,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2108,6 +2116,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2417,6 +2426,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2492,6 +2502,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2504,6 +2515,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2554,6 +2566,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2992,6 +3005,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3167,6 +3181,7 @@ self: super: {
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fft" = dontDistribute super."fft";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
"fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
@@ -3292,6 +3307,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3449,6 +3465,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3459,6 +3479,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3542,6 +3563,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4099,6 +4121,7 @@ self: super: {
"haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4256,9 +4279,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_9";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4334,6 +4359,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4708,6 +4734,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4753,6 +4780,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -4998,6 +5026,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_2";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5185,6 +5214,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5225,11 +5255,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5478,6 +5510,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5590,6 +5623,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5627,6 +5661,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5685,6 +5720,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_1";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5748,6 +5784,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5848,6 +5885,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5894,9 +5932,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_15";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6078,6 +6118,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6120,6 +6161,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6281,6 +6323,7 @@ self: super: {
"octopus" = dontDistribute super."octopus";
"oculus" = dontDistribute super."oculus";
"oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = doDistribute super."oeis_0_3_6";
"off-simple" = dontDistribute super."off-simple";
"ofx" = dontDistribute super."ofx";
"ohloh-hs" = dontDistribute super."ohloh-hs";
@@ -6400,6 +6443,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_3_3";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6521,6 +6565,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6600,6 +6645,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6637,6 +6683,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6922,6 +6969,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6938,6 +6989,7 @@ self: super: {
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6956,6 +7008,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7192,6 +7245,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7439,6 +7493,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_6_1_0";
@@ -7456,6 +7511,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_0_4";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_16_2_2";
@@ -7541,6 +7597,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7656,6 +7713,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7696,6 +7754,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7789,6 +7848,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7878,12 +7938,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = doDistribute super."stack_0_1_6_0";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = dontDistribute super."stack-run-auto";
"stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-types" = doDistribute super."stackage-types_1_1_0";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
@@ -8095,6 +8157,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8133,6 +8196,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_5";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8163,6 +8227,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tasty-silver" = doDistribute super."tasty-silver_3_1_8";
"tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1";
"tasty-tap" = dontDistribute super."tasty-tap";
@@ -8268,6 +8333,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8304,6 +8370,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8748,6 +8815,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8980,6 +9048,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix
index 4cf545c43ad..b0e0c50c75e 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -420,6 +421,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -774,6 +776,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1754,6 +1757,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
@@ -1803,6 +1807,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2004,7 +2009,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -2039,6 +2046,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2108,6 +2116,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2417,6 +2426,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2492,6 +2502,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2504,6 +2515,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2554,6 +2566,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2992,6 +3005,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3167,6 +3181,7 @@ self: super: {
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fft" = dontDistribute super."fft";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
"fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
@@ -3292,6 +3307,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3449,6 +3465,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3459,6 +3479,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3542,6 +3563,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4098,6 +4120,7 @@ self: super: {
"haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4255,9 +4278,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_9";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4333,6 +4358,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4707,6 +4733,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4752,6 +4779,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -4996,6 +5024,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_2";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5183,6 +5212,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5223,11 +5253,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5476,6 +5508,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5588,6 +5621,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5625,6 +5659,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5683,6 +5718,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_1";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5746,6 +5782,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5846,6 +5883,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5892,9 +5930,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_15";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6076,6 +6116,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6118,6 +6159,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6279,6 +6321,7 @@ self: super: {
"octopus" = dontDistribute super."octopus";
"oculus" = dontDistribute super."oculus";
"oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = doDistribute super."oeis_0_3_6";
"off-simple" = dontDistribute super."off-simple";
"ofx" = dontDistribute super."ofx";
"ohloh-hs" = dontDistribute super."ohloh-hs";
@@ -6398,6 +6441,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_3_3";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6519,6 +6563,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6598,6 +6643,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6635,6 +6681,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6920,6 +6967,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6936,6 +6987,7 @@ self: super: {
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6954,6 +7006,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7190,6 +7243,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7437,6 +7491,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_6_1_0";
@@ -7454,6 +7509,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_0_4";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_16_2_2";
@@ -7538,6 +7594,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7653,6 +7710,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7693,6 +7751,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7786,6 +7845,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7875,12 +7935,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = doDistribute super."stack_0_1_8_0";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = dontDistribute super."stack-run-auto";
"stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-types" = doDistribute super."stackage-types_1_1_0";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
@@ -8092,6 +8154,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8130,6 +8193,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_5";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8160,6 +8224,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tasty-silver" = doDistribute super."tasty-silver_3_1_8";
"tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1";
"tasty-tap" = dontDistribute super."tasty-tap";
@@ -8265,6 +8330,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8301,6 +8367,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8745,6 +8812,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8977,6 +9045,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix
index bcb89836ada..274ab94ecc7 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -420,6 +421,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -773,6 +775,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1753,6 +1756,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
@@ -1802,6 +1806,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2003,7 +2008,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -2038,6 +2045,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2107,6 +2115,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2416,6 +2425,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2491,6 +2501,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2503,6 +2514,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2553,6 +2565,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2991,6 +3004,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3166,6 +3180,7 @@ self: super: {
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fft" = dontDistribute super."fft";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
"fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
@@ -3291,6 +3306,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3448,6 +3464,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3458,6 +3478,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3541,6 +3562,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4097,6 +4119,7 @@ self: super: {
"haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4254,9 +4277,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_9";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4332,6 +4357,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4706,6 +4732,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4751,6 +4778,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -4995,6 +5023,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_2";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5182,6 +5211,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5222,11 +5252,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5474,6 +5506,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_2";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5586,6 +5619,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5623,6 +5657,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5681,6 +5716,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_1";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5743,6 +5779,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5843,6 +5880,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5889,9 +5927,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_15";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6073,6 +6113,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6115,6 +6156,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6276,6 +6318,7 @@ self: super: {
"octopus" = dontDistribute super."octopus";
"oculus" = dontDistribute super."oculus";
"oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = doDistribute super."oeis_0_3_6";
"off-simple" = dontDistribute super."off-simple";
"ofx" = dontDistribute super."ofx";
"ohloh-hs" = dontDistribute super."ohloh-hs";
@@ -6395,6 +6438,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_3_3";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6516,6 +6560,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6595,6 +6640,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6632,6 +6678,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6916,6 +6963,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6932,6 +6983,7 @@ self: super: {
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6950,6 +7002,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7185,6 +7238,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7432,6 +7486,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_6_1_0";
@@ -7449,6 +7504,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_0_4";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_16_2_2";
@@ -7533,6 +7589,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7648,6 +7705,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7688,6 +7746,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7781,6 +7840,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7870,12 +7930,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = doDistribute super."stack_0_1_8_0";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = dontDistribute super."stack-run-auto";
"stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-types" = doDistribute super."stackage-types_1_1_0";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
@@ -8087,6 +8149,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8125,6 +8188,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_5";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8154,6 +8218,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tasty-silver" = doDistribute super."tasty-silver_3_1_8";
"tasty-tap" = dontDistribute super."tasty-tap";
"tasty-th" = doDistribute super."tasty-th_0_1_3";
@@ -8258,6 +8323,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8294,6 +8360,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8738,6 +8805,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8970,6 +9038,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix
index 30e57374bbf..c498f6a3088 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -420,6 +421,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -773,6 +775,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1752,6 +1755,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
@@ -1801,6 +1805,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2002,7 +2007,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -2037,6 +2044,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2106,6 +2114,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2415,6 +2424,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2490,6 +2500,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2502,6 +2513,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2552,6 +2564,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2990,6 +3003,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3165,6 +3179,7 @@ self: super: {
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fft" = dontDistribute super."fft";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
"fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
@@ -3290,6 +3305,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3447,6 +3463,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3457,6 +3477,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3540,6 +3561,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4095,6 +4117,7 @@ self: super: {
"haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4252,9 +4275,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_9";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4330,6 +4355,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4704,6 +4730,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4749,6 +4776,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -4992,6 +5020,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_2";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5179,6 +5208,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5219,11 +5249,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5471,6 +5503,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_2";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5582,6 +5615,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5619,6 +5653,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5677,6 +5712,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_1";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5739,6 +5775,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5839,6 +5876,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5885,9 +5923,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_15";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6068,6 +6108,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6110,6 +6151,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6271,6 +6313,7 @@ self: super: {
"octopus" = dontDistribute super."octopus";
"oculus" = dontDistribute super."oculus";
"oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = doDistribute super."oeis_0_3_6";
"off-simple" = dontDistribute super."off-simple";
"ofx" = dontDistribute super."ofx";
"ohloh-hs" = dontDistribute super."ohloh-hs";
@@ -6390,6 +6433,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_3_3";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6511,6 +6555,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6590,6 +6635,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6627,6 +6673,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6911,6 +6958,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6927,6 +6978,7 @@ self: super: {
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6945,6 +6997,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7180,6 +7233,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7427,6 +7481,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_6_1_0";
@@ -7444,6 +7499,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_0_4";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_16_2_2";
@@ -7528,6 +7584,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7643,6 +7700,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7683,6 +7741,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7776,6 +7835,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7865,12 +7925,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = doDistribute super."stack_0_1_10_0";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = dontDistribute super."stack-run-auto";
"stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-types" = doDistribute super."stackage-types_1_1_0";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
@@ -8082,6 +8144,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8120,6 +8183,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_5";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8149,6 +8213,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tasty-silver" = doDistribute super."tasty-silver_3_1_8";
"tasty-tap" = dontDistribute super."tasty-tap";
"tasty-th" = doDistribute super."tasty-th_0_1_3";
@@ -8253,6 +8318,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8289,6 +8355,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8733,6 +8800,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8965,6 +9033,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix
index dc397c22a69..9378bc79c4b 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -420,6 +421,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -773,6 +775,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1752,6 +1755,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
@@ -1801,6 +1805,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2002,7 +2007,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -2037,6 +2044,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2106,6 +2114,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2415,6 +2424,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2490,6 +2500,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2502,6 +2513,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2552,6 +2564,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2990,6 +3003,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3165,6 +3179,7 @@ self: super: {
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fft" = dontDistribute super."fft";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
"fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
@@ -3290,6 +3305,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3447,6 +3463,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3457,6 +3477,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3540,6 +3561,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4095,6 +4117,7 @@ self: super: {
"haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4252,9 +4275,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_9";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4330,6 +4355,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4704,6 +4730,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4749,6 +4776,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -4992,6 +5020,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_2";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5179,6 +5208,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5219,11 +5249,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5471,6 +5503,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_2";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5582,6 +5615,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5619,6 +5653,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5677,6 +5712,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_1";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5739,6 +5775,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5839,6 +5876,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5885,9 +5923,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_16";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6068,6 +6108,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6110,6 +6151,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6271,6 +6313,7 @@ self: super: {
"octopus" = dontDistribute super."octopus";
"oculus" = dontDistribute super."oculus";
"oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = doDistribute super."oeis_0_3_6";
"off-simple" = dontDistribute super."off-simple";
"ofx" = dontDistribute super."ofx";
"ohloh-hs" = dontDistribute super."ohloh-hs";
@@ -6390,6 +6433,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_3_3";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6511,6 +6555,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6590,6 +6635,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6627,6 +6673,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6911,6 +6958,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6927,6 +6978,7 @@ self: super: {
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6945,6 +6997,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7180,6 +7233,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7427,6 +7481,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_6_1_0";
@@ -7444,6 +7499,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_0_4";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_16_2_2";
@@ -7528,6 +7584,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7643,6 +7700,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7683,6 +7741,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7776,6 +7835,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7865,12 +7925,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = doDistribute super."stack_0_1_10_0";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = dontDistribute super."stack-run-auto";
"stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-types" = doDistribute super."stackage-types_1_1_0";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
@@ -8082,6 +8144,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8120,6 +8183,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_5";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8149,6 +8213,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tasty-silver" = doDistribute super."tasty-silver_3_1_8";
"tasty-tap" = dontDistribute super."tasty-tap";
"tasty-th" = doDistribute super."tasty-th_0_1_3";
@@ -8253,6 +8318,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8289,6 +8355,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8733,6 +8800,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8965,6 +9033,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix
index 2a4d29f3616..bfc339ca798 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -420,6 +421,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -773,6 +775,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1751,6 +1754,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
@@ -1799,6 +1803,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2000,7 +2005,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -2035,6 +2042,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2104,6 +2112,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2412,6 +2421,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2487,6 +2497,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2499,6 +2510,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2549,6 +2561,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2987,6 +3000,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3162,6 +3176,7 @@ self: super: {
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fft" = dontDistribute super."fft";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
"fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
@@ -3287,6 +3302,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3444,6 +3460,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3454,6 +3474,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3537,6 +3558,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4092,6 +4114,7 @@ self: super: {
"haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4249,9 +4272,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_9";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4327,6 +4352,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4699,6 +4725,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4744,6 +4771,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -4987,6 +5015,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_2";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5174,6 +5203,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -5213,11 +5243,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5465,6 +5497,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_2";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5576,6 +5609,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5613,6 +5647,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5671,6 +5706,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_1";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5733,6 +5769,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5833,6 +5870,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5879,9 +5917,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_16";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6062,6 +6102,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6103,6 +6144,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6264,6 +6306,7 @@ self: super: {
"octopus" = dontDistribute super."octopus";
"oculus" = dontDistribute super."oculus";
"oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = doDistribute super."oeis_0_3_6";
"off-simple" = dontDistribute super."off-simple";
"ofx" = dontDistribute super."ofx";
"ohloh-hs" = dontDistribute super."ohloh-hs";
@@ -6383,6 +6426,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_3_3";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6504,6 +6548,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6583,6 +6628,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_4";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6620,6 +6666,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6904,6 +6951,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6920,6 +6971,7 @@ self: super: {
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6938,6 +6990,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7173,6 +7226,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7420,6 +7474,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_6_1_0";
@@ -7437,6 +7492,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_0_4";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_16_2_2";
@@ -7521,6 +7577,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7636,6 +7693,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7676,6 +7734,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7768,6 +7827,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7857,12 +7917,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = doDistribute super."stack_0_1_10_1";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = dontDistribute super."stack-run-auto";
"stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-types" = doDistribute super."stackage-types_1_1_0";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
@@ -8074,6 +8136,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8112,6 +8175,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_5";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8141,6 +8205,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tasty-silver" = doDistribute super."tasty-silver_3_1_8";
"tasty-tap" = dontDistribute super."tasty-tap";
"tasty-th" = doDistribute super."tasty-th_0_1_3";
@@ -8245,6 +8310,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8281,6 +8347,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8725,6 +8792,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8957,6 +9025,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix
index 773c5b19847..5c6270f1104 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -420,6 +421,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -774,6 +776,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1759,6 +1762,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
@@ -1808,6 +1812,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2009,7 +2014,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -2114,6 +2121,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2424,6 +2432,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2499,6 +2508,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2511,6 +2521,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2561,6 +2572,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3001,6 +3013,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3304,6 +3317,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3461,6 +3475,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3471,6 +3489,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3554,6 +3573,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4114,6 +4134,7 @@ self: super: {
"haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4272,9 +4293,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_9";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4351,6 +4374,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4727,6 +4751,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4772,6 +4797,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5020,6 +5046,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5207,6 +5234,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5247,11 +5275,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5503,6 +5533,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5615,6 +5646,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_2";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5652,6 +5684,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5710,6 +5743,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5773,6 +5807,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5874,6 +5909,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5920,9 +5956,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6105,6 +6143,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6147,6 +6186,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6310,6 +6350,7 @@ self: super: {
"octopus" = dontDistribute super."octopus";
"oculus" = dontDistribute super."oculus";
"oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = doDistribute super."oeis_0_3_6";
"off-simple" = dontDistribute super."off-simple";
"ofx" = dontDistribute super."ofx";
"ohloh-hs" = dontDistribute super."ohloh-hs";
@@ -6429,6 +6470,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_3_2";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6552,6 +6594,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6631,6 +6674,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6668,6 +6712,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6956,6 +7001,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6972,6 +7021,7 @@ self: super: {
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6990,6 +7040,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7226,6 +7277,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7473,6 +7525,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_6_1_0";
@@ -7490,6 +7543,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_0_4";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_16_2_2";
@@ -7575,6 +7629,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7690,6 +7745,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7730,6 +7786,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_0_2";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7824,6 +7881,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7914,12 +7972,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = doDistribute super."stack_0_1_3_1";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = dontDistribute super."stack-run-auto";
"stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-sandbox" = doDistribute super."stackage-sandbox_0_1_5";
"stackage-types" = doDistribute super."stackage-types_1_1_0";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
@@ -8132,6 +8192,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8170,6 +8231,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8310,6 +8372,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8346,6 +8409,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8792,6 +8856,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9027,6 +9092,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix
index 7dc6e7e26e7..b47d0d66dc6 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -420,6 +421,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -772,6 +774,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1750,6 +1753,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
@@ -1798,6 +1802,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1999,7 +2004,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -2034,6 +2041,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2103,6 +2111,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2411,6 +2420,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2486,6 +2496,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2498,6 +2509,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2548,6 +2560,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2986,6 +2999,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3161,6 +3175,7 @@ self: super: {
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fft" = dontDistribute super."fft";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
"fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
@@ -3286,6 +3301,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3443,6 +3459,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3453,6 +3473,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3536,6 +3557,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4091,6 +4113,7 @@ self: super: {
"haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4248,9 +4271,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_9";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4326,6 +4351,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4698,6 +4724,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4743,6 +4770,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -4986,6 +5014,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_2";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5173,6 +5202,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -5212,11 +5242,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5464,6 +5496,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_2";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5575,6 +5608,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5612,6 +5646,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5670,6 +5705,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_1";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5732,6 +5768,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5832,6 +5869,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5878,9 +5916,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_16";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6061,6 +6101,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6102,6 +6143,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6263,6 +6305,7 @@ self: super: {
"octopus" = dontDistribute super."octopus";
"oculus" = dontDistribute super."oculus";
"oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = doDistribute super."oeis_0_3_6";
"off-simple" = dontDistribute super."off-simple";
"ofx" = dontDistribute super."ofx";
"ohloh-hs" = dontDistribute super."ohloh-hs";
@@ -6382,6 +6425,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_3_3";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6503,6 +6547,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6582,6 +6627,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_4";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6619,6 +6665,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6903,6 +6950,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6919,6 +6970,7 @@ self: super: {
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6937,6 +6989,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7171,6 +7224,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7418,6 +7472,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_6_1_0";
@@ -7435,6 +7490,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_0_4";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_16_2_2";
@@ -7519,6 +7575,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7634,6 +7691,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7674,6 +7732,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7766,6 +7825,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7855,12 +7915,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = doDistribute super."stack_0_1_10_1";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = dontDistribute super."stack-run-auto";
"stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-types" = doDistribute super."stackage-types_1_1_0";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
@@ -8071,6 +8133,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8109,6 +8172,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_6";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8138,6 +8202,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tasty-silver" = doDistribute super."tasty-silver_3_1_8";
"tasty-tap" = dontDistribute super."tasty-tap";
"tasty-th" = doDistribute super."tasty-th_0_1_3";
@@ -8242,6 +8307,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8278,6 +8344,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8722,6 +8789,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8954,6 +9022,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix
index c0cdf4eee8d..5af9af67434 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -420,6 +421,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -772,6 +774,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1750,6 +1753,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
@@ -1798,6 +1802,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1999,7 +2004,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -2034,6 +2041,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2103,6 +2111,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2410,6 +2419,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2485,6 +2495,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2497,6 +2508,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2547,6 +2559,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2985,6 +2998,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3158,6 +3172,7 @@ self: super: {
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fft" = dontDistribute super."fft";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
"fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
@@ -3283,6 +3298,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3440,6 +3456,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3450,6 +3470,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3533,6 +3554,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4088,6 +4110,7 @@ self: super: {
"haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4245,9 +4268,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_9";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4323,6 +4348,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4695,6 +4721,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4740,6 +4767,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -4981,6 +5009,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_3";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5168,6 +5197,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -5207,11 +5237,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5459,6 +5491,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_2";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5570,6 +5603,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5607,6 +5641,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5665,6 +5700,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_1";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5727,6 +5763,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5827,6 +5864,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5873,9 +5911,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_16";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6056,6 +6096,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6097,6 +6138,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6258,6 +6300,7 @@ self: super: {
"octopus" = dontDistribute super."octopus";
"oculus" = dontDistribute super."oculus";
"oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = doDistribute super."oeis_0_3_6";
"off-simple" = dontDistribute super."off-simple";
"ofx" = dontDistribute super."ofx";
"ohloh-hs" = dontDistribute super."ohloh-hs";
@@ -6377,6 +6420,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_3_3";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6497,6 +6541,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6576,6 +6621,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6613,6 +6659,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6897,6 +6944,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6913,6 +6964,7 @@ self: super: {
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6931,6 +6983,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7165,6 +7218,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7412,6 +7466,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_6_1_0";
@@ -7429,6 +7484,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_0_4";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_16_2_2";
@@ -7510,6 +7566,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7625,6 +7682,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7664,6 +7722,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7756,6 +7815,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7845,12 +7905,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = doDistribute super."stack_0_1_10_1";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = dontDistribute super."stack-run-auto";
"stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-types" = doDistribute super."stackage-types_1_1_0";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
@@ -8061,6 +8123,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8099,6 +8162,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_6";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8128,6 +8192,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tasty-silver" = doDistribute super."tasty-silver_3_1_8";
"tasty-tap" = dontDistribute super."tasty-tap";
"tasty-th" = doDistribute super."tasty-th_0_1_3";
@@ -8232,6 +8297,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8268,6 +8334,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8712,6 +8779,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8942,6 +9010,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix
index 0c9103e4e02..a8d27c54dc9 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -420,6 +421,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -772,6 +774,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1750,6 +1753,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
@@ -1798,6 +1802,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1999,7 +2004,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -2034,6 +2041,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2103,6 +2111,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2410,6 +2419,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2485,6 +2495,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2497,6 +2508,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2547,6 +2559,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2985,6 +2998,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3157,6 +3171,7 @@ self: super: {
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fft" = dontDistribute super."fft";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
"fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
@@ -3282,6 +3297,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3439,6 +3455,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3449,6 +3469,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3532,6 +3553,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4087,6 +4109,7 @@ self: super: {
"haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4244,9 +4267,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4322,6 +4347,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4694,6 +4720,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4739,6 +4766,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -4979,6 +5007,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_4";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5165,6 +5194,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -5204,11 +5234,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5456,6 +5488,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_2";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5567,6 +5600,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5604,6 +5638,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5662,6 +5697,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_1";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5724,6 +5760,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5824,6 +5861,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5870,9 +5908,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_16";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6053,6 +6093,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6094,6 +6135,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6255,6 +6297,7 @@ self: super: {
"octopus" = dontDistribute super."octopus";
"oculus" = dontDistribute super."oculus";
"oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = doDistribute super."oeis_0_3_6";
"off-simple" = dontDistribute super."off-simple";
"ofx" = dontDistribute super."ofx";
"ohloh-hs" = dontDistribute super."ohloh-hs";
@@ -6374,6 +6417,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_3_3";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6494,6 +6538,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6573,6 +6618,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6610,6 +6656,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6894,6 +6941,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6910,6 +6961,7 @@ self: super: {
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6928,6 +6980,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7162,6 +7215,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7409,6 +7463,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_6_1_0";
@@ -7426,6 +7481,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_0_4";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_16_2_2";
@@ -7507,6 +7563,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7622,6 +7679,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7661,6 +7719,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7753,6 +7812,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7842,12 +7902,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = doDistribute super."stack_0_1_10_1";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = dontDistribute super."stack-run-auto";
"stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-types" = doDistribute super."stackage-types_1_1_0";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
@@ -8058,6 +8120,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8096,6 +8159,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_7";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8125,6 +8189,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tasty-silver" = doDistribute super."tasty-silver_3_1_8";
"tasty-tap" = dontDistribute super."tasty-tap";
"tasty-th" = doDistribute super."tasty-th_0_1_3";
@@ -8229,6 +8294,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8265,6 +8331,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8709,6 +8776,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8939,6 +9007,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix
index 752235c5ef5..d469a1e0fbd 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -420,6 +421,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -774,6 +776,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1759,6 +1762,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
@@ -1808,6 +1812,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2009,7 +2014,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -2114,6 +2121,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2424,6 +2432,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2499,6 +2508,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2511,6 +2521,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2561,6 +2572,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3001,6 +3013,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3303,6 +3316,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3460,6 +3474,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3470,6 +3488,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3553,6 +3572,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4113,6 +4133,7 @@ self: super: {
"haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4271,9 +4292,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_9";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4350,6 +4373,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4725,6 +4749,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4770,6 +4795,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5018,6 +5044,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5205,6 +5232,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5245,11 +5273,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5501,6 +5531,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5613,6 +5644,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_2";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5650,6 +5682,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5708,6 +5741,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5771,6 +5805,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5872,6 +5907,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5918,9 +5954,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6103,6 +6141,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6145,6 +6184,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6308,6 +6348,7 @@ self: super: {
"octopus" = dontDistribute super."octopus";
"oculus" = dontDistribute super."oculus";
"oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = doDistribute super."oeis_0_3_6";
"off-simple" = dontDistribute super."off-simple";
"ofx" = dontDistribute super."ofx";
"ohloh-hs" = dontDistribute super."ohloh-hs";
@@ -6427,6 +6468,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_3_2";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6550,6 +6592,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6629,6 +6672,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6666,6 +6710,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6954,6 +6999,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6970,6 +7019,7 @@ self: super: {
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6988,6 +7038,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7224,6 +7275,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7471,6 +7523,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_6_1_0";
@@ -7488,6 +7541,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_0_4";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_16_2_2";
@@ -7573,6 +7627,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7688,6 +7743,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7728,6 +7784,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_0_2";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7821,6 +7878,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7911,12 +7969,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = doDistribute super."stack_0_1_3_1";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = dontDistribute super."stack-run-auto";
"stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-sandbox" = doDistribute super."stackage-sandbox_0_1_5";
"stackage-types" = doDistribute super."stackage-types_1_1_0";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
@@ -8129,6 +8189,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8167,6 +8228,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8307,6 +8369,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8343,6 +8406,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8788,6 +8852,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9023,6 +9088,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix
index 67eebd091a2..01ab4070a2d 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -420,6 +421,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -774,6 +776,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1759,6 +1762,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
@@ -1808,6 +1812,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2009,7 +2014,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -2114,6 +2121,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2424,6 +2432,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2499,6 +2508,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2511,6 +2521,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2561,6 +2572,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3001,6 +3013,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3303,6 +3316,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3460,6 +3474,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3470,6 +3488,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3553,6 +3572,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4113,6 +4133,7 @@ self: super: {
"haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4271,9 +4292,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_9";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4350,6 +4373,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4725,6 +4749,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4770,6 +4795,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5018,6 +5044,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5205,6 +5232,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5245,11 +5273,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5501,6 +5531,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5613,6 +5644,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_2";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5650,6 +5682,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5708,6 +5741,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5771,6 +5805,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5872,6 +5907,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5918,9 +5954,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6103,6 +6141,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6145,6 +6184,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6308,6 +6348,7 @@ self: super: {
"octopus" = dontDistribute super."octopus";
"oculus" = dontDistribute super."oculus";
"oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = doDistribute super."oeis_0_3_6";
"off-simple" = dontDistribute super."off-simple";
"ofx" = dontDistribute super."ofx";
"ohloh-hs" = dontDistribute super."ohloh-hs";
@@ -6427,6 +6468,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_3_2";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6550,6 +6592,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6629,6 +6672,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6666,6 +6710,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6954,6 +6999,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6970,6 +7019,7 @@ self: super: {
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6988,6 +7038,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7224,6 +7275,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7471,6 +7523,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_6_1_0";
@@ -7488,6 +7541,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_0_4";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_16_2_2";
@@ -7573,6 +7627,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7688,6 +7743,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7728,6 +7784,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_0_2";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7821,6 +7878,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7911,12 +7969,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = doDistribute super."stack_0_1_3_1";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = dontDistribute super."stack-run-auto";
"stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-types" = doDistribute super."stackage-types_1_1_0";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
@@ -8128,6 +8188,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8166,6 +8227,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8306,6 +8368,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8342,6 +8405,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8787,6 +8851,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9021,6 +9086,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix
index 5c07986528d..4fba7c89800 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -420,6 +421,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -774,6 +776,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1758,6 +1761,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
@@ -1807,6 +1811,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2008,7 +2013,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -2113,6 +2120,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2423,6 +2431,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2498,6 +2507,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2510,6 +2520,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2560,6 +2571,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3000,6 +3012,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3176,6 +3189,7 @@ self: super: {
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fft" = dontDistribute super."fft";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
"fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
@@ -3301,6 +3315,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3458,6 +3473,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3468,6 +3487,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3551,6 +3571,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4111,6 +4132,7 @@ self: super: {
"haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4269,9 +4291,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_9";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4348,6 +4372,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4722,6 +4747,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4767,6 +4793,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5013,6 +5040,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_2";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5200,6 +5228,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5240,11 +5269,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5496,6 +5527,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5608,6 +5640,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_2_1";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5645,6 +5678,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5703,6 +5737,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5766,6 +5801,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5867,6 +5903,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5913,9 +5950,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6097,6 +6136,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6139,6 +6179,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6302,6 +6343,7 @@ self: super: {
"octopus" = dontDistribute super."octopus";
"oculus" = dontDistribute super."oculus";
"oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = doDistribute super."oeis_0_3_6";
"off-simple" = dontDistribute super."off-simple";
"ofx" = dontDistribute super."ofx";
"ohloh-hs" = dontDistribute super."ohloh-hs";
@@ -6421,6 +6463,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_3_2";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6544,6 +6587,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6623,6 +6667,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6660,6 +6705,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6947,6 +6993,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6963,6 +7013,7 @@ self: super: {
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6981,6 +7032,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7217,6 +7269,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7464,6 +7517,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_6_1_0";
@@ -7481,6 +7535,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_0_4";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_16_2_2";
@@ -7566,6 +7621,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7681,6 +7737,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7721,6 +7778,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_0_2";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7814,6 +7872,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7904,12 +7963,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = doDistribute super."stack_0_1_4_1";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = dontDistribute super."stack-run-auto";
"stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-types" = doDistribute super."stackage-types_1_1_0";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
@@ -8121,6 +8182,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8159,6 +8221,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8190,6 +8253,7 @@ self: super: {
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
"tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tasty-silver" = doDistribute super."tasty-silver_3_1_7";
"tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1";
"tasty-tap" = dontDistribute super."tasty-tap";
@@ -8296,6 +8360,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8332,6 +8397,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8777,6 +8843,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9011,6 +9078,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix
index 80403083c0e..e326847e919 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -420,6 +421,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -774,6 +776,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1758,6 +1761,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
@@ -1807,6 +1811,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2008,7 +2013,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -2113,6 +2120,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2423,6 +2431,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2498,6 +2507,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2510,6 +2520,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2560,6 +2571,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -3000,6 +3012,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3176,6 +3189,7 @@ self: super: {
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fft" = dontDistribute super."fft";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
"fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
@@ -3301,6 +3315,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3458,6 +3473,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3468,6 +3487,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3551,6 +3571,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4109,6 +4130,7 @@ self: super: {
"haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4267,9 +4289,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_9";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4346,6 +4370,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4720,6 +4745,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4765,6 +4791,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5011,6 +5038,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_2";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5198,6 +5226,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5238,11 +5267,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5492,6 +5523,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5604,6 +5636,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5641,6 +5674,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5699,6 +5733,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_0";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5762,6 +5797,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5863,6 +5899,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5909,9 +5946,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6093,6 +6132,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6135,6 +6175,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6298,6 +6339,7 @@ self: super: {
"octopus" = dontDistribute super."octopus";
"oculus" = dontDistribute super."oculus";
"oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = doDistribute super."oeis_0_3_6";
"off-simple" = dontDistribute super."off-simple";
"ofx" = dontDistribute super."ofx";
"ohloh-hs" = dontDistribute super."ohloh-hs";
@@ -6417,6 +6459,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_3_2";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6540,6 +6583,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6619,6 +6663,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6656,6 +6701,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6943,6 +6989,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6959,6 +7009,7 @@ self: super: {
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6977,6 +7028,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7213,6 +7265,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7460,6 +7513,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_6_1_0";
@@ -7477,6 +7531,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_0_4";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_16_2_2";
@@ -7562,6 +7617,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7677,6 +7733,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7717,6 +7774,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7810,6 +7868,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7900,12 +7959,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = doDistribute super."stack_0_1_4_1";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = dontDistribute super."stack-run-auto";
"stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-types" = doDistribute super."stackage-types_1_1_0";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
@@ -8117,6 +8178,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8155,6 +8217,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8186,6 +8249,7 @@ self: super: {
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
"tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tasty-silver" = doDistribute super."tasty-silver_3_1_7";
"tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1";
"tasty-tap" = dontDistribute super."tasty-tap";
@@ -8292,6 +8356,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8328,6 +8393,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8773,6 +8839,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9006,6 +9073,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix
index 34365164da1..258114215a2 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -420,6 +421,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -774,6 +776,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1757,6 +1760,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
@@ -1806,6 +1810,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2007,7 +2012,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -2112,6 +2119,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2421,6 +2429,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2496,6 +2505,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2508,6 +2518,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2558,6 +2569,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2998,6 +3010,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3174,6 +3187,7 @@ self: super: {
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fft" = dontDistribute super."fft";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
"fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
@@ -3299,6 +3313,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3456,6 +3471,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3466,6 +3485,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3549,6 +3569,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4107,6 +4128,7 @@ self: super: {
"haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4264,9 +4286,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_9";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4343,6 +4367,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4717,6 +4742,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4762,6 +4788,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5008,6 +5035,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_2";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5195,6 +5223,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5235,11 +5264,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5489,6 +5520,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5601,6 +5633,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5638,6 +5671,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5696,6 +5730,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_1";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5759,6 +5794,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5860,6 +5896,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5906,9 +5943,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6090,6 +6129,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6132,6 +6172,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6295,6 +6336,7 @@ self: super: {
"octopus" = dontDistribute super."octopus";
"oculus" = dontDistribute super."oculus";
"oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = doDistribute super."oeis_0_3_6";
"off-simple" = dontDistribute super."off-simple";
"ofx" = dontDistribute super."ofx";
"ohloh-hs" = dontDistribute super."ohloh-hs";
@@ -6414,6 +6456,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_3_2";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6537,6 +6580,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6616,6 +6660,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6653,6 +6698,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6938,6 +6984,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6954,6 +7004,7 @@ self: super: {
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6972,6 +7023,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7208,6 +7260,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7455,6 +7508,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_6_1_0";
@@ -7472,6 +7526,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_0_4";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_16_2_2";
@@ -7557,6 +7612,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7672,6 +7728,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7712,6 +7769,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7805,6 +7863,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7894,12 +7953,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = doDistribute super."stack_0_1_5_0";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = dontDistribute super."stack-run-auto";
"stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-types" = doDistribute super."stackage-types_1_1_0";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
@@ -8111,6 +8172,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8149,6 +8211,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8180,6 +8243,7 @@ self: super: {
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
"tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tasty-silver" = doDistribute super."tasty-silver_3_1_7";
"tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1";
"tasty-tap" = dontDistribute super."tasty-tap";
@@ -8286,6 +8350,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8322,6 +8387,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8767,6 +8833,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -9000,6 +9067,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix
index d9658f630df..4e58939c62a 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -420,6 +421,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -774,6 +776,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1755,6 +1758,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
@@ -1804,6 +1808,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2005,7 +2010,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -2110,6 +2117,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2419,6 +2427,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2494,6 +2503,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2506,6 +2516,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2556,6 +2567,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2995,6 +3007,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3171,6 +3184,7 @@ self: super: {
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fft" = dontDistribute super."fft";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
"fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
@@ -3296,6 +3310,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3453,6 +3468,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3463,6 +3482,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3546,6 +3566,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4104,6 +4125,7 @@ self: super: {
"haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4261,9 +4283,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_9";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4340,6 +4364,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4714,6 +4739,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4759,6 +4785,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5005,6 +5032,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_2";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5192,6 +5220,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5232,11 +5261,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5486,6 +5517,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5598,6 +5630,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5635,6 +5668,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5693,6 +5727,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_1";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5756,6 +5791,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5856,6 +5892,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5902,9 +5939,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_14";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6086,6 +6125,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6128,6 +6168,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6291,6 +6332,7 @@ self: super: {
"octopus" = dontDistribute super."octopus";
"oculus" = dontDistribute super."oculus";
"oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = doDistribute super."oeis_0_3_6";
"off-simple" = dontDistribute super."off-simple";
"ofx" = dontDistribute super."ofx";
"ohloh-hs" = dontDistribute super."ohloh-hs";
@@ -6410,6 +6452,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_3_2";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6533,6 +6576,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6612,6 +6656,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6649,6 +6694,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6934,6 +6980,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6950,6 +7000,7 @@ self: super: {
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6968,6 +7019,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7204,6 +7256,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7451,6 +7504,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_6_1_0";
@@ -7468,6 +7522,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_0_4";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_16_2_2";
@@ -7553,6 +7608,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7668,6 +7724,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7708,6 +7765,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7801,6 +7859,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7890,12 +7949,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = doDistribute super."stack_0_1_5_0";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = dontDistribute super."stack-run-auto";
"stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-types" = doDistribute super."stackage-types_1_1_0";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
@@ -8107,6 +8168,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8145,6 +8207,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8175,6 +8238,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tasty-silver" = doDistribute super."tasty-silver_3_1_7";
"tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1";
"tasty-tap" = dontDistribute super."tasty-tap";
@@ -8281,6 +8345,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8317,6 +8382,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8762,6 +8828,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8995,6 +9062,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix
index 9ed248935ac..1159d8f6fd9 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -420,6 +421,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -774,6 +776,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -1754,6 +1757,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
@@ -1803,6 +1807,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = dontDistribute super."brick";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -2004,7 +2009,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -2109,6 +2116,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2418,6 +2426,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = dontDistribute super."css-syntax";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2493,6 +2502,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2505,6 +2515,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2555,6 +2566,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2993,6 +3005,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3169,6 +3182,7 @@ self: super: {
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fft" = dontDistribute super."fft";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
"fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
@@ -3294,6 +3308,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3451,6 +3466,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3461,6 +3480,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3544,6 +3564,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4102,6 +4123,7 @@ self: super: {
"haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4259,9 +4281,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_9";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4338,6 +4362,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@@ -4712,6 +4737,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4757,6 +4783,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = dontDistribute super."hsx2hs";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = dontDistribute super."htaglib";
@@ -5003,6 +5030,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_2";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5190,6 +5218,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
@@ -5230,11 +5259,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5484,6 +5515,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5596,6 +5628,7 @@ self: super: {
"log-domain" = doDistribute super."log-domain_0_10_3";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5633,6 +5666,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5691,6 +5725,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_1";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5754,6 +5789,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5854,6 +5890,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5900,9 +5937,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_14";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -6084,6 +6123,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -6126,6 +6166,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6289,6 +6330,7 @@ self: super: {
"octopus" = dontDistribute super."octopus";
"oculus" = dontDistribute super."oculus";
"oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = doDistribute super."oeis_0_3_6";
"off-simple" = dontDistribute super."off-simple";
"ofx" = dontDistribute super."ofx";
"ohloh-hs" = dontDistribute super."ohloh-hs";
@@ -6408,6 +6450,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_3_2";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6531,6 +6574,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6610,6 +6654,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6647,6 +6692,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = dontDistribute super."pkcs10";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6932,6 +6978,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6948,6 +6998,7 @@ self: super: {
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6966,6 +7017,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7202,6 +7254,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7449,6 +7502,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_6_1_0";
@@ -7466,6 +7520,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_0_4";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_16_2_2";
@@ -7551,6 +7606,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7666,6 +7722,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_1_1_2_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7706,6 +7763,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7799,6 +7857,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7888,12 +7947,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = doDistribute super."stack_0_1_5_0";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = dontDistribute super."stack-run-auto";
"stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-types" = doDistribute super."stackage-types_1_1_0";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
@@ -8105,6 +8166,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -8143,6 +8205,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_3";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -8173,6 +8236,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tasty-silver" = doDistribute super."tasty-silver_3_1_7";
"tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1";
"tasty-tap" = dontDistribute super."tasty-tap";
@@ -8279,6 +8343,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = dontDistribute super."text-zipper";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8315,6 +8380,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = dontDistribute super."these";
@@ -8760,6 +8826,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8993,6 +9060,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = dontDistribute super."withdependencies";
diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix
index dbbbc48b70e..b3ee73d5bd4 100644
--- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -215,6 +216,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -414,6 +416,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -761,6 +764,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -912,6 +916,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1725,6 +1730,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_10_0_0";
@@ -1773,6 +1779,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_3_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1970,7 +1977,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -2004,6 +2013,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2072,6 +2082,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2376,6 +2387,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = doDistribute super."css-syntax_0_0_4";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2450,6 +2462,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2462,6 +2475,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2512,6 +2526,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2943,6 +2958,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3115,6 +3131,8 @@ self: super: {
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fft" = doDistribute super."fft_0_1_8_2";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -3238,6 +3256,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3392,6 +3411,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3402,6 +3425,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3484,6 +3508,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4032,6 +4057,7 @@ self: super: {
"haskell-names" = dontDistribute super."haskell-names";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4188,9 +4214,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_9";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4266,6 +4294,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -4625,6 +4654,7 @@ self: super: {
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-snap" = doDistribute super."hspec-snap_0_4_0_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4668,6 +4698,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = doDistribute super."hsx2hs_0_13_4";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = doDistribute super."htaglib_1_0_1";
@@ -4903,6 +4934,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_2";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5081,6 +5113,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -5120,11 +5153,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5368,6 +5403,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_2";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5478,6 +5514,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5514,6 +5551,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5572,6 +5610,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_1";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5631,6 +5670,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5728,6 +5768,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5772,9 +5813,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_16";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5952,6 +5995,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -5991,6 +6035,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6150,6 +6195,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -6263,6 +6309,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = dontDistribute super."pagerduty";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6379,6 +6426,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6457,6 +6505,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_4";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6492,6 +6541,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = doDistribute super."pkcs10_0_1_0_5";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6768,6 +6818,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6783,6 +6837,7 @@ self: super: {
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6801,6 +6856,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7026,6 +7082,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7260,6 +7317,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -7271,6 +7329,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_7_1_0";
@@ -7288,6 +7347,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_0_4";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_0_1";
@@ -7367,6 +7427,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7483,6 +7544,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7521,6 +7583,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = doDistribute super."smsaero_0_4_1";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7611,6 +7674,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7698,12 +7762,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = doDistribute super."stack_1_0_0";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0";
"stackage-curator" = doDistribute super."stackage-curator_0_11_0";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-types" = doDistribute super."stackage-types_1_1_0";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
@@ -7882,6 +7948,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7911,6 +7978,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7948,6 +8016,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_6";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7975,6 +8044,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tasty-silver" = doDistribute super."tasty-silver_3_1_8";
"tasty-th" = doDistribute super."tasty-th_0_1_3";
"tateti-tateti" = dontDistribute super."tateti-tateti";
@@ -8077,6 +8147,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = doDistribute super."text-zipper_0_3_1";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8113,6 +8184,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_0";
@@ -8519,6 +8591,7 @@ self: super: {
"uuid" = doDistribute super."uuid_1_3_11";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uuid-types" = doDistribute super."uuid-types_1_0_2";
"uulib" = dontDistribute super."uulib";
@@ -8539,6 +8612,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8759,6 +8833,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = doDistribute super."withdependencies_0_2_2_1";
diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix
index 7186b056ce1..5a42ee14300 100644
--- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -215,6 +216,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -414,6 +416,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -761,6 +764,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -912,6 +916,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1724,6 +1729,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_10_0_0";
@@ -1772,6 +1778,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_3_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1969,7 +1976,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -2003,6 +2012,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2071,6 +2081,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2375,6 +2386,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = doDistribute super."css-syntax_0_0_4";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2449,6 +2461,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2461,6 +2474,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2511,6 +2525,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2941,6 +2956,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3112,6 +3128,8 @@ self: super: {
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fft" = doDistribute super."fft_0_1_8_2";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -3235,6 +3253,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3389,6 +3408,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3399,6 +3422,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3481,6 +3505,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4029,6 +4054,7 @@ self: super: {
"haskell-names" = dontDistribute super."haskell-names";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4185,9 +4211,11 @@ self: super: {
"heaps" = doDistribute super."heaps_0_3_2_1";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4263,6 +4291,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -4622,6 +4651,7 @@ self: super: {
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-snap" = doDistribute super."hspec-snap_0_4_0_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4665,6 +4695,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = doDistribute super."hsx2hs_0_13_4";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = doDistribute super."htaglib_1_0_1";
@@ -4897,6 +4928,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_4";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5074,6 +5106,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -5113,11 +5146,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5359,6 +5394,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_2";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5469,6 +5505,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5505,6 +5542,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5563,6 +5601,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_1";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5622,6 +5661,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5719,6 +5759,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5763,9 +5804,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_16";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5943,6 +5986,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -5982,6 +6026,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6141,6 +6186,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -6254,6 +6300,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = dontDistribute super."pagerduty";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6370,6 +6417,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6448,6 +6496,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6483,6 +6532,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = doDistribute super."pkcs10_0_1_0_5";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6759,6 +6809,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6774,6 +6828,7 @@ self: super: {
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6792,6 +6847,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -7017,6 +7073,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7251,6 +7308,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -7262,6 +7320,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_7_1_0";
@@ -7279,6 +7338,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_0_4";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_0_1";
@@ -7358,6 +7418,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7474,6 +7535,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7512,6 +7574,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = doDistribute super."smsaero_0_4_1";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7602,6 +7665,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7689,12 +7753,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = doDistribute super."stack_1_0_0";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0";
"stackage-curator" = doDistribute super."stackage-curator_0_11_0";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-types" = doDistribute super."stackage-types_1_1_0";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
@@ -7873,6 +7939,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7902,6 +7969,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7939,6 +8007,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_7";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7966,6 +8035,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tasty-silver" = doDistribute super."tasty-silver_3_1_8";
"tasty-th" = doDistribute super."tasty-th_0_1_3";
"tateti-tateti" = dontDistribute super."tateti-tateti";
@@ -8068,6 +8138,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = doDistribute super."text-zipper_0_3_1";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8104,6 +8175,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_0";
@@ -8510,6 +8582,7 @@ self: super: {
"uuid" = doDistribute super."uuid_1_3_11";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uuid-types" = doDistribute super."uuid-types_1_0_2";
"uulib" = dontDistribute super."uulib";
@@ -8530,6 +8603,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8750,6 +8824,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = doDistribute super."withdependencies_0_2_2_1";
diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix
index 14092ca4534..f8a60a4d4ee 100644
--- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -215,6 +216,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -414,6 +416,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -761,6 +764,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -912,6 +916,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1724,6 +1729,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_10_0_0";
@@ -1772,6 +1778,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_3_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1967,7 +1974,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -2001,6 +2010,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2069,6 +2079,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2372,6 +2383,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = doDistribute super."css-syntax_0_0_4";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2446,6 +2458,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2458,6 +2471,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2508,6 +2522,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2937,6 +2952,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3105,6 +3121,8 @@ self: super: {
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fft" = doDistribute super."fft_0_1_8_2";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -3228,6 +3246,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3381,6 +3400,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3391,6 +3414,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3473,6 +3497,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -4017,6 +4042,7 @@ self: super: {
"haskell-names" = dontDistribute super."haskell-names";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4172,9 +4198,11 @@ self: super: {
"heap" = doDistribute super."heap_1_0_2";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4250,6 +4278,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -4608,6 +4637,7 @@ self: super: {
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-snap" = doDistribute super."hspec-snap_0_4_0_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4651,6 +4681,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = doDistribute super."hsx2hs_0_13_4";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = doDistribute super."htaglib_1_0_1";
@@ -4882,6 +4913,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_4";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5058,6 +5090,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -5097,11 +5130,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5343,6 +5378,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_7_0_2";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5453,6 +5489,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5489,6 +5526,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5547,6 +5585,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_1";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5606,6 +5645,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5703,6 +5743,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5747,9 +5788,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_17";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5925,6 +5968,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -5964,6 +6008,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6123,6 +6168,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -6236,6 +6282,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = dontDistribute super."pagerduty";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6352,6 +6399,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6430,6 +6478,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6465,6 +6514,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = doDistribute super."pkcs10_0_1_0_5";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6738,6 +6788,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6753,6 +6807,7 @@ self: super: {
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6771,6 +6826,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -6995,6 +7051,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7228,6 +7285,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -7239,6 +7297,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_7_1_0";
@@ -7256,6 +7315,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_1";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_0_1";
@@ -7335,6 +7395,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7447,6 +7508,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7485,6 +7547,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = doDistribute super."smsaero_0_4_1";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7575,6 +7638,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7661,12 +7725,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack" = doDistribute super."stack_1_0_0";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0";
"stackage-curator" = doDistribute super."stackage-curator_0_11_0";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-types" = doDistribute super."stackage-types_1_1_0";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
@@ -7845,6 +7911,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7874,6 +7941,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7911,6 +7979,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_8";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7938,6 +8007,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tasty-silver" = doDistribute super."tasty-silver_3_1_8";
"tasty-th" = doDistribute super."tasty-th_0_1_3";
"tateti-tateti" = dontDistribute super."tateti-tateti";
@@ -8040,6 +8110,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = doDistribute super."text-zipper_0_3_1";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8076,6 +8147,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_0";
@@ -8482,6 +8554,7 @@ self: super: {
"uuid" = doDistribute super."uuid_1_3_11";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uuid-types" = doDistribute super."uuid-types_1_0_2";
"uulib" = dontDistribute super."uulib";
@@ -8502,6 +8575,7 @@ self: super: {
"validated-literals" = dontDistribute super."validated-literals";
"validation" = dontDistribute super."validation";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8616,6 +8690,7 @@ self: super: {
"wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis";
"wai-middleware-catch" = dontDistribute super."wai-middleware-catch";
"wai-middleware-content-type" = doDistribute super."wai-middleware-content-type_0_2_0";
+ "wai-middleware-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
"wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
"wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
"wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
@@ -8721,6 +8796,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = doDistribute super."withdependencies_0_2_2_1";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix
index 4d06b5e2d35..404ed64c7d4 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -215,6 +216,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -412,6 +414,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -757,6 +760,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -907,6 +911,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1714,6 +1719,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = dontDistribute super."bloodhound";
@@ -1762,6 +1768,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_4_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1956,7 +1963,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -1990,6 +1999,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2058,6 +2068,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2358,6 +2369,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = doDistribute super."css-syntax_0_0_4";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2431,6 +2443,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2443,6 +2456,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2493,6 +2507,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2714,6 +2729,7 @@ self: super: {
"distribution" = dontDistribute super."distribution";
"distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs";
"distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = doDistribute super."diversity_0_8_0_0";
"dixi" = doDistribute super."dixi_0_6_0_5";
"djembe" = dontDistribute super."djembe";
"djinn" = dontDistribute super."djinn";
@@ -2915,6 +2931,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3082,6 +3099,8 @@ self: super: {
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fft" = doDistribute super."fft_0_1_8_2";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -3204,6 +3223,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3357,6 +3377,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3367,6 +3391,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3398,6 +3423,7 @@ self: super: {
"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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4";
"ghc-vis" = dontDistribute super."ghc-vis";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
@@ -3446,6 +3472,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -3986,6 +4013,7 @@ self: super: {
"haskell-names" = dontDistribute super."haskell-names";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4141,9 +4169,11 @@ self: super: {
"heap" = doDistribute super."heap_1_0_2";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4219,6 +4249,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -4577,6 +4608,7 @@ self: super: {
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-snap" = doDistribute super."hspec-snap_0_4_0_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4620,6 +4652,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = doDistribute super."hsx2hs_0_13_4";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = doDistribute super."htaglib_1_0_1";
@@ -4850,6 +4883,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_4";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5026,6 +5060,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -5064,11 +5099,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5309,6 +5346,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_8_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5419,6 +5457,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5455,6 +5494,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5513,6 +5553,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_2";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5572,6 +5613,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5667,6 +5709,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5711,9 +5754,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_17";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5889,6 +5934,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -5928,6 +5974,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6085,6 +6132,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -6197,6 +6245,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_4";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6312,6 +6361,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6390,6 +6440,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6424,6 +6475,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = doDistribute super."pkcs10_0_1_0_5";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6695,6 +6747,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6710,6 +6766,7 @@ self: super: {
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6728,6 +6785,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -6949,6 +7007,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7180,6 +7239,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -7191,6 +7251,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_7_1_0";
@@ -7208,6 +7269,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_1";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_0_1";
@@ -7287,6 +7349,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7397,6 +7460,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7435,6 +7499,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = doDistribute super."smsaero_0_4_1";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7525,6 +7590,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7611,12 +7677,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"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";
"stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0";
"stackage-curator" = doDistribute super."stackage-curator_0_13_0";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
"star-to-star" = dontDistribute super."star-to-star";
@@ -7792,6 +7860,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7821,6 +7890,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7858,6 +7928,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_8";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7885,6 +7956,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tasty-th" = doDistribute super."tasty-th_0_1_3";
"tateti-tateti" = dontDistribute super."tateti-tateti";
"tau" = dontDistribute super."tau";
@@ -7984,6 +8056,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = doDistribute super."text-zipper_0_3_1";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8019,6 +8092,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_1";
@@ -8423,6 +8497,7 @@ self: super: {
"uuid" = doDistribute super."uuid_1_3_11";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uuid-types" = doDistribute super."uuid-types_1_0_2";
"uulib" = dontDistribute super."uulib";
@@ -8442,6 +8517,7 @@ self: super: {
"validate" = dontDistribute super."validate";
"validated-literals" = dontDistribute super."validated-literals";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8556,6 +8632,7 @@ self: super: {
"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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
"wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
"wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
"wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
@@ -8659,6 +8736,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = doDistribute super."withdependencies_0_2_2_1";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix
index 62fd0637274..a053d42419d 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -215,6 +216,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -411,6 +413,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -756,6 +759,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -906,6 +910,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1712,6 +1717,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = dontDistribute super."bloodhound";
@@ -1760,6 +1766,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_4_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1953,7 +1960,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -1987,6 +1996,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2054,6 +2064,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2354,6 +2365,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = doDistribute super."css-syntax_0_0_4";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2427,6 +2439,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2439,6 +2452,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2489,6 +2503,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2710,6 +2725,7 @@ self: super: {
"distribution" = dontDistribute super."distribution";
"distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs";
"distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = doDistribute super."diversity_0_8_0_0";
"dixi" = doDistribute super."dixi_0_6_0_5";
"djembe" = dontDistribute super."djembe";
"djinn" = dontDistribute super."djinn";
@@ -2911,6 +2927,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3078,6 +3095,8 @@ self: super: {
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fft" = doDistribute super."fft_0_1_8_2";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -3200,6 +3219,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3353,6 +3373,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3363,6 +3387,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3394,6 +3419,7 @@ self: super: {
"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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4";
"ghc-vis" = dontDistribute super."ghc-vis";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
@@ -3442,6 +3468,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -3982,6 +4009,7 @@ self: super: {
"haskell-names" = dontDistribute super."haskell-names";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4137,9 +4165,11 @@ self: super: {
"heap" = doDistribute super."heap_1_0_2";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4215,6 +4245,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -4573,6 +4604,7 @@ self: super: {
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-snap" = doDistribute super."hspec-snap_0_4_0_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4616,6 +4648,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = doDistribute super."hsx2hs_0_13_4";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = doDistribute super."htaglib_1_0_1";
@@ -4845,6 +4878,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_4";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -5021,6 +5055,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -5059,11 +5094,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5304,6 +5341,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_8_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5414,6 +5452,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5450,6 +5489,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5508,6 +5548,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_2";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5567,6 +5608,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5662,6 +5704,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5705,9 +5748,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_17";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5883,6 +5928,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -5922,6 +5968,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6079,6 +6126,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -6191,6 +6239,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_4";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6306,6 +6355,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6384,6 +6434,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6418,6 +6469,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = doDistribute super."pkcs10_0_1_0_5";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6689,6 +6741,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6704,6 +6760,7 @@ self: super: {
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6722,6 +6779,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -6942,6 +7000,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7173,6 +7232,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -7184,6 +7244,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_7_1_0";
@@ -7201,6 +7262,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_1";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_1";
@@ -7280,6 +7342,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7390,6 +7453,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7428,6 +7492,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = doDistribute super."smsaero_0_4_1";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7518,6 +7583,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7604,12 +7670,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"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";
"stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0";
"stackage-curator" = doDistribute super."stackage-curator_0_13_0";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
"star-to-star" = dontDistribute super."star-to-star";
@@ -7785,6 +7853,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7814,6 +7883,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7851,6 +7921,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_8";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7878,6 +7949,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tasty-th" = doDistribute super."tasty-th_0_1_3";
"tateti-tateti" = dontDistribute super."tateti-tateti";
"tau" = dontDistribute super."tau";
@@ -7977,6 +8049,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = doDistribute super."text-zipper_0_3_1";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -8012,6 +8085,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_1";
@@ -8416,6 +8490,7 @@ self: super: {
"uuid" = doDistribute super."uuid_1_3_11";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uuid-types" = doDistribute super."uuid-types_1_0_2";
"uulib" = dontDistribute super."uulib";
@@ -8435,6 +8510,7 @@ self: super: {
"validate" = dontDistribute super."validate";
"validated-literals" = dontDistribute super."validated-literals";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8548,6 +8624,7 @@ self: super: {
"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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
"wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
"wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
"wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
@@ -8651,6 +8728,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = doDistribute super."withdependencies_0_2_2_1";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.10.nix b/pkgs/development/haskell-modules/configuration-lts-5.10.nix
index 216517197f3..471a638f1e1 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.10.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.10.nix
@@ -189,6 +189,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -214,6 +215,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -409,6 +411,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -752,6 +755,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -902,6 +906,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1705,6 +1710,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = dontDistribute super."bloodhound";
@@ -1753,6 +1759,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_4_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1943,7 +1950,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -1977,6 +1986,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2019,6 +2029,8 @@ self: super: {
"clash-lib" = doDistribute super."clash-lib_0_6_14";
"clash-prelude" = doDistribute super."clash-prelude_0_10_6";
"clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6";
+ "clash-verilog" = doDistribute super."clash-verilog_0_6_6";
"clash-vhdl" = doDistribute super."clash-vhdl_0_6_10";
"classify" = dontDistribute super."classify";
"classy-parallel" = dontDistribute super."classy-parallel";
@@ -2042,6 +2054,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2264,6 +2277,7 @@ self: super: {
"count" = dontDistribute super."count";
"countable" = dontDistribute super."countable";
"counter" = dontDistribute super."counter";
+ "courier" = doDistribute super."courier_0_1_1_2";
"court" = dontDistribute super."court";
"coverage" = dontDistribute super."coverage";
"cpio-conduit" = dontDistribute super."cpio-conduit";
@@ -2339,6 +2353,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = doDistribute super."css-syntax_0_0_4";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2412,6 +2427,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2424,6 +2440,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2473,6 +2490,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2689,6 +2707,7 @@ self: super: {
"distribution" = dontDistribute super."distribution";
"distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs";
"distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = doDistribute super."diversity_0_8_0_0";
"dixi" = doDistribute super."dixi_0_6_0_5";
"djembe" = dontDistribute super."djembe";
"djinn" = dontDistribute super."djinn";
@@ -2888,6 +2907,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3012,6 +3032,7 @@ self: super: {
"fast-tags" = dontDistribute super."fast-tags";
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
"fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = doDistribute super."fasta_0_10_2_0";
"fastbayes" = dontDistribute super."fastbayes";
"fastcgi" = dontDistribute super."fastcgi";
"fastedit" = dontDistribute super."fastedit";
@@ -3049,6 +3070,8 @@ self: super: {
"ffmpeg-light" = dontDistribute super."ffmpeg-light";
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -3171,6 +3194,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3309,6 +3333,7 @@ self: super: {
"generic-trie" = doDistribute super."generic-trie_0_3_0_1";
"generic-xml" = dontDistribute super."generic-xml";
"generics-eot" = doDistribute super."generics-eot_0_2_1";
+ "generics-sop" = doDistribute super."generics-sop_0_2_1_0";
"generics-sop-lens" = dontDistribute super."generics-sop-lens";
"genericserialize" = dontDistribute super."genericserialize";
"genetics" = dontDistribute super."genetics";
@@ -3321,6 +3346,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3331,6 +3360,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3361,6 +3391,8 @@ self: super: {
"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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1";
+ "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1";
"ghc-vis" = dontDistribute super."ghc-vis";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
@@ -3408,6 +3440,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -3947,6 +3980,7 @@ self: super: {
"haskell-names" = dontDistribute super."haskell-names";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4100,9 +4134,11 @@ self: super: {
"headergen" = dontDistribute super."headergen";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4178,6 +4214,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -4532,6 +4569,7 @@ self: super: {
"hspec-setup" = doDistribute super."hspec-setup_0_1_1_0";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4575,6 +4613,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = doDistribute super."hsx2hs_0_13_4";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = doDistribute super."htaglib_1_0_2";
@@ -4620,6 +4659,7 @@ self: super: {
"http-kinder" = dontDistribute super."http-kinder";
"http-kit" = dontDistribute super."http-kit";
"http-listen" = dontDistribute super."http-listen";
+ "http-media" = doDistribute super."http-media_0_6_3";
"http-monad" = dontDistribute super."http-monad";
"http-proxy" = dontDistribute super."http-proxy";
"http-querystring" = dontDistribute super."http-querystring";
@@ -4800,6 +4840,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_4";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4841,6 +4882,7 @@ self: super: {
"interspersed" = dontDistribute super."interspersed";
"intricacy" = dontDistribute super."intricacy";
"intset" = dontDistribute super."intset";
+ "invariant" = doDistribute super."invariant_0_3_1";
"invertible" = dontDistribute super."invertible";
"invertible-syntax" = dontDistribute super."invertible-syntax";
"io-capture" = dontDistribute super."io-capture";
@@ -4974,6 +5016,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -5012,10 +5055,12 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5255,6 +5300,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_8_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5364,6 +5410,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5399,6 +5446,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5456,6 +5504,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_2";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5514,6 +5563,7 @@ self: super: {
"maybe-justify" = dontDistribute super."maybe-justify";
"maybench" = dontDistribute super."maybench";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5606,6 +5656,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5647,9 +5698,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_18";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5824,6 +5877,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -5850,6 +5904,7 @@ self: super: {
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
"neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2";
"needle" = dontDistribute super."needle";
"neet" = dontDistribute super."neet";
"nehe-tuts" = dontDistribute super."nehe-tuts";
@@ -5862,6 +5917,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6016,6 +6072,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -6127,6 +6184,7 @@ self: super: {
"pacman-memcache" = dontDistribute super."pacman-memcache";
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palindromes" = dontDistribute super."palindromes";
"pam" = dontDistribute super."pam";
@@ -6236,6 +6294,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6312,6 +6371,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6346,6 +6406,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = doDistribute super."pkcs10_0_1_0_5";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6617,6 +6678,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6631,6 +6696,7 @@ self: super: {
"quick-schema" = dontDistribute super."quick-schema";
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6649,6 +6715,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -6867,6 +6934,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7097,6 +7165,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -7108,6 +7177,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_7_1_0";
@@ -7125,6 +7195,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_1";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_1";
@@ -7203,6 +7274,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7312,6 +7384,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7350,6 +7423,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smsaero" = doDistribute super."smsaero_0_4_1";
"smt-lib" = dontDistribute super."smt-lib";
"smtLib" = doDistribute super."smtLib_1_0_7";
@@ -7437,6 +7511,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7523,12 +7598,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"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";
"stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0";
"stackage-curator" = doDistribute super."stackage-curator_0_13_1";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
"star-to-star" = dontDistribute super."star-to-star";
@@ -7703,6 +7780,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7732,6 +7810,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7769,6 +7848,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_9";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7796,6 +7876,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tateti-tateti" = dontDistribute super."tateti-tateti";
"tau" = dontDistribute super."tau";
"tbox" = dontDistribute super."tbox";
@@ -7893,6 +7974,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = doDistribute super."text-zipper_0_3_1";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7928,6 +8010,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_1";
@@ -8330,6 +8413,7 @@ self: super: {
"uuid" = doDistribute super."uuid_1_3_11";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uuid-types" = doDistribute super."uuid-types_1_0_2";
"uulib" = dontDistribute super."uulib";
@@ -8349,6 +8433,7 @@ self: super: {
"validate" = dontDistribute super."validate";
"validated-literals" = dontDistribute super."validated-literals";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8460,6 +8545,7 @@ self: super: {
"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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
"wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
"wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
"wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
@@ -8559,6 +8645,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = doDistribute super."with-location_0_0_0";
"withdependencies" = doDistribute super."withdependencies_0_2_2_1";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.11.nix b/pkgs/development/haskell-modules/configuration-lts-5.11.nix
index 4fa9c249adb..55a176c26cf 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.11.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.11.nix
@@ -189,6 +189,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -214,6 +215,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -408,6 +410,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -751,6 +754,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -901,6 +905,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1595,6 +1600,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_2_0";
"bindings-K8055" = dontDistribute super."bindings-K8055";
"bindings-apr" = dontDistribute super."bindings-apr";
"bindings-apr-util" = dontDistribute super."bindings-apr-util";
@@ -1702,6 +1708,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = dontDistribute super."bloodhound";
@@ -1750,6 +1757,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_4_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1940,7 +1948,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -1974,6 +1984,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2016,6 +2027,8 @@ self: super: {
"clash-lib" = doDistribute super."clash-lib_0_6_14";
"clash-prelude" = doDistribute super."clash-prelude_0_10_6";
"clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6";
+ "clash-verilog" = doDistribute super."clash-verilog_0_6_6";
"clash-vhdl" = doDistribute super."clash-vhdl_0_6_10";
"classify" = dontDistribute super."classify";
"classy-parallel" = dontDistribute super."classy-parallel";
@@ -2039,6 +2052,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2261,6 +2275,7 @@ self: super: {
"count" = dontDistribute super."count";
"countable" = dontDistribute super."countable";
"counter" = dontDistribute super."counter";
+ "courier" = doDistribute super."courier_0_1_1_2";
"court" = dontDistribute super."court";
"coverage" = dontDistribute super."coverage";
"cpio-conduit" = dontDistribute super."cpio-conduit";
@@ -2336,6 +2351,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = doDistribute super."css-syntax_0_0_4";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2409,6 +2425,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2421,6 +2438,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2470,6 +2488,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2686,6 +2705,7 @@ self: super: {
"distribution" = dontDistribute super."distribution";
"distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs";
"distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = doDistribute super."diversity_0_8_0_0";
"dixi" = doDistribute super."dixi_0_6_0_5";
"djembe" = dontDistribute super."djembe";
"djinn" = dontDistribute super."djinn";
@@ -2885,6 +2905,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3008,6 +3029,7 @@ self: super: {
"fast-tags" = dontDistribute super."fast-tags";
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
"fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = doDistribute super."fasta_0_10_2_0";
"fastbayes" = dontDistribute super."fastbayes";
"fastcgi" = dontDistribute super."fastcgi";
"fastedit" = dontDistribute super."fastedit";
@@ -3045,6 +3067,8 @@ self: super: {
"ffmpeg-light" = dontDistribute super."ffmpeg-light";
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -3167,6 +3191,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3305,6 +3330,7 @@ self: super: {
"generic-trie" = doDistribute super."generic-trie_0_3_0_1";
"generic-xml" = dontDistribute super."generic-xml";
"generics-eot" = doDistribute super."generics-eot_0_2_1";
+ "generics-sop" = doDistribute super."generics-sop_0_2_1_0";
"generics-sop-lens" = dontDistribute super."generics-sop-lens";
"genericserialize" = dontDistribute super."genericserialize";
"genetics" = dontDistribute super."genetics";
@@ -3317,6 +3343,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3327,6 +3357,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3357,6 +3388,8 @@ self: super: {
"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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1";
+ "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1";
"ghc-vis" = dontDistribute super."ghc-vis";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
@@ -3404,6 +3437,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -3943,6 +3977,7 @@ self: super: {
"haskell-names" = dontDistribute super."haskell-names";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4096,9 +4131,11 @@ self: super: {
"headergen" = dontDistribute super."headergen";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4174,6 +4211,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -4524,6 +4562,7 @@ self: super: {
"hspec-setup" = doDistribute super."hspec-setup_0_1_1_0";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4567,6 +4606,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = doDistribute super."hsx2hs_0_13_4";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = doDistribute super."htaglib_1_0_2";
@@ -4612,6 +4652,7 @@ self: super: {
"http-kinder" = dontDistribute super."http-kinder";
"http-kit" = dontDistribute super."http-kit";
"http-listen" = dontDistribute super."http-listen";
+ "http-media" = doDistribute super."http-media_0_6_3";
"http-monad" = dontDistribute super."http-monad";
"http-proxy" = dontDistribute super."http-proxy";
"http-querystring" = dontDistribute super."http-querystring";
@@ -4791,6 +4832,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_4";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4832,6 +4874,7 @@ self: super: {
"interspersed" = dontDistribute super."interspersed";
"intricacy" = dontDistribute super."intricacy";
"intset" = dontDistribute super."intset";
+ "invariant" = doDistribute super."invariant_0_3_1";
"invertible" = dontDistribute super."invertible";
"invertible-syntax" = dontDistribute super."invertible-syntax";
"io-capture" = dontDistribute super."io-capture";
@@ -4965,6 +5008,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -5003,10 +5047,12 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5246,6 +5292,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_8_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5355,6 +5402,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5390,6 +5438,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5447,6 +5496,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_3";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5505,6 +5555,7 @@ self: super: {
"maybe-justify" = dontDistribute super."maybe-justify";
"maybench" = dontDistribute super."maybench";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5597,6 +5648,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5638,9 +5690,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_18";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5815,6 +5869,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -5841,6 +5896,7 @@ self: super: {
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
"neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2";
"needle" = dontDistribute super."needle";
"neet" = dontDistribute super."neet";
"nehe-tuts" = dontDistribute super."nehe-tuts";
@@ -5853,6 +5909,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6007,6 +6064,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -6118,6 +6176,7 @@ self: super: {
"pacman-memcache" = dontDistribute super."pacman-memcache";
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palindromes" = dontDistribute super."palindromes";
"pam" = dontDistribute super."pam";
@@ -6227,6 +6286,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6303,6 +6363,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6337,6 +6398,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = doDistribute super."pkcs10_0_1_0_5";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6607,6 +6669,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6621,6 +6687,7 @@ self: super: {
"quick-schema" = dontDistribute super."quick-schema";
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6639,6 +6706,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -6857,6 +6925,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7087,6 +7156,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -7098,6 +7168,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_7_1_0";
@@ -7115,6 +7186,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_1";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_1";
@@ -7193,6 +7265,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7302,6 +7375,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7340,6 +7414,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smsaero" = doDistribute super."smsaero_0_4_1";
"smt-lib" = dontDistribute super."smt-lib";
"smtLib" = doDistribute super."smtLib_1_0_7";
@@ -7427,6 +7502,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7513,12 +7589,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"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";
"stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0";
"stackage-curator" = doDistribute super."stackage-curator_0_13_1";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
"star-to-star" = dontDistribute super."star-to-star";
@@ -7693,6 +7771,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7722,6 +7801,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7759,6 +7839,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_9";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7785,6 +7866,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tateti-tateti" = dontDistribute super."tateti-tateti";
"tau" = dontDistribute super."tau";
"tbox" = dontDistribute super."tbox";
@@ -7882,6 +7964,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = doDistribute super."text-zipper_0_3_1";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7917,6 +8000,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_1";
@@ -8318,6 +8402,7 @@ self: super: {
"uuagd" = dontDistribute super."uuagd";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uulib" = dontDistribute super."uulib";
"uvector" = dontDistribute super."uvector";
@@ -8336,6 +8421,7 @@ self: super: {
"validate" = dontDistribute super."validate";
"validated-literals" = dontDistribute super."validated-literals";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8446,6 +8532,7 @@ self: super: {
"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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
"wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
"wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
"wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
@@ -8545,6 +8632,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = doDistribute super."with-location_0_0_0";
"withdependencies" = doDistribute super."withdependencies_0_2_2_1";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.12.nix b/pkgs/development/haskell-modules/configuration-lts-5.12.nix
index 0449f630810..9ed38cd9f39 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.12.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.12.nix
@@ -189,6 +189,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -214,6 +215,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -408,6 +410,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -750,6 +753,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -900,6 +904,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1594,6 +1599,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_2_0";
"bindings-K8055" = dontDistribute super."bindings-K8055";
"bindings-apr" = dontDistribute super."bindings-apr";
"bindings-apr-util" = dontDistribute super."bindings-apr-util";
@@ -1701,6 +1707,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = dontDistribute super."bloodhound";
@@ -1749,6 +1756,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_4_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1939,7 +1947,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -1973,6 +1983,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2015,6 +2026,8 @@ self: super: {
"clash-lib" = doDistribute super."clash-lib_0_6_15";
"clash-prelude" = doDistribute super."clash-prelude_0_10_7";
"clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6";
+ "clash-verilog" = doDistribute super."clash-verilog_0_6_6";
"clash-vhdl" = doDistribute super."clash-vhdl_0_6_11";
"classify" = dontDistribute super."classify";
"classy-parallel" = dontDistribute super."classy-parallel";
@@ -2038,6 +2051,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2260,6 +2274,7 @@ self: super: {
"count" = dontDistribute super."count";
"countable" = dontDistribute super."countable";
"counter" = dontDistribute super."counter";
+ "courier" = doDistribute super."courier_0_1_1_2";
"court" = dontDistribute super."court";
"coverage" = dontDistribute super."coverage";
"cpio-conduit" = dontDistribute super."cpio-conduit";
@@ -2335,6 +2350,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = doDistribute super."css-syntax_0_0_4";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2408,6 +2424,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2420,6 +2437,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2469,6 +2487,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2685,6 +2704,7 @@ self: super: {
"distribution" = dontDistribute super."distribution";
"distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs";
"distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = doDistribute super."diversity_0_8_0_0";
"dixi" = doDistribute super."dixi_0_6_0_5";
"djembe" = dontDistribute super."djembe";
"djinn" = dontDistribute super."djinn";
@@ -2883,6 +2903,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3005,6 +3026,7 @@ self: super: {
"fast-tags" = dontDistribute super."fast-tags";
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
"fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = doDistribute super."fasta_0_10_2_0";
"fastbayes" = dontDistribute super."fastbayes";
"fastcgi" = dontDistribute super."fastcgi";
"fastedit" = dontDistribute super."fastedit";
@@ -3042,6 +3064,8 @@ self: super: {
"ffmpeg-light" = dontDistribute super."ffmpeg-light";
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -3164,6 +3188,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3302,6 +3327,7 @@ self: super: {
"generic-trie" = doDistribute super."generic-trie_0_3_0_1";
"generic-xml" = dontDistribute super."generic-xml";
"generics-eot" = doDistribute super."generics-eot_0_2_1";
+ "generics-sop" = doDistribute super."generics-sop_0_2_1_0";
"generics-sop-lens" = dontDistribute super."generics-sop-lens";
"genericserialize" = dontDistribute super."genericserialize";
"genetics" = dontDistribute super."genetics";
@@ -3314,6 +3340,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3324,6 +3354,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3354,6 +3385,8 @@ self: super: {
"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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1";
+ "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1";
"ghc-vis" = dontDistribute super."ghc-vis";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
@@ -3401,6 +3434,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -3940,6 +3974,7 @@ self: super: {
"haskell-names" = dontDistribute super."haskell-names";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4093,9 +4128,11 @@ self: super: {
"headergen" = dontDistribute super."headergen";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4171,6 +4208,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -4521,6 +4559,7 @@ self: super: {
"hspec-setup" = doDistribute super."hspec-setup_0_1_1_0";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4564,6 +4603,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = doDistribute super."hsx2hs_0_13_4";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htags" = dontDistribute super."htags";
@@ -4608,6 +4648,7 @@ self: super: {
"http-kinder" = dontDistribute super."http-kinder";
"http-kit" = dontDistribute super."http-kit";
"http-listen" = dontDistribute super."http-listen";
+ "http-media" = doDistribute super."http-media_0_6_3";
"http-monad" = dontDistribute super."http-monad";
"http-proxy" = dontDistribute super."http-proxy";
"http-querystring" = dontDistribute super."http-querystring";
@@ -4787,6 +4828,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_4";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4828,6 +4870,7 @@ self: super: {
"interspersed" = dontDistribute super."interspersed";
"intricacy" = dontDistribute super."intricacy";
"intset" = dontDistribute super."intset";
+ "invariant" = doDistribute super."invariant_0_3_1";
"invertible" = dontDistribute super."invertible";
"invertible-syntax" = dontDistribute super."invertible-syntax";
"io-capture" = dontDistribute super."io-capture";
@@ -4961,6 +5004,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -4999,10 +5043,12 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5242,6 +5288,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_8_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5351,6 +5398,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5386,6 +5434,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5441,6 +5490,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_3";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5498,6 +5548,7 @@ self: super: {
"maybe-justify" = dontDistribute super."maybe-justify";
"maybench" = dontDistribute super."maybench";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5589,6 +5640,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5629,9 +5681,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_18";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5806,6 +5860,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -5832,6 +5887,7 @@ self: super: {
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
"neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2";
"needle" = dontDistribute super."needle";
"neet" = dontDistribute super."neet";
"nehe-tuts" = dontDistribute super."nehe-tuts";
@@ -5844,6 +5900,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -5998,6 +6055,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -6109,6 +6167,7 @@ self: super: {
"pacman-memcache" = dontDistribute super."pacman-memcache";
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palindromes" = dontDistribute super."palindromes";
"pam" = dontDistribute super."pam";
@@ -6218,6 +6277,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6294,6 +6354,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6328,6 +6389,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = doDistribute super."pkcs10_0_1_0_5";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6598,6 +6660,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6612,6 +6678,7 @@ self: super: {
"quick-schema" = dontDistribute super."quick-schema";
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6630,6 +6697,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -6848,6 +6916,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7078,6 +7147,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -7089,6 +7159,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_7_1_0";
@@ -7106,6 +7177,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_1";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_1";
@@ -7183,6 +7255,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7292,6 +7365,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7330,6 +7404,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smsaero" = doDistribute super."smsaero_0_4_1";
"smt-lib" = dontDistribute super."smt-lib";
"smtLib" = doDistribute super."smtLib_1_0_7";
@@ -7417,6 +7492,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7503,12 +7579,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"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";
"stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0";
"stackage-curator" = doDistribute super."stackage-curator_0_13_1";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
"star-to-star" = dontDistribute super."star-to-star";
@@ -7683,6 +7761,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7712,6 +7791,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7749,6 +7829,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_9";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7775,6 +7856,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tateti-tateti" = dontDistribute super."tateti-tateti";
"tau" = dontDistribute super."tau";
"tbox" = dontDistribute super."tbox";
@@ -7872,6 +7954,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = doDistribute super."text-zipper_0_3_1";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7907,6 +7990,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_1";
@@ -8308,6 +8392,7 @@ self: super: {
"uuagd" = dontDistribute super."uuagd";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uulib" = dontDistribute super."uulib";
"uvector" = dontDistribute super."uvector";
@@ -8326,6 +8411,7 @@ self: super: {
"validate" = dontDistribute super."validate";
"validated-literals" = dontDistribute super."validated-literals";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8436,6 +8522,7 @@ self: super: {
"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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
"wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
"wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
"wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
@@ -8535,6 +8622,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = doDistribute super."with-location_0_0_0";
"withdependencies" = doDistribute super."withdependencies_0_2_2_1";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.13.nix b/pkgs/development/haskell-modules/configuration-lts-5.13.nix
index a66652715c3..cf6869ea157 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.13.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.13.nix
@@ -189,6 +189,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -214,6 +215,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -408,6 +410,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -750,6 +753,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -899,6 +903,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1590,6 +1595,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_2_0";
"bindings-K8055" = dontDistribute super."bindings-K8055";
"bindings-apr" = dontDistribute super."bindings-apr";
"bindings-apr-util" = dontDistribute super."bindings-apr-util";
@@ -1697,6 +1703,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = dontDistribute super."bloodhound";
@@ -1745,6 +1752,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_4_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1935,7 +1943,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -1969,6 +1979,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2011,6 +2022,8 @@ self: super: {
"clash-lib" = doDistribute super."clash-lib_0_6_15";
"clash-prelude" = doDistribute super."clash-prelude_0_10_7";
"clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6";
+ "clash-verilog" = doDistribute super."clash-verilog_0_6_6";
"clash-vhdl" = doDistribute super."clash-vhdl_0_6_11";
"classify" = dontDistribute super."classify";
"classy-parallel" = dontDistribute super."classy-parallel";
@@ -2034,6 +2047,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2256,6 +2270,7 @@ self: super: {
"count" = dontDistribute super."count";
"countable" = dontDistribute super."countable";
"counter" = dontDistribute super."counter";
+ "courier" = doDistribute super."courier_0_1_1_2";
"court" = dontDistribute super."court";
"coverage" = dontDistribute super."coverage";
"cpio-conduit" = dontDistribute super."cpio-conduit";
@@ -2331,6 +2346,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = doDistribute super."css-syntax_0_0_4";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2404,6 +2420,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2416,6 +2433,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2465,6 +2483,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2681,6 +2700,7 @@ self: super: {
"distribution" = dontDistribute super."distribution";
"distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs";
"distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = doDistribute super."diversity_0_8_0_0";
"dixi" = doDistribute super."dixi_0_6_0_5";
"djembe" = dontDistribute super."djembe";
"djinn" = dontDistribute super."djinn";
@@ -2879,6 +2899,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3001,6 +3022,7 @@ self: super: {
"fast-tags" = dontDistribute super."fast-tags";
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
"fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = doDistribute super."fasta_0_10_2_0";
"fastbayes" = dontDistribute super."fastbayes";
"fastcgi" = dontDistribute super."fastcgi";
"fastedit" = dontDistribute super."fastedit";
@@ -3038,6 +3060,8 @@ self: super: {
"ffmpeg-light" = dontDistribute super."ffmpeg-light";
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -3160,6 +3184,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3298,6 +3323,7 @@ self: super: {
"generic-trie" = doDistribute super."generic-trie_0_3_0_1";
"generic-xml" = dontDistribute super."generic-xml";
"generics-eot" = doDistribute super."generics-eot_0_2_1";
+ "generics-sop" = doDistribute super."generics-sop_0_2_1_0";
"generics-sop-lens" = dontDistribute super."generics-sop-lens";
"genericserialize" = dontDistribute super."genericserialize";
"genetics" = dontDistribute super."genetics";
@@ -3310,6 +3336,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3320,6 +3350,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3350,6 +3381,8 @@ self: super: {
"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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1";
+ "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1";
"ghc-vis" = dontDistribute super."ghc-vis";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
@@ -3397,6 +3430,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -3936,6 +3970,7 @@ self: super: {
"haskell-names" = dontDistribute super."haskell-names";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4089,9 +4124,11 @@ self: super: {
"headergen" = dontDistribute super."headergen";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4167,6 +4204,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -4517,6 +4555,7 @@ self: super: {
"hspec-setup" = doDistribute super."hspec-setup_0_1_1_0";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4560,6 +4599,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = doDistribute super."hsx2hs_0_13_4";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htags" = dontDistribute super."htags";
@@ -4604,6 +4644,7 @@ self: super: {
"http-kinder" = dontDistribute super."http-kinder";
"http-kit" = dontDistribute super."http-kit";
"http-listen" = dontDistribute super."http-listen";
+ "http-media" = doDistribute super."http-media_0_6_3";
"http-monad" = dontDistribute super."http-monad";
"http-proxy" = dontDistribute super."http-proxy";
"http-querystring" = dontDistribute super."http-querystring";
@@ -4783,6 +4824,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_4";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4824,6 +4866,7 @@ self: super: {
"interspersed" = dontDistribute super."interspersed";
"intricacy" = dontDistribute super."intricacy";
"intset" = dontDistribute super."intset";
+ "invariant" = doDistribute super."invariant_0_3_1";
"invertible" = dontDistribute super."invertible";
"invertible-syntax" = dontDistribute super."invertible-syntax";
"io-capture" = dontDistribute super."io-capture";
@@ -4956,6 +4999,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -4994,10 +5038,12 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5237,6 +5283,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_8_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5346,6 +5393,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5381,6 +5429,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5435,6 +5484,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_3";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5492,6 +5542,7 @@ self: super: {
"maybe-justify" = dontDistribute super."maybe-justify";
"maybench" = dontDistribute super."maybench";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5583,6 +5634,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5623,9 +5675,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_18";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5800,6 +5854,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -5826,6 +5881,7 @@ self: super: {
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
"neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2";
"needle" = dontDistribute super."needle";
"neet" = dontDistribute super."neet";
"nehe-tuts" = dontDistribute super."nehe-tuts";
@@ -5838,6 +5894,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -5992,6 +6049,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -6102,6 +6160,7 @@ self: super: {
"pacman-memcache" = dontDistribute super."pacman-memcache";
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palindromes" = dontDistribute super."palindromes";
"pam" = dontDistribute super."pam";
@@ -6211,6 +6270,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6287,6 +6347,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6321,6 +6382,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = doDistribute super."pkcs10_0_1_0_5";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6591,6 +6653,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6605,6 +6671,7 @@ self: super: {
"quick-schema" = dontDistribute super."quick-schema";
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6623,6 +6690,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -6841,6 +6909,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7071,6 +7140,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -7082,6 +7152,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_7_1_0";
@@ -7099,6 +7170,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_1";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_1";
@@ -7176,6 +7248,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7285,6 +7358,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7323,6 +7397,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smsaero" = doDistribute super."smsaero_0_4_1";
"smt-lib" = dontDistribute super."smt-lib";
"smtLib" = doDistribute super."smtLib_1_0_7";
@@ -7410,6 +7485,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7496,12 +7572,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"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";
"stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0";
"stackage-curator" = doDistribute super."stackage-curator_0_13_3";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
"star-to-star" = dontDistribute super."star-to-star";
@@ -7676,6 +7754,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7705,6 +7784,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7742,6 +7822,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_9";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7768,6 +7849,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tateti-tateti" = dontDistribute super."tateti-tateti";
"tau" = dontDistribute super."tau";
"tbox" = dontDistribute super."tbox";
@@ -7865,6 +7947,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = doDistribute super."text-zipper_0_3_1";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7900,6 +7983,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_1";
@@ -8300,6 +8384,7 @@ self: super: {
"uuagd" = dontDistribute super."uuagd";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uulib" = dontDistribute super."uulib";
"uvector" = dontDistribute super."uvector";
@@ -8318,6 +8403,7 @@ self: super: {
"validate" = dontDistribute super."validate";
"validated-literals" = dontDistribute super."validated-literals";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8427,6 +8513,7 @@ self: super: {
"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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
"wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
"wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
"wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
@@ -8526,6 +8613,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = doDistribute super."with-location_0_0_0";
"withdependencies" = doDistribute super."withdependencies_0_2_2_1";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.14.nix b/pkgs/development/haskell-modules/configuration-lts-5.14.nix
index f353a00b1d1..5e4bedf16ce 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.14.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.14.nix
@@ -189,6 +189,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -214,6 +215,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -408,6 +410,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -748,6 +751,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -897,6 +901,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1586,6 +1591,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_2_0";
"bindings-K8055" = dontDistribute super."bindings-K8055";
"bindings-apr" = dontDistribute super."bindings-apr";
"bindings-apr-util" = dontDistribute super."bindings-apr-util";
@@ -1692,6 +1698,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = dontDistribute super."bloodhound";
@@ -1740,6 +1747,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_4_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1930,7 +1938,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -1963,6 +1973,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2005,6 +2016,8 @@ self: super: {
"clash-lib" = doDistribute super."clash-lib_0_6_15";
"clash-prelude" = doDistribute super."clash-prelude_0_10_7";
"clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6";
+ "clash-verilog" = doDistribute super."clash-verilog_0_6_6";
"clash-vhdl" = doDistribute super."clash-vhdl_0_6_11";
"classify" = dontDistribute super."classify";
"classy-parallel" = dontDistribute super."classy-parallel";
@@ -2028,6 +2041,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2224,6 +2238,7 @@ self: super: {
"convertible-ascii" = dontDistribute super."convertible-ascii";
"convertible-text" = dontDistribute super."convertible-text";
"cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_2";
"coordinate" = dontDistribute super."coordinate";
"copilot" = dontDistribute super."copilot";
"copilot-c99" = dontDistribute super."copilot-c99";
@@ -2247,6 +2262,7 @@ self: super: {
"count" = dontDistribute super."count";
"countable" = dontDistribute super."countable";
"counter" = dontDistribute super."counter";
+ "courier" = doDistribute super."courier_0_1_1_2";
"court" = dontDistribute super."court";
"coverage" = dontDistribute super."coverage";
"cpio-conduit" = dontDistribute super."cpio-conduit";
@@ -2322,6 +2338,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = doDistribute super."css-syntax_0_0_4";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2395,6 +2412,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2407,6 +2425,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2456,6 +2475,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2672,6 +2692,7 @@ self: super: {
"distribution" = dontDistribute super."distribution";
"distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs";
"distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = doDistribute super."diversity_0_8_0_0";
"dixi" = doDistribute super."dixi_0_6_0_5";
"djembe" = dontDistribute super."djembe";
"djinn" = dontDistribute super."djinn";
@@ -2870,6 +2891,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -2992,6 +3014,7 @@ self: super: {
"fast-tags" = dontDistribute super."fast-tags";
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
"fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = doDistribute super."fasta_0_10_2_0";
"fastbayes" = dontDistribute super."fastbayes";
"fastcgi" = dontDistribute super."fastcgi";
"fastedit" = dontDistribute super."fastedit";
@@ -3029,6 +3052,8 @@ self: super: {
"ffmpeg-light" = dontDistribute super."ffmpeg-light";
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -3150,6 +3175,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3288,6 +3314,7 @@ self: super: {
"generic-trie" = doDistribute super."generic-trie_0_3_0_1";
"generic-xml" = dontDistribute super."generic-xml";
"generics-eot" = doDistribute super."generics-eot_0_2_1";
+ "generics-sop" = doDistribute super."generics-sop_0_2_1_0";
"generics-sop-lens" = dontDistribute super."generics-sop-lens";
"genericserialize" = dontDistribute super."genericserialize";
"genetics" = dontDistribute super."genetics";
@@ -3299,6 +3326,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3309,6 +3340,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3339,6 +3371,8 @@ self: super: {
"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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1";
+ "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1";
"ghc-vis" = dontDistribute super."ghc-vis";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
@@ -3386,6 +3420,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -3925,6 +3960,7 @@ self: super: {
"haskell-names" = dontDistribute super."haskell-names";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4078,9 +4114,11 @@ self: super: {
"headergen" = dontDistribute super."headergen";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4156,6 +4194,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -4185,6 +4224,7 @@ self: super: {
"himerge" = dontDistribute super."himerge";
"himg" = dontDistribute super."himg";
"himpy" = dontDistribute super."himpy";
+ "hindent" = doDistribute super."hindent_4_6_3";
"hindley-milner" = dontDistribute super."hindley-milner";
"hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
"hinduce-classifier" = dontDistribute super."hinduce-classifier";
@@ -4505,6 +4545,7 @@ self: super: {
"hspec-setup" = doDistribute super."hspec-setup_0_1_1_0";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4548,6 +4589,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = doDistribute super."hsx2hs_0_13_4";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htags" = dontDistribute super."htags";
@@ -4592,6 +4634,7 @@ self: super: {
"http-kinder" = dontDistribute super."http-kinder";
"http-kit" = dontDistribute super."http-kit";
"http-listen" = dontDistribute super."http-listen";
+ "http-media" = doDistribute super."http-media_0_6_3";
"http-monad" = dontDistribute super."http-monad";
"http-proxy" = dontDistribute super."http-proxy";
"http-querystring" = dontDistribute super."http-querystring";
@@ -4771,6 +4814,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_4";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4812,6 +4856,7 @@ self: super: {
"interspersed" = dontDistribute super."interspersed";
"intricacy" = dontDistribute super."intricacy";
"intset" = dontDistribute super."intset";
+ "invariant" = doDistribute super."invariant_0_3_1";
"invertible" = dontDistribute super."invertible";
"invertible-syntax" = dontDistribute super."invertible-syntax";
"io-capture" = dontDistribute super."io-capture";
@@ -4944,6 +4989,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -4982,10 +5028,12 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5224,6 +5272,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_8_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5333,6 +5382,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5368,6 +5418,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5422,6 +5473,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_3";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5479,6 +5531,7 @@ self: super: {
"maybe-justify" = dontDistribute super."maybe-justify";
"maybench" = dontDistribute super."maybench";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5569,6 +5622,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5609,9 +5663,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_18";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5786,6 +5842,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -5812,6 +5869,7 @@ self: super: {
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
"neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2";
"needle" = dontDistribute super."needle";
"neet" = dontDistribute super."neet";
"nehe-tuts" = dontDistribute super."nehe-tuts";
@@ -5824,6 +5882,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -5978,6 +6037,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -6088,6 +6148,7 @@ self: super: {
"pacman-memcache" = dontDistribute super."pacman-memcache";
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palindromes" = dontDistribute super."palindromes";
"pam" = dontDistribute super."pam";
@@ -6196,6 +6257,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6272,6 +6334,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6306,6 +6369,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = doDistribute super."pkcs10_0_1_0_5";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6575,6 +6639,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6589,6 +6657,7 @@ self: super: {
"quick-schema" = dontDistribute super."quick-schema";
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6607,6 +6676,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -6825,6 +6895,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7055,6 +7126,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -7066,6 +7138,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_7_1_0";
@@ -7083,6 +7156,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_1";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_1";
@@ -7160,6 +7234,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7269,6 +7344,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7307,6 +7383,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smsaero" = doDistribute super."smsaero_0_4_1";
"smt-lib" = dontDistribute super."smt-lib";
"smtLib" = doDistribute super."smtLib_1_0_7";
@@ -7394,6 +7471,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7480,12 +7558,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"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";
"stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0";
"stackage-curator" = doDistribute super."stackage-curator_0_13_3";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
"star-to-star" = dontDistribute super."star-to-star";
@@ -7660,6 +7740,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7689,6 +7770,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7725,6 +7807,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_9";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7751,6 +7834,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tateti-tateti" = dontDistribute super."tateti-tateti";
"tau" = dontDistribute super."tau";
"tbox" = dontDistribute super."tbox";
@@ -7847,6 +7931,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = doDistribute super."text-zipper_0_3_1";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7882,6 +7967,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_1";
@@ -8282,6 +8368,7 @@ self: super: {
"uuagd" = dontDistribute super."uuagd";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uulib" = dontDistribute super."uulib";
"uvector" = dontDistribute super."uvector";
@@ -8300,6 +8387,7 @@ self: super: {
"validate" = dontDistribute super."validate";
"validated-literals" = dontDistribute super."validated-literals";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8407,6 +8495,7 @@ self: super: {
"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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
"wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
"wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
"wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
@@ -8506,6 +8595,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = doDistribute super."with-location_0_0_0";
"withdependencies" = doDistribute super."withdependencies_0_2_2_1";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.15.nix b/pkgs/development/haskell-modules/configuration-lts-5.15.nix
index 9ec24560413..6a07e3349ba 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.15.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.15.nix
@@ -189,6 +189,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -214,6 +215,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -408,6 +410,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -747,6 +750,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -896,6 +900,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1585,6 +1590,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_2_0";
"bindings-K8055" = dontDistribute super."bindings-K8055";
"bindings-apr" = dontDistribute super."bindings-apr";
"bindings-apr-util" = dontDistribute super."bindings-apr-util";
@@ -1691,6 +1697,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = dontDistribute super."bloodhound";
@@ -1739,6 +1746,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_4_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1929,7 +1937,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -1962,6 +1972,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2004,6 +2015,8 @@ self: super: {
"clash-lib" = doDistribute super."clash-lib_0_6_15";
"clash-prelude" = doDistribute super."clash-prelude_0_10_7";
"clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6";
+ "clash-verilog" = doDistribute super."clash-verilog_0_6_6";
"clash-vhdl" = doDistribute super."clash-vhdl_0_6_11";
"classify" = dontDistribute super."classify";
"classy-parallel" = dontDistribute super."classy-parallel";
@@ -2027,6 +2040,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2222,6 +2236,7 @@ self: super: {
"convertible-ascii" = dontDistribute super."convertible-ascii";
"convertible-text" = dontDistribute super."convertible-text";
"cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_2";
"coordinate" = dontDistribute super."coordinate";
"copilot" = dontDistribute super."copilot";
"copilot-c99" = dontDistribute super."copilot-c99";
@@ -2245,6 +2260,7 @@ self: super: {
"count" = dontDistribute super."count";
"countable" = dontDistribute super."countable";
"counter" = dontDistribute super."counter";
+ "courier" = doDistribute super."courier_0_1_1_2";
"court" = dontDistribute super."court";
"coverage" = dontDistribute super."coverage";
"cpio-conduit" = dontDistribute super."cpio-conduit";
@@ -2320,6 +2336,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = doDistribute super."css-syntax_0_0_4";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2392,6 +2409,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2404,6 +2422,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2453,6 +2472,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2669,6 +2689,7 @@ self: super: {
"distribution" = dontDistribute super."distribution";
"distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs";
"distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = doDistribute super."diversity_0_8_0_0";
"dixi" = doDistribute super."dixi_0_6_0_5";
"djembe" = dontDistribute super."djembe";
"djinn" = dontDistribute super."djinn";
@@ -2866,6 +2887,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -2987,6 +3009,7 @@ self: super: {
"fast-tags" = dontDistribute super."fast-tags";
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
"fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = doDistribute super."fasta_0_10_2_0";
"fastbayes" = dontDistribute super."fastbayes";
"fastcgi" = dontDistribute super."fastcgi";
"fastedit" = dontDistribute super."fastedit";
@@ -3024,6 +3047,8 @@ self: super: {
"ffmpeg-light" = dontDistribute super."ffmpeg-light";
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -3145,6 +3170,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3283,6 +3309,7 @@ self: super: {
"generic-trie" = doDistribute super."generic-trie_0_3_0_1";
"generic-xml" = dontDistribute super."generic-xml";
"generics-eot" = doDistribute super."generics-eot_0_2_1";
+ "generics-sop" = doDistribute super."generics-sop_0_2_1_0";
"generics-sop-lens" = dontDistribute super."generics-sop-lens";
"genericserialize" = dontDistribute super."genericserialize";
"genetics" = dontDistribute super."genetics";
@@ -3294,6 +3321,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3304,6 +3335,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3334,6 +3366,8 @@ self: super: {
"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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1";
+ "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1";
"ghc-vis" = dontDistribute super."ghc-vis";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
@@ -3381,6 +3415,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -3920,6 +3955,7 @@ self: super: {
"haskell-names" = dontDistribute super."haskell-names";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4072,9 +4108,11 @@ self: super: {
"headergen" = dontDistribute super."headergen";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4149,6 +4187,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -4178,6 +4217,7 @@ self: super: {
"himerge" = dontDistribute super."himerge";
"himg" = dontDistribute super."himg";
"himpy" = dontDistribute super."himpy";
+ "hindent" = doDistribute super."hindent_4_6_3";
"hindley-milner" = dontDistribute super."hindley-milner";
"hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
"hinduce-classifier" = dontDistribute super."hinduce-classifier";
@@ -4498,6 +4538,7 @@ self: super: {
"hspec-setup" = doDistribute super."hspec-setup_0_1_1_0";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4541,6 +4582,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = doDistribute super."hsx2hs_0_13_4";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htags" = dontDistribute super."htags";
@@ -4585,6 +4627,7 @@ self: super: {
"http-kinder" = dontDistribute super."http-kinder";
"http-kit" = dontDistribute super."http-kit";
"http-listen" = dontDistribute super."http-listen";
+ "http-media" = doDistribute super."http-media_0_6_3";
"http-monad" = dontDistribute super."http-monad";
"http-proxy" = dontDistribute super."http-proxy";
"http-querystring" = dontDistribute super."http-querystring";
@@ -4764,6 +4807,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_4";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4805,6 +4849,7 @@ self: super: {
"interspersed" = dontDistribute super."interspersed";
"intricacy" = dontDistribute super."intricacy";
"intset" = dontDistribute super."intset";
+ "invariant" = doDistribute super."invariant_0_3_1";
"invertible" = dontDistribute super."invertible";
"invertible-syntax" = dontDistribute super."invertible-syntax";
"io-capture" = dontDistribute super."io-capture";
@@ -4937,6 +4982,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -4975,10 +5021,12 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5216,6 +5264,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_8_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5325,6 +5374,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5360,6 +5410,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5414,6 +5465,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_3";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5471,6 +5523,7 @@ self: super: {
"maybe-justify" = dontDistribute super."maybe-justify";
"maybench" = dontDistribute super."maybench";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5561,6 +5614,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5601,9 +5655,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_18";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5778,6 +5834,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -5804,6 +5861,7 @@ self: super: {
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
"neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2";
"needle" = dontDistribute super."needle";
"neet" = dontDistribute super."neet";
"nehe-tuts" = dontDistribute super."nehe-tuts";
@@ -5816,6 +5874,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -5970,6 +6029,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -6080,6 +6140,7 @@ self: super: {
"pacman-memcache" = dontDistribute super."pacman-memcache";
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palindromes" = dontDistribute super."palindromes";
"pam" = dontDistribute super."pam";
@@ -6188,6 +6249,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6264,6 +6326,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6298,6 +6361,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = doDistribute super."pkcs10_0_1_0_5";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6565,6 +6629,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6579,6 +6647,7 @@ self: super: {
"quick-schema" = dontDistribute super."quick-schema";
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6597,6 +6666,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -6815,6 +6885,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7045,6 +7116,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -7056,6 +7128,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_7_1_0";
@@ -7073,6 +7146,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_1";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_1";
@@ -7150,6 +7224,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7259,6 +7334,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7297,6 +7373,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smsaero" = doDistribute super."smsaero_0_4_1";
"smt-lib" = dontDistribute super."smt-lib";
"smtLib" = doDistribute super."smtLib_1_0_7";
@@ -7384,6 +7461,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7470,12 +7548,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"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";
"stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0";
"stackage-curator" = doDistribute super."stackage-curator_0_13_3";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
"star-to-star" = dontDistribute super."star-to-star";
@@ -7650,6 +7730,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7679,6 +7760,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7715,6 +7797,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_9";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7740,6 +7823,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tateti-tateti" = dontDistribute super."tateti-tateti";
"tau" = dontDistribute super."tau";
"tbox" = dontDistribute super."tbox";
@@ -7836,6 +7920,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = doDistribute super."text-zipper_0_3_1";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7871,6 +7956,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_1";
@@ -8270,6 +8356,7 @@ self: super: {
"uuagd" = dontDistribute super."uuagd";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uulib" = dontDistribute super."uulib";
"uvector" = dontDistribute super."uvector";
@@ -8288,6 +8375,7 @@ self: super: {
"validate" = dontDistribute super."validate";
"validated-literals" = dontDistribute super."validated-literals";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8395,6 +8483,7 @@ self: super: {
"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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
"wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
"wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
"wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
@@ -8494,6 +8583,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = doDistribute super."with-location_0_0_0";
"withdependencies" = doDistribute super."withdependencies_0_2_2_1";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.16.nix b/pkgs/development/haskell-modules/configuration-lts-5.16.nix
index fe35f1a0153..39bf0c4feca 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.16.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.16.nix
@@ -189,6 +189,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -214,6 +215,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -408,6 +410,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -746,6 +749,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -895,6 +899,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1580,6 +1585,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_2_0";
"bindings-K8055" = dontDistribute super."bindings-K8055";
"bindings-apr" = dontDistribute super."bindings-apr";
"bindings-apr-util" = dontDistribute super."bindings-apr-util";
@@ -1686,6 +1692,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = dontDistribute super."bloodhound";
@@ -1734,6 +1741,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_4_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1923,7 +1931,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -1956,6 +1966,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -1998,6 +2009,8 @@ self: super: {
"clash-lib" = doDistribute super."clash-lib_0_6_15";
"clash-prelude" = doDistribute super."clash-prelude_0_10_7";
"clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6";
+ "clash-verilog" = doDistribute super."clash-verilog_0_6_6";
"clash-vhdl" = doDistribute super."clash-vhdl_0_6_11";
"classify" = dontDistribute super."classify";
"classy-parallel" = dontDistribute super."classy-parallel";
@@ -2021,6 +2034,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2213,6 +2227,7 @@ self: super: {
"convertible-ascii" = dontDistribute super."convertible-ascii";
"convertible-text" = dontDistribute super."convertible-text";
"cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_2";
"coordinate" = dontDistribute super."coordinate";
"copilot" = dontDistribute super."copilot";
"copilot-c99" = dontDistribute super."copilot-c99";
@@ -2236,6 +2251,7 @@ self: super: {
"count" = dontDistribute super."count";
"countable" = dontDistribute super."countable";
"counter" = dontDistribute super."counter";
+ "courier" = doDistribute super."courier_0_1_1_2";
"court" = dontDistribute super."court";
"coverage" = dontDistribute super."coverage";
"cpio-conduit" = dontDistribute super."cpio-conduit";
@@ -2311,6 +2327,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = doDistribute super."css-syntax_0_0_4";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2383,6 +2400,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2395,6 +2413,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2444,6 +2463,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2660,6 +2680,7 @@ self: super: {
"distribution" = dontDistribute super."distribution";
"distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs";
"distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = doDistribute super."diversity_0_8_0_0";
"dixi" = doDistribute super."dixi_0_6_0_5";
"djembe" = dontDistribute super."djembe";
"djinn" = dontDistribute super."djinn";
@@ -2856,6 +2877,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -2977,6 +2999,7 @@ self: super: {
"fast-tags" = dontDistribute super."fast-tags";
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
"fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = doDistribute super."fasta_0_10_2_0";
"fastbayes" = dontDistribute super."fastbayes";
"fastcgi" = dontDistribute super."fastcgi";
"fastedit" = dontDistribute super."fastedit";
@@ -3014,6 +3037,8 @@ self: super: {
"ffmpeg-light" = dontDistribute super."ffmpeg-light";
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -3135,6 +3160,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3273,6 +3299,7 @@ self: super: {
"generic-trie" = doDistribute super."generic-trie_0_3_0_1";
"generic-xml" = dontDistribute super."generic-xml";
"generics-eot" = doDistribute super."generics-eot_0_2_1";
+ "generics-sop" = doDistribute super."generics-sop_0_2_1_0";
"generics-sop-lens" = dontDistribute super."generics-sop-lens";
"genericserialize" = dontDistribute super."genericserialize";
"genetics" = dontDistribute super."genetics";
@@ -3284,6 +3311,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3294,6 +3325,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3324,6 +3356,8 @@ self: super: {
"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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1";
+ "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1";
"ghc-vis" = dontDistribute super."ghc-vis";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
@@ -3371,6 +3405,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -3909,6 +3944,7 @@ self: super: {
"haskell-mpi" = dontDistribute super."haskell-mpi";
"haskell-names" = dontDistribute super."haskell-names";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4060,9 +4096,11 @@ self: super: {
"headergen" = dontDistribute super."headergen";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4137,6 +4175,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -4166,6 +4205,7 @@ self: super: {
"himerge" = dontDistribute super."himerge";
"himg" = dontDistribute super."himg";
"himpy" = dontDistribute super."himpy";
+ "hindent" = doDistribute super."hindent_4_6_3";
"hindley-milner" = dontDistribute super."hindley-milner";
"hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
"hinduce-classifier" = dontDistribute super."hinduce-classifier";
@@ -4486,6 +4526,7 @@ self: super: {
"hspec-setup" = doDistribute super."hspec-setup_0_1_1_0";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4529,6 +4570,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = doDistribute super."hsx2hs_0_13_4";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htags" = dontDistribute super."htags";
@@ -4573,6 +4615,7 @@ self: super: {
"http-kinder" = dontDistribute super."http-kinder";
"http-kit" = dontDistribute super."http-kit";
"http-listen" = dontDistribute super."http-listen";
+ "http-media" = doDistribute super."http-media_0_6_3";
"http-monad" = dontDistribute super."http-monad";
"http-proxy" = dontDistribute super."http-proxy";
"http-querystring" = dontDistribute super."http-querystring";
@@ -4752,6 +4795,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_4";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4793,6 +4837,7 @@ self: super: {
"interspersed" = dontDistribute super."interspersed";
"intricacy" = dontDistribute super."intricacy";
"intset" = dontDistribute super."intset";
+ "invariant" = doDistribute super."invariant_0_3_1";
"invertible" = dontDistribute super."invertible";
"invertible-syntax" = dontDistribute super."invertible-syntax";
"io-capture" = dontDistribute super."io-capture";
@@ -4924,6 +4969,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -4962,10 +5008,12 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5202,6 +5250,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_8_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5311,6 +5360,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5346,6 +5396,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5400,6 +5451,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_3";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5419,6 +5471,7 @@ self: super: {
"manatee-terminal" = dontDistribute super."manatee-terminal";
"manatee-welcome" = dontDistribute super."manatee-welcome";
"mancala" = dontDistribute super."mancala";
+ "mandrill" = doDistribute super."mandrill_0_5_2_1";
"mandulia" = dontDistribute super."mandulia";
"manifold-random" = dontDistribute super."manifold-random";
"manifolds" = dontDistribute super."manifolds";
@@ -5456,6 +5509,7 @@ self: super: {
"maybe-justify" = dontDistribute super."maybe-justify";
"maybench" = dontDistribute super."maybench";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5546,6 +5600,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5586,9 +5641,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_18";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5762,6 +5819,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -5788,6 +5846,7 @@ self: super: {
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
"neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2";
"needle" = dontDistribute super."needle";
"neet" = dontDistribute super."neet";
"nehe-tuts" = dontDistribute super."nehe-tuts";
@@ -5800,6 +5859,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -5954,6 +6014,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -6064,6 +6125,7 @@ self: super: {
"pacman-memcache" = dontDistribute super."pacman-memcache";
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palindromes" = dontDistribute super."palindromes";
"pam" = dontDistribute super."pam";
@@ -6172,6 +6234,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6247,6 +6310,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6281,6 +6345,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = doDistribute super."pkcs10_0_1_0_5";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6546,6 +6611,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6560,6 +6629,7 @@ self: super: {
"quick-schema" = dontDistribute super."quick-schema";
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6578,6 +6648,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -6796,6 +6867,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7022,6 +7094,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -7033,6 +7106,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_7_1_0";
@@ -7050,6 +7124,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_1";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_1";
@@ -7127,6 +7202,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7236,6 +7312,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7274,6 +7351,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smsaero" = doDistribute super."smsaero_0_4_1";
"smt-lib" = dontDistribute super."smt-lib";
"smtlib2" = dontDistribute super."smtlib2";
@@ -7358,6 +7436,7 @@ self: super: {
"socketson" = dontDistribute super."socketson";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7443,12 +7522,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"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";
"stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_1";
"stackage-curator" = doDistribute super."stackage-curator_0_13_3";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
"star-to-star" = dontDistribute super."star-to-star";
@@ -7623,6 +7704,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7652,6 +7734,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7686,7 +7769,9 @@ self: super: {
"taglib" = dontDistribute super."taglib";
"taglib-api" = dontDistribute super."taglib-api";
"tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup" = doDistribute super."tagsoup_0_13_10";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7711,6 +7796,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tateti-tateti" = dontDistribute super."tateti-tateti";
"tau" = dontDistribute super."tau";
"tbox" = dontDistribute super."tbox";
@@ -7807,6 +7893,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = doDistribute super."text-zipper_0_3_1";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7841,6 +7928,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_1";
@@ -8240,6 +8328,7 @@ self: super: {
"uuagd" = dontDistribute super."uuagd";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uulib" = dontDistribute super."uulib";
"uvector" = dontDistribute super."uvector";
@@ -8258,6 +8347,7 @@ self: super: {
"validate" = dontDistribute super."validate";
"validated-literals" = dontDistribute super."validated-literals";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8365,6 +8455,7 @@ self: super: {
"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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
"wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
"wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
"wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
@@ -8464,6 +8555,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = doDistribute super."with-location_0_0_0";
"withdependencies" = doDistribute super."withdependencies_0_2_2_1";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.17.nix b/pkgs/development/haskell-modules/configuration-lts-5.17.nix
index 5d26d4a8c6e..621520b85a1 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.17.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.17.nix
@@ -189,6 +189,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -214,6 +215,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -406,6 +408,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -743,6 +746,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -892,6 +896,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1577,6 +1582,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_2_0";
"bindings-K8055" = dontDistribute super."bindings-K8055";
"bindings-apr" = dontDistribute super."bindings-apr";
"bindings-apr-util" = dontDistribute super."bindings-apr-util";
@@ -1683,6 +1689,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = dontDistribute super."bloodhound";
@@ -1731,6 +1738,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_4_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1920,7 +1928,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -1953,6 +1963,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -1995,6 +2006,8 @@ self: super: {
"clash-lib" = doDistribute super."clash-lib_0_6_15";
"clash-prelude" = doDistribute super."clash-prelude_0_10_7";
"clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6";
+ "clash-verilog" = doDistribute super."clash-verilog_0_6_6";
"clash-vhdl" = doDistribute super."clash-vhdl_0_6_11";
"classify" = dontDistribute super."classify";
"classy-parallel" = dontDistribute super."classy-parallel";
@@ -2018,6 +2031,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2210,6 +2224,7 @@ self: super: {
"convertible-ascii" = dontDistribute super."convertible-ascii";
"convertible-text" = dontDistribute super."convertible-text";
"cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_2";
"coordinate" = dontDistribute super."coordinate";
"copilot" = dontDistribute super."copilot";
"copilot-c99" = dontDistribute super."copilot-c99";
@@ -2233,6 +2248,7 @@ self: super: {
"count" = dontDistribute super."count";
"countable" = dontDistribute super."countable";
"counter" = dontDistribute super."counter";
+ "courier" = doDistribute super."courier_0_1_1_2";
"court" = dontDistribute super."court";
"coverage" = dontDistribute super."coverage";
"cpio-conduit" = dontDistribute super."cpio-conduit";
@@ -2308,6 +2324,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = doDistribute super."css-syntax_0_0_4";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2380,6 +2397,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2392,6 +2410,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2441,6 +2460,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2657,6 +2677,7 @@ self: super: {
"distribution" = dontDistribute super."distribution";
"distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs";
"distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = doDistribute super."diversity_0_8_0_0";
"dixi" = doDistribute super."dixi_0_6_0_5";
"djembe" = dontDistribute super."djembe";
"djinn" = dontDistribute super."djinn";
@@ -2853,6 +2874,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -2974,6 +2996,7 @@ self: super: {
"fast-tags" = dontDistribute super."fast-tags";
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
"fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = doDistribute super."fasta_0_10_2_0";
"fastbayes" = dontDistribute super."fastbayes";
"fastcgi" = dontDistribute super."fastcgi";
"fastedit" = dontDistribute super."fastedit";
@@ -3011,6 +3034,8 @@ self: super: {
"ffmpeg-light" = dontDistribute super."ffmpeg-light";
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -3132,6 +3157,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3270,6 +3296,7 @@ self: super: {
"generic-trie" = doDistribute super."generic-trie_0_3_0_1";
"generic-xml" = dontDistribute super."generic-xml";
"generics-eot" = doDistribute super."generics-eot_0_2_1";
+ "generics-sop" = doDistribute super."generics-sop_0_2_1_0";
"generics-sop-lens" = dontDistribute super."generics-sop-lens";
"genericserialize" = dontDistribute super."genericserialize";
"genetics" = dontDistribute super."genetics";
@@ -3281,6 +3308,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3291,6 +3322,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3321,6 +3353,8 @@ self: super: {
"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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1";
+ "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1";
"ghc-vis" = dontDistribute super."ghc-vis";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
@@ -3368,6 +3402,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -3906,6 +3941,7 @@ self: super: {
"haskell-mpi" = dontDistribute super."haskell-mpi";
"haskell-names" = dontDistribute super."haskell-names";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4057,9 +4093,11 @@ self: super: {
"headergen" = dontDistribute super."headergen";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4134,6 +4172,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -4163,6 +4202,7 @@ self: super: {
"himerge" = dontDistribute super."himerge";
"himg" = dontDistribute super."himg";
"himpy" = dontDistribute super."himpy";
+ "hindent" = doDistribute super."hindent_4_6_3";
"hindley-milner" = dontDistribute super."hindley-milner";
"hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
"hinduce-classifier" = dontDistribute super."hinduce-classifier";
@@ -4483,6 +4523,7 @@ self: super: {
"hspec-setup" = doDistribute super."hspec-setup_0_1_1_0";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4526,6 +4567,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = doDistribute super."hsx2hs_0_13_4";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htags" = dontDistribute super."htags";
@@ -4570,6 +4612,7 @@ self: super: {
"http-kinder" = dontDistribute super."http-kinder";
"http-kit" = dontDistribute super."http-kit";
"http-listen" = dontDistribute super."http-listen";
+ "http-media" = doDistribute super."http-media_0_6_3";
"http-monad" = dontDistribute super."http-monad";
"http-proxy" = dontDistribute super."http-proxy";
"http-querystring" = dontDistribute super."http-querystring";
@@ -4749,6 +4792,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_4";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4790,6 +4834,7 @@ self: super: {
"interspersed" = dontDistribute super."interspersed";
"intricacy" = dontDistribute super."intricacy";
"intset" = dontDistribute super."intset";
+ "invariant" = doDistribute super."invariant_0_3_1";
"invertible" = dontDistribute super."invertible";
"invertible-syntax" = dontDistribute super."invertible-syntax";
"io-capture" = dontDistribute super."io-capture";
@@ -4921,6 +4966,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -4959,10 +5005,12 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5199,6 +5247,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_8_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5308,6 +5357,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5343,6 +5393,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5397,6 +5448,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_3";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5416,6 +5468,7 @@ self: super: {
"manatee-terminal" = dontDistribute super."manatee-terminal";
"manatee-welcome" = dontDistribute super."manatee-welcome";
"mancala" = dontDistribute super."mancala";
+ "mandrill" = doDistribute super."mandrill_0_5_2_1";
"mandulia" = dontDistribute super."mandulia";
"manifold-random" = dontDistribute super."manifold-random";
"manifolds" = dontDistribute super."manifolds";
@@ -5437,6 +5490,7 @@ self: super: {
"mastermind" = dontDistribute super."mastermind";
"matcher" = dontDistribute super."matcher";
"matchers" = dontDistribute super."matchers";
+ "math-functions" = doDistribute super."math-functions_0_1_7_0";
"mathblog" = dontDistribute super."mathblog";
"mathgenealogy" = dontDistribute super."mathgenealogy";
"mathista" = dontDistribute super."mathista";
@@ -5452,6 +5506,7 @@ self: super: {
"maybe-justify" = dontDistribute super."maybe-justify";
"maybench" = dontDistribute super."maybench";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5542,6 +5597,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5582,9 +5638,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_18";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5758,6 +5816,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -5784,6 +5843,7 @@ self: super: {
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
"neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2";
"needle" = dontDistribute super."needle";
"neet" = dontDistribute super."neet";
"nehe-tuts" = dontDistribute super."nehe-tuts";
@@ -5796,6 +5856,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -5949,6 +6010,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -6059,6 +6121,7 @@ self: super: {
"pacman-memcache" = dontDistribute super."pacman-memcache";
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palindromes" = dontDistribute super."palindromes";
"pam" = dontDistribute super."pam";
@@ -6166,6 +6229,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6241,6 +6305,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6275,6 +6340,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = doDistribute super."pkcs10_0_1_0_5";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6540,6 +6606,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6554,6 +6624,7 @@ self: super: {
"quick-schema" = dontDistribute super."quick-schema";
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6572,6 +6643,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -6789,6 +6861,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7015,6 +7088,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -7026,6 +7100,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_7_1_0";
@@ -7043,6 +7118,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_1";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_1";
@@ -7120,6 +7196,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7229,6 +7306,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7267,6 +7345,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smsaero" = doDistribute super."smsaero_0_4_1";
"smt-lib" = dontDistribute super."smt-lib";
"smtlib2" = dontDistribute super."smtlib2";
@@ -7351,6 +7430,7 @@ self: super: {
"socketson" = dontDistribute super."socketson";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7436,12 +7516,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"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";
"stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_1";
"stackage-curator" = doDistribute super."stackage-curator_0_13_3";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
"star-to-star" = dontDistribute super."star-to-star";
@@ -7615,6 +7697,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7644,6 +7727,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7678,7 +7762,9 @@ self: super: {
"taglib" = dontDistribute super."taglib";
"taglib-api" = dontDistribute super."taglib-api";
"tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup" = doDistribute super."tagsoup_0_13_10";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7703,6 +7789,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tateti-tateti" = dontDistribute super."tateti-tateti";
"tau" = dontDistribute super."tau";
"tbox" = dontDistribute super."tbox";
@@ -7799,6 +7886,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = doDistribute super."text-zipper_0_3_1";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7833,6 +7921,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_1";
@@ -8230,6 +8319,7 @@ self: super: {
"uuagd" = dontDistribute super."uuagd";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uulib" = dontDistribute super."uulib";
"uvector" = dontDistribute super."uvector";
@@ -8248,6 +8338,7 @@ self: super: {
"validate" = dontDistribute super."validate";
"validated-literals" = dontDistribute super."validated-literals";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8355,6 +8446,7 @@ self: super: {
"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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
"wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
"wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
"wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
@@ -8454,6 +8546,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = doDistribute super."with-location_0_0_0";
"withdependencies" = doDistribute super."withdependencies_0_2_2_1";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.18.nix b/pkgs/development/haskell-modules/configuration-lts-5.18.nix
index edb76237951..84b99562844 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.18.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.18.nix
@@ -189,6 +189,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -214,6 +215,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -406,6 +408,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -742,6 +745,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -891,6 +895,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1576,6 +1581,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_2_0";
"bindings-K8055" = dontDistribute super."bindings-K8055";
"bindings-apr" = dontDistribute super."bindings-apr";
"bindings-apr-util" = dontDistribute super."bindings-apr-util";
@@ -1682,6 +1688,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = dontDistribute super."bloodhound";
@@ -1730,6 +1737,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_4_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1918,7 +1926,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -1951,6 +1961,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -1993,6 +2004,8 @@ self: super: {
"clash-lib" = doDistribute super."clash-lib_0_6_15";
"clash-prelude" = doDistribute super."clash-prelude_0_10_7";
"clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6";
+ "clash-verilog" = doDistribute super."clash-verilog_0_6_6";
"clash-vhdl" = doDistribute super."clash-vhdl_0_6_11";
"classify" = dontDistribute super."classify";
"classy-parallel" = dontDistribute super."classy-parallel";
@@ -2016,6 +2029,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2037,6 +2051,7 @@ self: super: {
"clustertools" = dontDistribute super."clustertools";
"clutterhs" = dontDistribute super."clutterhs";
"cmaes" = dontDistribute super."cmaes";
+ "cmark" = doDistribute super."cmark_0_5_2_1";
"cmath" = dontDistribute super."cmath";
"cmathml3" = dontDistribute super."cmathml3";
"cmd-item" = dontDistribute super."cmd-item";
@@ -2207,6 +2222,7 @@ self: super: {
"convertible-ascii" = dontDistribute super."convertible-ascii";
"convertible-text" = dontDistribute super."convertible-text";
"cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_2";
"coordinate" = dontDistribute super."coordinate";
"copilot" = dontDistribute super."copilot";
"copilot-c99" = dontDistribute super."copilot-c99";
@@ -2230,6 +2246,7 @@ self: super: {
"count" = dontDistribute super."count";
"countable" = dontDistribute super."countable";
"counter" = dontDistribute super."counter";
+ "courier" = doDistribute super."courier_0_1_1_2";
"court" = dontDistribute super."court";
"coverage" = dontDistribute super."coverage";
"cpio-conduit" = dontDistribute super."cpio-conduit";
@@ -2305,6 +2322,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = doDistribute super."css-syntax_0_0_4";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2377,6 +2395,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2389,6 +2408,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2438,6 +2458,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2650,6 +2671,7 @@ self: super: {
"distribution" = dontDistribute super."distribution";
"distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs";
"distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = doDistribute super."diversity_0_8_0_0";
"dixi" = doDistribute super."dixi_0_6_0_5";
"djembe" = dontDistribute super."djembe";
"djinn" = dontDistribute super."djinn";
@@ -2846,6 +2868,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -2966,6 +2989,7 @@ self: super: {
"fast-tags" = dontDistribute super."fast-tags";
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
"fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = doDistribute super."fasta_0_10_2_0";
"fastbayes" = dontDistribute super."fastbayes";
"fastcgi" = dontDistribute super."fastcgi";
"fastedit" = dontDistribute super."fastedit";
@@ -3003,6 +3027,8 @@ self: super: {
"ffmpeg-light" = dontDistribute super."ffmpeg-light";
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -3123,6 +3149,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3261,6 +3288,7 @@ self: super: {
"generic-trie" = doDistribute super."generic-trie_0_3_0_1";
"generic-xml" = dontDistribute super."generic-xml";
"generics-eot" = doDistribute super."generics-eot_0_2_1";
+ "generics-sop" = doDistribute super."generics-sop_0_2_1_0";
"generics-sop-lens" = dontDistribute super."generics-sop-lens";
"genericserialize" = dontDistribute super."genericserialize";
"genetics" = dontDistribute super."genetics";
@@ -3272,6 +3300,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3282,6 +3314,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3312,6 +3345,8 @@ self: super: {
"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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1";
+ "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1";
"ghc-vis" = dontDistribute super."ghc-vis";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
@@ -3359,6 +3394,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -3604,6 +3640,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_1_0";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3896,6 +3933,7 @@ self: super: {
"haskell-mpi" = dontDistribute super."haskell-mpi";
"haskell-names" = dontDistribute super."haskell-names";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4047,9 +4085,11 @@ self: super: {
"headergen" = dontDistribute super."headergen";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4124,6 +4164,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -4152,6 +4193,7 @@ self: super: {
"himerge" = dontDistribute super."himerge";
"himg" = dontDistribute super."himg";
"himpy" = dontDistribute super."himpy";
+ "hindent" = doDistribute super."hindent_4_6_3";
"hindley-milner" = dontDistribute super."hindley-milner";
"hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
"hinduce-classifier" = dontDistribute super."hinduce-classifier";
@@ -4472,6 +4514,7 @@ self: super: {
"hspec-setup" = doDistribute super."hspec-setup_0_1_1_0";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4515,6 +4558,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = doDistribute super."hsx2hs_0_13_4";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htags" = dontDistribute super."htags";
@@ -4559,6 +4603,7 @@ self: super: {
"http-kinder" = dontDistribute super."http-kinder";
"http-kit" = dontDistribute super."http-kit";
"http-listen" = dontDistribute super."http-listen";
+ "http-media" = doDistribute super."http-media_0_6_3";
"http-monad" = dontDistribute super."http-monad";
"http-proxy" = dontDistribute super."http-proxy";
"http-querystring" = dontDistribute super."http-querystring";
@@ -4582,6 +4627,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_1";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4735,6 +4781,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4776,6 +4823,7 @@ self: super: {
"interspersed" = dontDistribute super."interspersed";
"intricacy" = dontDistribute super."intricacy";
"intset" = dontDistribute super."intset";
+ "invariant" = doDistribute super."invariant_0_3_1";
"invertible" = dontDistribute super."invertible";
"invertible-syntax" = dontDistribute super."invertible-syntax";
"io-capture" = dontDistribute super."io-capture";
@@ -4907,6 +4955,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -4945,10 +4994,12 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5185,6 +5236,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_8_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5294,6 +5346,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5329,6 +5382,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5383,6 +5437,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_4";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5402,6 +5457,7 @@ self: super: {
"manatee-terminal" = dontDistribute super."manatee-terminal";
"manatee-welcome" = dontDistribute super."manatee-welcome";
"mancala" = dontDistribute super."mancala";
+ "mandrill" = doDistribute super."mandrill_0_5_2_1";
"mandulia" = dontDistribute super."mandulia";
"manifold-random" = dontDistribute super."manifold-random";
"manifolds" = dontDistribute super."manifolds";
@@ -5423,6 +5479,7 @@ self: super: {
"mastermind" = dontDistribute super."mastermind";
"matcher" = dontDistribute super."matcher";
"matchers" = dontDistribute super."matchers";
+ "math-functions" = doDistribute super."math-functions_0_1_7_0";
"mathblog" = dontDistribute super."mathblog";
"mathgenealogy" = dontDistribute super."mathgenealogy";
"mathista" = dontDistribute super."mathista";
@@ -5438,6 +5495,7 @@ self: super: {
"maybe-justify" = dontDistribute super."maybe-justify";
"maybench" = dontDistribute super."maybench";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5528,6 +5586,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5567,9 +5626,11 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_18";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5741,6 +5802,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -5767,6 +5829,7 @@ self: super: {
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
"neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2";
"needle" = dontDistribute super."needle";
"neet" = dontDistribute super."neet";
"nehe-tuts" = dontDistribute super."nehe-tuts";
@@ -5779,6 +5842,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -5930,6 +5994,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -6040,6 +6105,7 @@ self: super: {
"pacman-memcache" = dontDistribute super."pacman-memcache";
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palindromes" = dontDistribute super."palindromes";
"pam" = dontDistribute super."pam";
@@ -6147,6 +6213,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6222,6 +6289,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6256,6 +6324,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = doDistribute super."pkcs10_0_1_0_5";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6520,6 +6589,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6534,6 +6607,7 @@ self: super: {
"quick-schema" = dontDistribute super."quick-schema";
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6552,6 +6626,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -6769,6 +6844,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -6995,6 +7071,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -7006,6 +7083,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_7_1_0";
@@ -7023,6 +7101,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_1";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_1";
@@ -7100,6 +7179,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7209,6 +7289,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7247,6 +7328,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smsaero" = doDistribute super."smsaero_0_4_1";
"smt-lib" = dontDistribute super."smt-lib";
"smtlib2" = dontDistribute super."smtlib2";
@@ -7331,6 +7413,7 @@ self: super: {
"socketson" = dontDistribute super."socketson";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7416,12 +7499,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"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";
"stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_1";
"stackage-curator" = doDistribute super."stackage-curator_0_13_3";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
"star-to-star" = dontDistribute super."star-to-star";
@@ -7595,6 +7680,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7624,6 +7710,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7658,7 +7745,9 @@ self: super: {
"taglib" = dontDistribute super."taglib";
"taglib-api" = dontDistribute super."taglib-api";
"tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup" = doDistribute super."tagsoup_0_13_10";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7683,6 +7772,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tateti-tateti" = dontDistribute super."tateti-tateti";
"tau" = dontDistribute super."tau";
"tbox" = dontDistribute super."tbox";
@@ -7779,6 +7869,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = doDistribute super."text-zipper_0_3_1";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7812,6 +7903,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_1";
@@ -8209,6 +8301,7 @@ self: super: {
"uuagd" = dontDistribute super."uuagd";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uulib" = dontDistribute super."uulib";
"uvector" = dontDistribute super."uvector";
@@ -8227,6 +8320,7 @@ self: super: {
"validate" = dontDistribute super."validate";
"validated-literals" = dontDistribute super."validated-literals";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8333,6 +8427,7 @@ self: super: {
"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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
"wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
"wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
"wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
@@ -8431,6 +8526,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = doDistribute super."with-location_0_0_0";
"withdependencies" = doDistribute super."withdependencies_0_2_2_1";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix
index e9c764e7f8e..baa3ca60045 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -215,6 +216,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -411,6 +413,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -756,6 +759,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -906,6 +910,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1712,6 +1717,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = dontDistribute super."bloodhound";
@@ -1760,6 +1766,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_4_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1953,7 +1960,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -1987,6 +1996,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2054,6 +2064,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2354,6 +2365,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = doDistribute super."css-syntax_0_0_4";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2427,6 +2439,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2439,6 +2452,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2489,6 +2503,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2709,6 +2724,7 @@ self: super: {
"distribution" = dontDistribute super."distribution";
"distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs";
"distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = doDistribute super."diversity_0_8_0_0";
"dixi" = doDistribute super."dixi_0_6_0_5";
"djembe" = dontDistribute super."djembe";
"djinn" = dontDistribute super."djinn";
@@ -2910,6 +2926,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3036,6 +3053,7 @@ self: super: {
"fast-tags" = dontDistribute super."fast-tags";
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
"fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = doDistribute super."fasta_0_10_2_0";
"fastbayes" = dontDistribute super."fastbayes";
"fastcgi" = dontDistribute super."fastcgi";
"fastedit" = dontDistribute super."fastedit";
@@ -3075,6 +3093,8 @@ self: super: {
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fft" = doDistribute super."fft_0_1_8_2";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -3197,6 +3217,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3350,6 +3371,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3360,6 +3385,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3391,6 +3417,8 @@ self: super: {
"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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1";
+ "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1";
"ghc-vis" = dontDistribute super."ghc-vis";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
@@ -3438,6 +3466,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -3977,6 +4006,7 @@ self: super: {
"haskell-names" = dontDistribute super."haskell-names";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4132,9 +4162,11 @@ self: super: {
"heap" = doDistribute super."heap_1_0_2";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4210,6 +4242,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -4568,6 +4601,7 @@ self: super: {
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-snap" = doDistribute super."hspec-snap_0_4_0_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4611,6 +4645,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = doDistribute super."hsx2hs_0_13_4";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = doDistribute super."htaglib_1_0_1";
@@ -4656,6 +4691,7 @@ self: super: {
"http-kinder" = dontDistribute super."http-kinder";
"http-kit" = dontDistribute super."http-kit";
"http-listen" = dontDistribute super."http-listen";
+ "http-media" = doDistribute super."http-media_0_6_3";
"http-monad" = dontDistribute super."http-monad";
"http-proxy" = dontDistribute super."http-proxy";
"http-querystring" = dontDistribute super."http-querystring";
@@ -4839,6 +4875,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_4";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4880,6 +4917,7 @@ self: super: {
"interspersed" = dontDistribute super."interspersed";
"intricacy" = dontDistribute super."intricacy";
"intset" = dontDistribute super."intset";
+ "invariant" = doDistribute super."invariant_0_3_1";
"invertible" = dontDistribute super."invertible";
"invertible-syntax" = dontDistribute super."invertible-syntax";
"io-capture" = dontDistribute super."io-capture";
@@ -5014,6 +5052,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -5052,11 +5091,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5297,6 +5338,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_8_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5407,6 +5449,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5443,6 +5486,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5501,6 +5545,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_2";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5560,6 +5605,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5655,6 +5701,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5697,9 +5744,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_18";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5875,6 +5924,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -5914,6 +5964,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6071,6 +6122,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -6183,6 +6235,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_4";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6295,6 +6348,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6373,6 +6427,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6407,6 +6462,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = doDistribute super."pkcs10_0_1_0_5";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6678,6 +6734,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6692,6 +6752,7 @@ self: super: {
"quick-schema" = dontDistribute super."quick-schema";
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6710,6 +6771,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -6930,6 +6992,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7160,6 +7223,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -7171,6 +7235,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_7_1_0";
@@ -7188,6 +7253,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_1";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_1";
@@ -7267,6 +7333,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7377,6 +7444,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7415,6 +7483,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = doDistribute super."smsaero_0_4_1";
"smt-lib" = dontDistribute super."smt-lib";
@@ -7505,6 +7574,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7591,12 +7661,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"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";
"stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0";
"stackage-curator" = doDistribute super."stackage-curator_0_13_0";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
"star-to-star" = dontDistribute super."star-to-star";
@@ -7771,6 +7843,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7800,6 +7873,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7837,6 +7911,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_8";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7864,6 +7939,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tasty-th" = doDistribute super."tasty-th_0_1_3";
"tateti-tateti" = dontDistribute super."tateti-tateti";
"tau" = dontDistribute super."tau";
@@ -7963,6 +8039,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = doDistribute super."text-zipper_0_3_1";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7998,6 +8075,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_1";
@@ -8402,6 +8480,7 @@ self: super: {
"uuid" = doDistribute super."uuid_1_3_11";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uuid-types" = doDistribute super."uuid-types_1_0_2";
"uulib" = dontDistribute super."uulib";
@@ -8421,6 +8500,7 @@ self: super: {
"validate" = dontDistribute super."validate";
"validated-literals" = dontDistribute super."validated-literals";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8534,6 +8614,7 @@ self: super: {
"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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
"wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
"wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
"wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
@@ -8637,6 +8718,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = doDistribute super."withdependencies_0_2_2_1";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix
index 80bf104ea44..9e7dc58b02f 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -215,6 +216,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -411,6 +413,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -755,6 +758,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -905,6 +909,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1710,6 +1715,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = dontDistribute super."bloodhound";
@@ -1758,6 +1764,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_4_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1951,7 +1958,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -1985,6 +1994,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2052,6 +2062,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2352,6 +2363,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = doDistribute super."css-syntax_0_0_4";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2425,6 +2437,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2437,6 +2450,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2486,6 +2500,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2705,6 +2720,7 @@ self: super: {
"distribution" = dontDistribute super."distribution";
"distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs";
"distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = doDistribute super."diversity_0_8_0_0";
"dixi" = doDistribute super."dixi_0_6_0_5";
"djembe" = dontDistribute super."djembe";
"djinn" = dontDistribute super."djinn";
@@ -2905,6 +2921,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3029,6 +3046,7 @@ self: super: {
"fast-tags" = dontDistribute super."fast-tags";
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
"fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = doDistribute super."fasta_0_10_2_0";
"fastbayes" = dontDistribute super."fastbayes";
"fastcgi" = dontDistribute super."fastcgi";
"fastedit" = dontDistribute super."fastedit";
@@ -3067,6 +3085,8 @@ self: super: {
"ffmpeg-light" = dontDistribute super."ffmpeg-light";
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -3189,6 +3209,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3329,6 +3350,7 @@ self: super: {
"generic-xml" = dontDistribute super."generic-xml";
"generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4";
"generics-eot" = doDistribute super."generics-eot_0_2_1";
+ "generics-sop" = doDistribute super."generics-sop_0_2_1_0";
"generics-sop-lens" = dontDistribute super."generics-sop-lens";
"genericserialize" = dontDistribute super."genericserialize";
"genetics" = dontDistribute super."genetics";
@@ -3341,6 +3363,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3351,6 +3377,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3382,6 +3409,8 @@ self: super: {
"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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1";
+ "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1";
"ghc-vis" = dontDistribute super."ghc-vis";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
@@ -3429,6 +3458,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -3968,6 +3998,7 @@ self: super: {
"haskell-names" = dontDistribute super."haskell-names";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4123,9 +4154,11 @@ self: super: {
"heap" = doDistribute super."heap_1_0_2";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4201,6 +4234,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -4559,6 +4593,7 @@ self: super: {
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-snap" = doDistribute super."hspec-snap_0_4_0_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4602,6 +4637,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = doDistribute super."hsx2hs_0_13_4";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = doDistribute super."htaglib_1_0_1";
@@ -4647,6 +4683,7 @@ self: super: {
"http-kinder" = dontDistribute super."http-kinder";
"http-kit" = dontDistribute super."http-kit";
"http-listen" = dontDistribute super."http-listen";
+ "http-media" = doDistribute super."http-media_0_6_3";
"http-monad" = dontDistribute super."http-monad";
"http-proxy" = dontDistribute super."http-proxy";
"http-querystring" = dontDistribute super."http-querystring";
@@ -4829,6 +4866,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_4";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4870,6 +4908,7 @@ self: super: {
"interspersed" = dontDistribute super."interspersed";
"intricacy" = dontDistribute super."intricacy";
"intset" = dontDistribute super."intset";
+ "invariant" = doDistribute super."invariant_0_3_1";
"invertible" = dontDistribute super."invertible";
"invertible-syntax" = dontDistribute super."invertible-syntax";
"io-capture" = dontDistribute super."io-capture";
@@ -5004,6 +5043,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -5042,11 +5082,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5287,6 +5329,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_8_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5396,6 +5439,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5432,6 +5476,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5490,6 +5535,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_2";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5549,6 +5595,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5643,6 +5690,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5685,9 +5733,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_18";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5863,6 +5913,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -5902,6 +5953,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6059,6 +6111,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -6171,6 +6224,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_6";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = doDistribute super."palette_0_1_0_2";
"palindromes" = dontDistribute super."palindromes";
@@ -6282,6 +6336,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6360,6 +6415,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6394,6 +6450,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = doDistribute super."pkcs10_0_1_0_5";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6665,6 +6722,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6679,6 +6740,7 @@ self: super: {
"quick-schema" = dontDistribute super."quick-schema";
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6697,6 +6759,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -6915,6 +6978,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7145,6 +7209,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -7156,6 +7221,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_7_1_0";
@@ -7173,6 +7239,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_1";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_1";
@@ -7252,6 +7319,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7362,6 +7430,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7400,6 +7469,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smsaero" = doDistribute super."smsaero_0_4_1";
"smt-lib" = dontDistribute super."smt-lib";
"smtLib" = doDistribute super."smtLib_1_0_7";
@@ -7488,6 +7558,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7574,12 +7645,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"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";
"stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0";
"stackage-curator" = doDistribute super."stackage-curator_0_13_1";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
"star-to-star" = dontDistribute super."star-to-star";
@@ -7754,6 +7827,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7783,6 +7857,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7820,6 +7895,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_8";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7847,6 +7923,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tasty-th" = doDistribute super."tasty-th_0_1_3";
"tateti-tateti" = dontDistribute super."tateti-tateti";
"tau" = dontDistribute super."tau";
@@ -7946,6 +8023,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = doDistribute super."text-zipper_0_3_1";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7981,6 +8059,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_1";
@@ -8385,6 +8464,7 @@ self: super: {
"uuid" = doDistribute super."uuid_1_3_11";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uuid-types" = doDistribute super."uuid-types_1_0_2";
"uulib" = dontDistribute super."uulib";
@@ -8404,6 +8484,7 @@ self: super: {
"validate" = dontDistribute super."validate";
"validated-literals" = dontDistribute super."validated-literals";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8516,6 +8597,7 @@ self: super: {
"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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
"wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
"wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
"wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
@@ -8617,6 +8699,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = doDistribute super."withdependencies_0_2_2_1";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix
index d17565f14a8..9958638e5d8 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -215,6 +216,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -411,6 +413,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -754,6 +757,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -904,6 +908,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1709,6 +1714,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = dontDistribute super."bloodhound";
@@ -1757,6 +1763,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_4_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1950,7 +1957,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -1984,6 +1993,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2051,6 +2061,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2273,6 +2284,7 @@ self: super: {
"count" = dontDistribute super."count";
"countable" = dontDistribute super."countable";
"counter" = dontDistribute super."counter";
+ "courier" = doDistribute super."courier_0_1_1_2";
"court" = dontDistribute super."court";
"coverage" = dontDistribute super."coverage";
"cpio-conduit" = dontDistribute super."cpio-conduit";
@@ -2349,6 +2361,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = doDistribute super."css-syntax_0_0_4";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2422,6 +2435,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2434,6 +2448,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2483,6 +2498,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2700,6 +2716,7 @@ self: super: {
"distribution" = dontDistribute super."distribution";
"distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs";
"distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = doDistribute super."diversity_0_8_0_0";
"dixi" = doDistribute super."dixi_0_6_0_5";
"djembe" = dontDistribute super."djembe";
"djinn" = dontDistribute super."djinn";
@@ -2899,6 +2916,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3023,6 +3041,7 @@ self: super: {
"fast-tags" = dontDistribute super."fast-tags";
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
"fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = doDistribute super."fasta_0_10_2_0";
"fastbayes" = dontDistribute super."fastbayes";
"fastcgi" = dontDistribute super."fastcgi";
"fastedit" = dontDistribute super."fastedit";
@@ -3060,6 +3079,8 @@ self: super: {
"ffmpeg-light" = dontDistribute super."ffmpeg-light";
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -3182,6 +3203,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3322,6 +3344,7 @@ self: super: {
"generic-xml" = dontDistribute super."generic-xml";
"generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4";
"generics-eot" = doDistribute super."generics-eot_0_2_1";
+ "generics-sop" = doDistribute super."generics-sop_0_2_1_0";
"generics-sop-lens" = dontDistribute super."generics-sop-lens";
"genericserialize" = dontDistribute super."genericserialize";
"genetics" = dontDistribute super."genetics";
@@ -3334,6 +3357,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3344,6 +3371,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3374,6 +3402,8 @@ self: super: {
"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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1";
+ "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1";
"ghc-vis" = dontDistribute super."ghc-vis";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
@@ -3421,6 +3451,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -3960,6 +3991,7 @@ self: super: {
"haskell-names" = dontDistribute super."haskell-names";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4115,9 +4147,11 @@ self: super: {
"heap" = doDistribute super."heap_1_0_2";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4193,6 +4227,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -4551,6 +4586,7 @@ self: super: {
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-snap" = doDistribute super."hspec-snap_0_4_0_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4594,6 +4630,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = doDistribute super."hsx2hs_0_13_4";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = doDistribute super."htaglib_1_0_1";
@@ -4639,6 +4676,7 @@ self: super: {
"http-kinder" = dontDistribute super."http-kinder";
"http-kit" = dontDistribute super."http-kit";
"http-listen" = dontDistribute super."http-listen";
+ "http-media" = doDistribute super."http-media_0_6_3";
"http-monad" = dontDistribute super."http-monad";
"http-proxy" = dontDistribute super."http-proxy";
"http-querystring" = dontDistribute super."http-querystring";
@@ -4821,6 +4859,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_4";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4862,6 +4901,7 @@ self: super: {
"interspersed" = dontDistribute super."interspersed";
"intricacy" = dontDistribute super."intricacy";
"intset" = dontDistribute super."intset";
+ "invariant" = doDistribute super."invariant_0_3_1";
"invertible" = dontDistribute super."invertible";
"invertible-syntax" = dontDistribute super."invertible-syntax";
"io-capture" = dontDistribute super."io-capture";
@@ -4996,6 +5036,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -5034,11 +5075,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5279,6 +5322,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_8_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5388,6 +5432,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5423,6 +5468,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5481,6 +5527,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_2";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5540,6 +5587,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5634,6 +5682,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5676,9 +5725,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_18";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5853,6 +5904,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -5892,6 +5944,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6048,6 +6101,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -6160,6 +6214,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_6";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palindromes" = dontDistribute super."palindromes";
"pam" = dontDistribute super."pam";
@@ -6270,6 +6325,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6347,6 +6403,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6381,6 +6438,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = doDistribute super."pkcs10_0_1_0_5";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6652,6 +6710,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6666,6 +6728,7 @@ self: super: {
"quick-schema" = dontDistribute super."quick-schema";
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6684,6 +6747,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -6902,6 +6966,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7132,6 +7197,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -7143,6 +7209,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_7_1_0";
@@ -7160,6 +7227,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_1";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_1";
@@ -7239,6 +7307,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7349,6 +7418,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7387,6 +7457,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smsaero" = doDistribute super."smsaero_0_4_1";
"smt-lib" = dontDistribute super."smt-lib";
"smtLib" = doDistribute super."smtLib_1_0_7";
@@ -7475,6 +7546,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7561,12 +7633,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"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";
"stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0";
"stackage-curator" = doDistribute super."stackage-curator_0_13_1";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
"star-to-star" = dontDistribute super."star-to-star";
@@ -7741,6 +7815,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7770,6 +7845,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7807,6 +7883,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_8";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7834,6 +7911,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tateti-tateti" = dontDistribute super."tateti-tateti";
"tau" = dontDistribute super."tau";
"tbox" = dontDistribute super."tbox";
@@ -7932,6 +8010,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = doDistribute super."text-zipper_0_3_1";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7967,6 +8046,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_1";
@@ -8371,6 +8451,7 @@ self: super: {
"uuid" = doDistribute super."uuid_1_3_11";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uuid-types" = doDistribute super."uuid-types_1_0_2";
"uulib" = dontDistribute super."uulib";
@@ -8390,6 +8471,7 @@ self: super: {
"validate" = dontDistribute super."validate";
"validated-literals" = dontDistribute super."validated-literals";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8502,6 +8584,7 @@ self: super: {
"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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
"wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
"wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
"wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
@@ -8603,6 +8686,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = doDistribute super."withdependencies_0_2_2_1";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix
index 1e2bdb39d05..fa0a0ca22b0 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -215,6 +216,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -411,6 +413,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -754,6 +757,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -904,6 +908,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1709,6 +1714,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = dontDistribute super."bloodhound";
@@ -1757,6 +1763,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_4_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1949,7 +1956,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -1983,6 +1992,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2050,6 +2060,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2272,6 +2283,7 @@ self: super: {
"count" = dontDistribute super."count";
"countable" = dontDistribute super."countable";
"counter" = dontDistribute super."counter";
+ "courier" = doDistribute super."courier_0_1_1_2";
"court" = dontDistribute super."court";
"coverage" = dontDistribute super."coverage";
"cpio-conduit" = dontDistribute super."cpio-conduit";
@@ -2348,6 +2360,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = doDistribute super."css-syntax_0_0_4";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2421,6 +2434,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2433,6 +2447,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2482,6 +2497,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2699,6 +2715,7 @@ self: super: {
"distribution" = dontDistribute super."distribution";
"distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs";
"distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = doDistribute super."diversity_0_8_0_0";
"dixi" = doDistribute super."dixi_0_6_0_5";
"djembe" = dontDistribute super."djembe";
"djinn" = dontDistribute super."djinn";
@@ -2898,6 +2915,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3022,6 +3040,7 @@ self: super: {
"fast-tags" = dontDistribute super."fast-tags";
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
"fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = doDistribute super."fasta_0_10_2_0";
"fastbayes" = dontDistribute super."fastbayes";
"fastcgi" = dontDistribute super."fastcgi";
"fastedit" = dontDistribute super."fastedit";
@@ -3059,6 +3078,8 @@ self: super: {
"ffmpeg-light" = dontDistribute super."ffmpeg-light";
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -3181,6 +3202,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3321,6 +3343,7 @@ self: super: {
"generic-xml" = dontDistribute super."generic-xml";
"generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4";
"generics-eot" = doDistribute super."generics-eot_0_2_1";
+ "generics-sop" = doDistribute super."generics-sop_0_2_1_0";
"generics-sop-lens" = dontDistribute super."generics-sop-lens";
"genericserialize" = dontDistribute super."genericserialize";
"genetics" = dontDistribute super."genetics";
@@ -3333,6 +3356,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3343,6 +3370,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3373,6 +3401,8 @@ self: super: {
"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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1";
+ "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1";
"ghc-vis" = dontDistribute super."ghc-vis";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
@@ -3420,6 +3450,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -3959,6 +3990,7 @@ self: super: {
"haskell-names" = dontDistribute super."haskell-names";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4114,9 +4146,11 @@ self: super: {
"heap" = doDistribute super."heap_1_0_2";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4192,6 +4226,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -4549,6 +4584,7 @@ self: super: {
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-snap" = doDistribute super."hspec-snap_0_4_0_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4592,6 +4628,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = doDistribute super."hsx2hs_0_13_4";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = doDistribute super."htaglib_1_0_1";
@@ -4637,6 +4674,7 @@ self: super: {
"http-kinder" = dontDistribute super."http-kinder";
"http-kit" = dontDistribute super."http-kit";
"http-listen" = dontDistribute super."http-listen";
+ "http-media" = doDistribute super."http-media_0_6_3";
"http-monad" = dontDistribute super."http-monad";
"http-proxy" = dontDistribute super."http-proxy";
"http-querystring" = dontDistribute super."http-querystring";
@@ -4819,6 +4857,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_4";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4860,6 +4899,7 @@ self: super: {
"interspersed" = dontDistribute super."interspersed";
"intricacy" = dontDistribute super."intricacy";
"intset" = dontDistribute super."intset";
+ "invariant" = doDistribute super."invariant_0_3_1";
"invertible" = dontDistribute super."invertible";
"invertible-syntax" = dontDistribute super."invertible-syntax";
"io-capture" = dontDistribute super."io-capture";
@@ -4994,6 +5034,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -5032,11 +5073,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5277,6 +5320,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_8_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5386,6 +5430,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5421,6 +5466,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5479,6 +5525,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_2";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5538,6 +5585,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5632,6 +5680,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5674,9 +5723,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_18";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5851,6 +5902,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -5890,6 +5942,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6046,6 +6099,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -6158,6 +6212,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_6";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palindromes" = dontDistribute super."palindromes";
"pam" = dontDistribute super."pam";
@@ -6268,6 +6323,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6345,6 +6401,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6379,6 +6436,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = doDistribute super."pkcs10_0_1_0_5";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6650,6 +6708,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6664,6 +6726,7 @@ self: super: {
"quick-schema" = dontDistribute super."quick-schema";
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6682,6 +6745,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -6900,6 +6964,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7130,6 +7195,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -7141,6 +7207,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_7_1_0";
@@ -7158,6 +7225,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_1";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_1";
@@ -7237,6 +7305,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7347,6 +7416,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7385,6 +7455,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smsaero" = doDistribute super."smsaero_0_4_1";
"smt-lib" = dontDistribute super."smt-lib";
"smtLib" = doDistribute super."smtLib_1_0_7";
@@ -7473,6 +7544,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7559,12 +7631,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"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";
"stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0";
"stackage-curator" = doDistribute super."stackage-curator_0_13_1";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
"star-to-star" = dontDistribute super."star-to-star";
@@ -7739,6 +7813,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7768,6 +7843,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7805,6 +7881,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_8";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7832,6 +7909,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tateti-tateti" = dontDistribute super."tateti-tateti";
"tau" = dontDistribute super."tau";
"tbox" = dontDistribute super."tbox";
@@ -7930,6 +8008,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = doDistribute super."text-zipper_0_3_1";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7965,6 +8044,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_1";
@@ -8369,6 +8449,7 @@ self: super: {
"uuid" = doDistribute super."uuid_1_3_11";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uuid-types" = doDistribute super."uuid-types_1_0_2";
"uulib" = dontDistribute super."uulib";
@@ -8388,6 +8469,7 @@ self: super: {
"validate" = dontDistribute super."validate";
"validated-literals" = dontDistribute super."validated-literals";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8499,6 +8581,7 @@ self: super: {
"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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
"wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
"wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
"wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
@@ -8600,6 +8683,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = doDistribute super."withdependencies_0_2_2_1";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix
index 5b23bea6a10..fbb74743fdc 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -215,6 +216,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -410,6 +412,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -753,6 +756,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -903,6 +907,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1708,6 +1713,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = dontDistribute super."bloodhound";
@@ -1756,6 +1762,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_4_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1948,7 +1955,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -1982,6 +1991,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2049,6 +2059,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2271,6 +2282,7 @@ self: super: {
"count" = dontDistribute super."count";
"countable" = dontDistribute super."countable";
"counter" = dontDistribute super."counter";
+ "courier" = doDistribute super."courier_0_1_1_2";
"court" = dontDistribute super."court";
"coverage" = dontDistribute super."coverage";
"cpio-conduit" = dontDistribute super."cpio-conduit";
@@ -2346,6 +2358,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = doDistribute super."css-syntax_0_0_4";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2419,6 +2432,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2431,6 +2445,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2480,6 +2495,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2697,6 +2713,7 @@ self: super: {
"distribution" = dontDistribute super."distribution";
"distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs";
"distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = doDistribute super."diversity_0_8_0_0";
"dixi" = doDistribute super."dixi_0_6_0_5";
"djembe" = dontDistribute super."djembe";
"djinn" = dontDistribute super."djinn";
@@ -2896,6 +2913,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3020,6 +3038,7 @@ self: super: {
"fast-tags" = dontDistribute super."fast-tags";
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
"fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = doDistribute super."fasta_0_10_2_0";
"fastbayes" = dontDistribute super."fastbayes";
"fastcgi" = dontDistribute super."fastcgi";
"fastedit" = dontDistribute super."fastedit";
@@ -3057,6 +3076,8 @@ self: super: {
"ffmpeg-light" = dontDistribute super."ffmpeg-light";
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -3179,6 +3200,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3317,6 +3339,7 @@ self: super: {
"generic-trie" = doDistribute super."generic-trie_0_3_0_1";
"generic-xml" = dontDistribute super."generic-xml";
"generics-eot" = doDistribute super."generics-eot_0_2_1";
+ "generics-sop" = doDistribute super."generics-sop_0_2_1_0";
"generics-sop-lens" = dontDistribute super."generics-sop-lens";
"genericserialize" = dontDistribute super."genericserialize";
"genetics" = dontDistribute super."genetics";
@@ -3329,6 +3352,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3339,6 +3366,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3369,6 +3397,8 @@ self: super: {
"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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1";
+ "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1";
"ghc-vis" = dontDistribute super."ghc-vis";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
@@ -3416,6 +3446,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -3955,6 +3986,7 @@ self: super: {
"haskell-names" = dontDistribute super."haskell-names";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4109,9 +4141,11 @@ self: super: {
"headergen" = dontDistribute super."headergen";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4187,6 +4221,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -4544,6 +4579,7 @@ self: super: {
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-snap" = doDistribute super."hspec-snap_0_4_0_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4587,6 +4623,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = doDistribute super."hsx2hs_0_13_4";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = doDistribute super."htaglib_1_0_2";
@@ -4632,6 +4669,7 @@ self: super: {
"http-kinder" = dontDistribute super."http-kinder";
"http-kit" = dontDistribute super."http-kit";
"http-listen" = dontDistribute super."http-listen";
+ "http-media" = doDistribute super."http-media_0_6_3";
"http-monad" = dontDistribute super."http-monad";
"http-proxy" = dontDistribute super."http-proxy";
"http-querystring" = dontDistribute super."http-querystring";
@@ -4814,6 +4852,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_4";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4855,6 +4894,7 @@ self: super: {
"interspersed" = dontDistribute super."interspersed";
"intricacy" = dontDistribute super."intricacy";
"intset" = dontDistribute super."intset";
+ "invariant" = doDistribute super."invariant_0_3_1";
"invertible" = dontDistribute super."invertible";
"invertible-syntax" = dontDistribute super."invertible-syntax";
"io-capture" = dontDistribute super."io-capture";
@@ -4989,6 +5029,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -5027,11 +5068,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5271,6 +5314,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_8_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5380,6 +5424,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5415,6 +5460,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5472,6 +5518,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_2";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5531,6 +5578,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5625,6 +5673,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5667,9 +5716,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_18";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5844,6 +5895,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -5870,6 +5922,7 @@ self: super: {
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
"neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2";
"needle" = dontDistribute super."needle";
"neet" = dontDistribute super."neet";
"nehe-tuts" = dontDistribute super."nehe-tuts";
@@ -5882,6 +5935,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6038,6 +6092,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -6150,6 +6205,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_6";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palindromes" = dontDistribute super."palindromes";
"pam" = dontDistribute super."pam";
@@ -6260,6 +6316,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6336,6 +6393,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6370,6 +6428,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = doDistribute super."pkcs10_0_1_0_5";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6641,6 +6700,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6655,6 +6718,7 @@ self: super: {
"quick-schema" = dontDistribute super."quick-schema";
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6673,6 +6737,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -6891,6 +6956,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7121,6 +7187,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -7132,6 +7199,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_7_1_0";
@@ -7149,6 +7217,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_1";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_1";
@@ -7228,6 +7297,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7338,6 +7408,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7376,6 +7447,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smsaero" = doDistribute super."smsaero_0_4_1";
"smt-lib" = dontDistribute super."smt-lib";
"smtLib" = doDistribute super."smtLib_1_0_7";
@@ -7464,6 +7536,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7550,12 +7623,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"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";
"stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0";
"stackage-curator" = doDistribute super."stackage-curator_0_13_1";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
"star-to-star" = dontDistribute super."star-to-star";
@@ -7730,6 +7805,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7759,6 +7835,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7796,6 +7873,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_8";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7823,6 +7901,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tateti-tateti" = dontDistribute super."tateti-tateti";
"tau" = dontDistribute super."tau";
"tbox" = dontDistribute super."tbox";
@@ -7921,6 +8000,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = doDistribute super."text-zipper_0_3_1";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7956,6 +8036,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_1";
@@ -8359,6 +8440,7 @@ self: super: {
"uuid" = doDistribute super."uuid_1_3_11";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uuid-types" = doDistribute super."uuid-types_1_0_2";
"uulib" = dontDistribute super."uulib";
@@ -8378,6 +8460,7 @@ self: super: {
"validate" = dontDistribute super."validate";
"validated-literals" = dontDistribute super."validated-literals";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8489,6 +8572,7 @@ self: super: {
"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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
"wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
"wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
"wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
@@ -8589,6 +8673,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = doDistribute super."withdependencies_0_2_2_1";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix
index 77883246470..72b0fd87324 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -215,6 +216,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -410,6 +412,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -753,6 +756,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -903,6 +907,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1708,6 +1713,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = dontDistribute super."bloodhound";
@@ -1756,6 +1762,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_4_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1947,7 +1954,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -1981,6 +1990,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2023,6 +2033,8 @@ self: super: {
"clash-lib" = doDistribute super."clash-lib_0_6_11";
"clash-prelude" = doDistribute super."clash-prelude_0_10_6";
"clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6";
+ "clash-verilog" = doDistribute super."clash-verilog_0_6_6";
"clash-vhdl" = doDistribute super."clash-vhdl_0_6_8";
"classify" = dontDistribute super."classify";
"classy-parallel" = dontDistribute super."classy-parallel";
@@ -2046,6 +2058,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2268,6 +2281,7 @@ self: super: {
"count" = dontDistribute super."count";
"countable" = dontDistribute super."countable";
"counter" = dontDistribute super."counter";
+ "courier" = doDistribute super."courier_0_1_1_2";
"court" = dontDistribute super."court";
"coverage" = dontDistribute super."coverage";
"cpio-conduit" = dontDistribute super."cpio-conduit";
@@ -2343,6 +2357,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = doDistribute super."css-syntax_0_0_4";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2416,6 +2431,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2428,6 +2444,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2477,6 +2494,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2694,6 +2712,7 @@ self: super: {
"distribution" = dontDistribute super."distribution";
"distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs";
"distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = doDistribute super."diversity_0_8_0_0";
"dixi" = doDistribute super."dixi_0_6_0_5";
"djembe" = dontDistribute super."djembe";
"djinn" = dontDistribute super."djinn";
@@ -2893,6 +2912,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3017,6 +3037,7 @@ self: super: {
"fast-tags" = dontDistribute super."fast-tags";
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
"fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = doDistribute super."fasta_0_10_2_0";
"fastbayes" = dontDistribute super."fastbayes";
"fastcgi" = dontDistribute super."fastcgi";
"fastedit" = dontDistribute super."fastedit";
@@ -3054,6 +3075,8 @@ self: super: {
"ffmpeg-light" = dontDistribute super."ffmpeg-light";
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -3176,6 +3199,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3314,6 +3338,7 @@ self: super: {
"generic-trie" = doDistribute super."generic-trie_0_3_0_1";
"generic-xml" = dontDistribute super."generic-xml";
"generics-eot" = doDistribute super."generics-eot_0_2_1";
+ "generics-sop" = doDistribute super."generics-sop_0_2_1_0";
"generics-sop-lens" = dontDistribute super."generics-sop-lens";
"genericserialize" = dontDistribute super."genericserialize";
"genetics" = dontDistribute super."genetics";
@@ -3326,6 +3351,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3336,6 +3365,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3366,6 +3396,8 @@ self: super: {
"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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1";
+ "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1";
"ghc-vis" = dontDistribute super."ghc-vis";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
@@ -3413,6 +3445,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -3952,6 +3985,7 @@ self: super: {
"haskell-names" = dontDistribute super."haskell-names";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4106,9 +4140,11 @@ self: super: {
"headergen" = dontDistribute super."headergen";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4184,6 +4220,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -4540,6 +4577,7 @@ self: super: {
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-snap" = doDistribute super."hspec-snap_0_4_0_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4583,6 +4621,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = doDistribute super."hsx2hs_0_13_4";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = doDistribute super."htaglib_1_0_2";
@@ -4628,6 +4667,7 @@ self: super: {
"http-kinder" = dontDistribute super."http-kinder";
"http-kit" = dontDistribute super."http-kit";
"http-listen" = dontDistribute super."http-listen";
+ "http-media" = doDistribute super."http-media_0_6_3";
"http-monad" = dontDistribute super."http-monad";
"http-proxy" = dontDistribute super."http-proxy";
"http-querystring" = dontDistribute super."http-querystring";
@@ -4810,6 +4850,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_4";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4851,6 +4892,7 @@ self: super: {
"interspersed" = dontDistribute super."interspersed";
"intricacy" = dontDistribute super."intricacy";
"intset" = dontDistribute super."intset";
+ "invariant" = doDistribute super."invariant_0_3_1";
"invertible" = dontDistribute super."invertible";
"invertible-syntax" = dontDistribute super."invertible-syntax";
"io-capture" = dontDistribute super."io-capture";
@@ -4985,6 +5027,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -5023,11 +5066,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5267,6 +5312,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_8_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5376,6 +5422,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5411,6 +5458,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5468,6 +5516,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_2";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5527,6 +5576,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5620,6 +5670,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5662,9 +5713,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_18";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5839,6 +5892,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -5865,6 +5919,7 @@ self: super: {
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
"neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2";
"needle" = dontDistribute super."needle";
"neet" = dontDistribute super."neet";
"nehe-tuts" = dontDistribute super."nehe-tuts";
@@ -5877,6 +5932,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6033,6 +6089,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -6145,6 +6202,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_6";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palindromes" = dontDistribute super."palindromes";
"pam" = dontDistribute super."pam";
@@ -6255,6 +6313,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6331,6 +6390,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6365,6 +6425,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = doDistribute super."pkcs10_0_1_0_5";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6636,6 +6697,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6650,6 +6715,7 @@ self: super: {
"quick-schema" = dontDistribute super."quick-schema";
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6668,6 +6734,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -6886,6 +6953,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7116,6 +7184,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -7127,6 +7196,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_7_1_0";
@@ -7144,6 +7214,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_1";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_1";
@@ -7223,6 +7294,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7333,6 +7405,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7371,6 +7444,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smsaero" = doDistribute super."smsaero_0_4_1";
"smt-lib" = dontDistribute super."smt-lib";
"smtLib" = doDistribute super."smtLib_1_0_7";
@@ -7459,6 +7533,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7545,12 +7620,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"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";
"stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0";
"stackage-curator" = doDistribute super."stackage-curator_0_13_1";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
"star-to-star" = dontDistribute super."star-to-star";
@@ -7725,6 +7802,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7754,6 +7832,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7791,6 +7870,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_8";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7818,6 +7898,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tateti-tateti" = dontDistribute super."tateti-tateti";
"tau" = dontDistribute super."tau";
"tbox" = dontDistribute super."tbox";
@@ -7916,6 +7997,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = doDistribute super."text-zipper_0_3_1";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7951,6 +8033,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_1";
@@ -8353,6 +8436,7 @@ self: super: {
"uuid" = doDistribute super."uuid_1_3_11";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uuid-types" = doDistribute super."uuid-types_1_0_2";
"uulib" = dontDistribute super."uulib";
@@ -8372,6 +8456,7 @@ self: super: {
"validate" = dontDistribute super."validate";
"validated-literals" = dontDistribute super."validated-literals";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8483,6 +8568,7 @@ self: super: {
"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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
"wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
"wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
"wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
@@ -8583,6 +8669,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = dontDistribute super."with-location";
"withdependencies" = doDistribute super."withdependencies_0_2_2_1";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix
index a5a4a2e7bed..e4242c69618 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -215,6 +216,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -410,6 +412,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -753,6 +756,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -903,6 +907,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1708,6 +1713,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = dontDistribute super."bloodhound";
@@ -1756,6 +1762,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_4_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1947,7 +1954,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -1981,6 +1990,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2023,6 +2033,8 @@ self: super: {
"clash-lib" = doDistribute super."clash-lib_0_6_11";
"clash-prelude" = doDistribute super."clash-prelude_0_10_6";
"clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6";
+ "clash-verilog" = doDistribute super."clash-verilog_0_6_6";
"clash-vhdl" = doDistribute super."clash-vhdl_0_6_8";
"classify" = dontDistribute super."classify";
"classy-parallel" = dontDistribute super."classy-parallel";
@@ -2046,6 +2058,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2268,6 +2281,7 @@ self: super: {
"count" = dontDistribute super."count";
"countable" = dontDistribute super."countable";
"counter" = dontDistribute super."counter";
+ "courier" = doDistribute super."courier_0_1_1_2";
"court" = dontDistribute super."court";
"coverage" = dontDistribute super."coverage";
"cpio-conduit" = dontDistribute super."cpio-conduit";
@@ -2343,6 +2357,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = doDistribute super."css-syntax_0_0_4";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2416,6 +2431,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2428,6 +2444,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2477,6 +2494,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2694,6 +2712,7 @@ self: super: {
"distribution" = dontDistribute super."distribution";
"distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs";
"distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = doDistribute super."diversity_0_8_0_0";
"dixi" = doDistribute super."dixi_0_6_0_5";
"djembe" = dontDistribute super."djembe";
"djinn" = dontDistribute super."djinn";
@@ -2893,6 +2912,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3017,6 +3037,7 @@ self: super: {
"fast-tags" = dontDistribute super."fast-tags";
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
"fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = doDistribute super."fasta_0_10_2_0";
"fastbayes" = dontDistribute super."fastbayes";
"fastcgi" = dontDistribute super."fastcgi";
"fastedit" = dontDistribute super."fastedit";
@@ -3054,6 +3075,8 @@ self: super: {
"ffmpeg-light" = dontDistribute super."ffmpeg-light";
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -3176,6 +3199,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3314,6 +3338,7 @@ self: super: {
"generic-trie" = doDistribute super."generic-trie_0_3_0_1";
"generic-xml" = dontDistribute super."generic-xml";
"generics-eot" = doDistribute super."generics-eot_0_2_1";
+ "generics-sop" = doDistribute super."generics-sop_0_2_1_0";
"generics-sop-lens" = dontDistribute super."generics-sop-lens";
"genericserialize" = dontDistribute super."genericserialize";
"genetics" = dontDistribute super."genetics";
@@ -3326,6 +3351,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3336,6 +3365,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3366,6 +3396,8 @@ self: super: {
"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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1";
+ "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1";
"ghc-vis" = dontDistribute super."ghc-vis";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
@@ -3413,6 +3445,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -3952,6 +3985,7 @@ self: super: {
"haskell-names" = dontDistribute super."haskell-names";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4106,9 +4140,11 @@ self: super: {
"headergen" = dontDistribute super."headergen";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4184,6 +4220,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -4540,6 +4577,7 @@ self: super: {
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-snap" = doDistribute super."hspec-snap_0_4_0_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4583,6 +4621,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = doDistribute super."hsx2hs_0_13_4";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = doDistribute super."htaglib_1_0_2";
@@ -4628,6 +4667,7 @@ self: super: {
"http-kinder" = dontDistribute super."http-kinder";
"http-kit" = dontDistribute super."http-kit";
"http-listen" = dontDistribute super."http-listen";
+ "http-media" = doDistribute super."http-media_0_6_3";
"http-monad" = dontDistribute super."http-monad";
"http-proxy" = dontDistribute super."http-proxy";
"http-querystring" = dontDistribute super."http-querystring";
@@ -4810,6 +4850,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_4";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4851,6 +4892,7 @@ self: super: {
"interspersed" = dontDistribute super."interspersed";
"intricacy" = dontDistribute super."intricacy";
"intset" = dontDistribute super."intset";
+ "invariant" = doDistribute super."invariant_0_3_1";
"invertible" = dontDistribute super."invertible";
"invertible-syntax" = dontDistribute super."invertible-syntax";
"io-capture" = dontDistribute super."io-capture";
@@ -4985,6 +5027,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -5023,11 +5066,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5267,6 +5312,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_8_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5376,6 +5422,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5411,6 +5458,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5468,6 +5516,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_2";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5527,6 +5576,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5620,6 +5670,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5662,9 +5713,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_18";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5839,6 +5892,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -5865,6 +5919,7 @@ self: super: {
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
"neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2";
"needle" = dontDistribute super."needle";
"neet" = dontDistribute super."neet";
"nehe-tuts" = dontDistribute super."nehe-tuts";
@@ -5877,6 +5932,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6033,6 +6089,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -6145,6 +6202,7 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pagerduty" = doDistribute super."pagerduty_0_0_6";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palindromes" = dontDistribute super."palindromes";
"pam" = dontDistribute super."pam";
@@ -6255,6 +6313,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6331,6 +6390,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6365,6 +6425,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = doDistribute super."pkcs10_0_1_0_5";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6636,6 +6697,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6650,6 +6715,7 @@ self: super: {
"quick-schema" = dontDistribute super."quick-schema";
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6668,6 +6734,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -6886,6 +6953,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7116,6 +7184,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -7127,6 +7196,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_7_1_0";
@@ -7144,6 +7214,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_1";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_1";
@@ -7223,6 +7294,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7333,6 +7405,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7371,6 +7444,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smsaero" = doDistribute super."smsaero_0_4_1";
"smt-lib" = dontDistribute super."smt-lib";
"smtLib" = doDistribute super."smtLib_1_0_7";
@@ -7459,6 +7533,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7545,12 +7620,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"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";
"stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0";
"stackage-curator" = doDistribute super."stackage-curator_0_13_1";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
"star-to-star" = dontDistribute super."star-to-star";
@@ -7725,6 +7802,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7754,6 +7832,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7791,6 +7870,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_8";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7818,6 +7898,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tateti-tateti" = dontDistribute super."tateti-tateti";
"tau" = dontDistribute super."tau";
"tbox" = dontDistribute super."tbox";
@@ -7916,6 +7997,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = doDistribute super."text-zipper_0_3_1";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7951,6 +8033,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_1";
@@ -8353,6 +8436,7 @@ self: super: {
"uuid" = doDistribute super."uuid_1_3_11";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uuid-types" = doDistribute super."uuid-types_1_0_2";
"uulib" = dontDistribute super."uulib";
@@ -8372,6 +8456,7 @@ self: super: {
"validate" = dontDistribute super."validate";
"validated-literals" = dontDistribute super."validated-literals";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8483,6 +8568,7 @@ self: super: {
"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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
"wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
"wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
"wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
@@ -8582,6 +8668,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = doDistribute super."with-location_0_0_0";
"withdependencies" = doDistribute super."withdependencies_0_2_2_1";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.9.nix b/pkgs/development/haskell-modules/configuration-lts-5.9.nix
index 2e2c7266d00..51215a0b36b 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.9.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.9.nix
@@ -190,6 +190,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -215,6 +216,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -410,6 +412,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -753,6 +756,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -903,6 +907,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1707,6 +1712,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = dontDistribute super."bloodhound";
@@ -1755,6 +1761,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_4_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1945,7 +1952,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -1979,6 +1988,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -2021,6 +2031,8 @@ self: super: {
"clash-lib" = doDistribute super."clash-lib_0_6_14";
"clash-prelude" = doDistribute super."clash-prelude_0_10_6";
"clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6";
+ "clash-verilog" = doDistribute super."clash-verilog_0_6_6";
"clash-vhdl" = doDistribute super."clash-vhdl_0_6_10";
"classify" = dontDistribute super."classify";
"classy-parallel" = dontDistribute super."classy-parallel";
@@ -2044,6 +2056,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2266,6 +2279,7 @@ self: super: {
"count" = dontDistribute super."count";
"countable" = dontDistribute super."countable";
"counter" = dontDistribute super."counter";
+ "courier" = doDistribute super."courier_0_1_1_2";
"court" = dontDistribute super."court";
"coverage" = dontDistribute super."coverage";
"cpio-conduit" = dontDistribute super."cpio-conduit";
@@ -2341,6 +2355,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = doDistribute super."css-syntax_0_0_4";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2414,6 +2429,7 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
@@ -2426,6 +2442,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2475,6 +2492,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2691,6 +2709,7 @@ self: super: {
"distribution" = dontDistribute super."distribution";
"distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs";
"distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = doDistribute super."diversity_0_8_0_0";
"dixi" = doDistribute super."dixi_0_6_0_5";
"djembe" = dontDistribute super."djembe";
"djinn" = dontDistribute super."djinn";
@@ -2890,6 +2909,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@@ -3014,6 +3034,7 @@ self: super: {
"fast-tags" = dontDistribute super."fast-tags";
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
"fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = doDistribute super."fasta_0_10_2_0";
"fastbayes" = dontDistribute super."fastbayes";
"fastcgi" = dontDistribute super."fastcgi";
"fastedit" = dontDistribute super."fastedit";
@@ -3051,6 +3072,8 @@ self: super: {
"ffmpeg-light" = dontDistribute super."ffmpeg-light";
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -3173,6 +3196,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3311,6 +3335,7 @@ self: super: {
"generic-trie" = doDistribute super."generic-trie_0_3_0_1";
"generic-xml" = dontDistribute super."generic-xml";
"generics-eot" = doDistribute super."generics-eot_0_2_1";
+ "generics-sop" = doDistribute super."generics-sop_0_2_1_0";
"generics-sop-lens" = dontDistribute super."generics-sop-lens";
"genericserialize" = dontDistribute super."genericserialize";
"genetics" = dontDistribute super."genetics";
@@ -3323,6 +3348,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3333,6 +3362,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3363,6 +3393,8 @@ self: super: {
"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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1";
+ "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1";
"ghc-vis" = dontDistribute super."ghc-vis";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
@@ -3410,6 +3442,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -3949,6 +3982,7 @@ self: super: {
"haskell-names" = dontDistribute super."haskell-names";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1";
"haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_3";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
"haskell-player" = dontDistribute super."haskell-player";
@@ -4102,9 +4136,11 @@ self: super: {
"headergen" = dontDistribute super."headergen";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4180,6 +4216,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -4536,6 +4573,7 @@ self: super: {
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-snap" = doDistribute super."hspec-snap_0_4_0_0";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4579,6 +4617,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = doDistribute super."hsx2hs_0_13_4";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htaglib" = doDistribute super."htaglib_1_0_2";
@@ -4624,6 +4663,7 @@ self: super: {
"http-kinder" = dontDistribute super."http-kinder";
"http-kit" = dontDistribute super."http-kit";
"http-listen" = dontDistribute super."http-listen";
+ "http-media" = doDistribute super."http-media_0_6_3";
"http-monad" = dontDistribute super."http-monad";
"http-proxy" = dontDistribute super."http-proxy";
"http-querystring" = dontDistribute super."http-querystring";
@@ -4804,6 +4844,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_4";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4845,6 +4886,7 @@ self: super: {
"interspersed" = dontDistribute super."interspersed";
"intricacy" = dontDistribute super."intricacy";
"intset" = dontDistribute super."intset";
+ "invariant" = doDistribute super."invariant_0_3_1";
"invertible" = dontDistribute super."invertible";
"invertible-syntax" = dontDistribute super."invertible-syntax";
"io-capture" = dontDistribute super."io-capture";
@@ -4978,6 +5020,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -5016,11 +5059,13 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
"kdt" = doDistribute super."kdt_0_2_3";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -5260,6 +5305,7 @@ self: super: {
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
"lifted-async" = doDistribute super."lifted-async_0_8_0_1";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5369,6 +5415,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logfloat" = dontDistribute super."logfloat";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
@@ -5404,6 +5451,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
@@ -5461,6 +5509,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_2";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5520,6 +5569,7 @@ self: super: {
"maybench" = dontDistribute super."maybench";
"mbox" = doDistribute super."mbox_0_3_1";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5613,6 +5663,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5655,9 +5706,11 @@ self: super: {
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_18";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5832,6 +5885,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@@ -5858,6 +5912,7 @@ self: super: {
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
"neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2";
"needle" = dontDistribute super."needle";
"neet" = dontDistribute super."neet";
"nehe-tuts" = dontDistribute super."nehe-tuts";
@@ -5870,6 +5925,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = dontDistribute super."nested-routes";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -6025,6 +6081,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -6136,6 +6193,7 @@ self: super: {
"pacman-memcache" = dontDistribute super."pacman-memcache";
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palindromes" = dontDistribute super."palindromes";
"pam" = dontDistribute super."pam";
@@ -6245,6 +6303,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@@ -6321,6 +6380,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6355,6 +6415,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = doDistribute super."pkcs10_0_1_0_5";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6626,6 +6687,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6640,6 +6705,7 @@ self: super: {
"quick-schema" = dontDistribute super."quick-schema";
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6658,6 +6724,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -6876,6 +6943,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -7106,6 +7174,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -7117,6 +7186,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = doDistribute super."second-transfer_0_7_1_0";
@@ -7134,6 +7204,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_1";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_1";
@@ -7212,6 +7283,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7321,6 +7393,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7359,6 +7432,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smsaero" = doDistribute super."smsaero_0_4_1";
"smt-lib" = dontDistribute super."smt-lib";
"smtLib" = doDistribute super."smtLib_1_0_7";
@@ -7446,6 +7520,7 @@ self: super: {
"socks" = doDistribute super."socks_0_5_4";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7532,12 +7607,14 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"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";
"stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0";
"stackage-curator" = doDistribute super."stackage-curator_0_13_1";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
"star-to-star" = dontDistribute super."star-to-star";
@@ -7712,6 +7789,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7741,6 +7819,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7778,6 +7857,7 @@ self: super: {
"tagset-positional" = dontDistribute super."tagset-positional";
"tagsoup" = doDistribute super."tagsoup_0_13_9";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7805,6 +7885,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tateti-tateti" = dontDistribute super."tateti-tateti";
"tau" = dontDistribute super."tau";
"tbox" = dontDistribute super."tbox";
@@ -7902,6 +7983,7 @@ self: super: {
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
"text-zipper" = doDistribute super."text-zipper_0_3_1";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7937,6 +8019,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_1";
@@ -8339,6 +8422,7 @@ self: super: {
"uuid" = doDistribute super."uuid_1_3_11";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uuid-types" = doDistribute super."uuid-types_1_0_2";
"uulib" = dontDistribute super."uulib";
@@ -8358,6 +8442,7 @@ self: super: {
"validate" = dontDistribute super."validate";
"validated-literals" = dontDistribute super."validated-literals";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8469,6 +8554,7 @@ self: super: {
"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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
"wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
"wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
"wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
@@ -8568,6 +8654,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"with-location" = doDistribute super."with-location_0_0_0";
"withdependencies" = doDistribute super."withdependencies_0_2_2_1";
diff --git a/pkgs/development/haskell-modules/configuration-lts-6.0.nix b/pkgs/development/haskell-modules/configuration-lts-6.0.nix
index 94bb9acdb21..d073a0dc9eb 100644
--- a/pkgs/development/haskell-modules/configuration-lts-6.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-6.0.nix
@@ -188,6 +188,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -213,6 +214,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -403,6 +405,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -709,6 +712,7 @@ self: super: {
"OpenCLRaw" = dontDistribute super."OpenCLRaw";
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_2_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -736,6 +740,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -881,6 +886,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1549,6 +1555,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_2_0";
"bindings-K8055" = dontDistribute super."bindings-K8055";
"bindings-apr" = dontDistribute super."bindings-apr";
"bindings-apr-util" = dontDistribute super."bindings-apr-util";
@@ -1655,6 +1662,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
@@ -1701,6 +1709,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_4_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1887,7 +1896,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -1917,6 +1928,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -1959,6 +1971,8 @@ self: super: {
"clash-lib" = doDistribute super."clash-lib_0_6_15";
"clash-prelude" = doDistribute super."clash-prelude_0_10_7";
"clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6";
+ "clash-verilog" = doDistribute super."clash-verilog_0_6_6";
"clash-vhdl" = doDistribute super."clash-vhdl_0_6_11";
"classify" = dontDistribute super."classify";
"classy-parallel" = dontDistribute super."classy-parallel";
@@ -1982,6 +1996,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -2001,6 +2016,7 @@ self: super: {
"clustertools" = dontDistribute super."clustertools";
"clutterhs" = dontDistribute super."clutterhs";
"cmaes" = dontDistribute super."cmaes";
+ "cmark" = doDistribute super."cmark_0_5_2_1";
"cmath" = dontDistribute super."cmath";
"cmathml3" = dontDistribute super."cmathml3";
"cmd-item" = dontDistribute super."cmd-item";
@@ -2165,6 +2181,7 @@ self: super: {
"convertible-ascii" = dontDistribute super."convertible-ascii";
"convertible-text" = dontDistribute super."convertible-text";
"cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_2";
"coordinate" = dontDistribute super."coordinate";
"copilot" = dontDistribute super."copilot";
"copilot-c99" = dontDistribute super."copilot-c99";
@@ -2188,6 +2205,7 @@ self: super: {
"count" = dontDistribute super."count";
"countable" = dontDistribute super."countable";
"counter" = dontDistribute super."counter";
+ "courier" = doDistribute super."courier_0_1_1_2";
"court" = dontDistribute super."court";
"coverage" = dontDistribute super."coverage";
"cpio-conduit" = dontDistribute super."cpio-conduit";
@@ -2259,6 +2277,7 @@ self: super: {
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
"css-syntax" = doDistribute super."css-syntax_0_0_4";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2330,8 +2349,10 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
+ "data-default-instances-base" = doDistribute super."data-default-instances-base_0_1_0";
"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";
@@ -2341,6 +2362,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2389,6 +2411,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2590,6 +2613,7 @@ self: super: {
"distribution" = dontDistribute super."distribution";
"distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs";
"distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = doDistribute super."diversity_0_8_0_0";
"djembe" = dontDistribute super."djembe";
"djinn" = dontDistribute super."djinn";
"djinn-th" = dontDistribute super."djinn-th";
@@ -2780,6 +2804,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envparse" = dontDistribute super."envparse";
"epanet-haskell" = dontDistribute super."epanet-haskell";
@@ -2894,6 +2919,7 @@ self: super: {
"fast-tags" = dontDistribute super."fast-tags";
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
"fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = doDistribute super."fasta_0_10_2_0";
"fastbayes" = dontDistribute super."fastbayes";
"fastcgi" = dontDistribute super."fastcgi";
"fastedit" = dontDistribute super."fastedit";
@@ -2931,6 +2957,8 @@ self: super: {
"ffmpeg-light" = dontDistribute super."ffmpeg-light";
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -3046,6 +3074,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3181,6 +3210,7 @@ self: super: {
"generic-tree" = dontDistribute super."generic-tree";
"generic-xml" = dontDistribute super."generic-xml";
"generics-eot" = doDistribute super."generics-eot_0_2_1";
+ "generics-sop" = doDistribute super."generics-sop_0_2_1_0";
"generics-sop-lens" = dontDistribute super."generics-sop-lens";
"genericserialize" = dontDistribute super."genericserialize";
"genetics" = dontDistribute super."genetics";
@@ -3192,6 +3222,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3202,6 +3236,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3232,6 +3267,8 @@ self: super: {
"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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1";
+ "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1";
"ghc-vis" = dontDistribute super."ghc-vis";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
@@ -3268,6 +3305,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -3509,6 +3547,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_1_0";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3877,6 +3916,7 @@ self: super: {
"hasloGUI" = dontDistribute super."hasloGUI";
"hasparql-client" = dontDistribute super."hasparql-client";
"haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_19_12";
"hasql-backend" = dontDistribute super."hasql-backend";
"hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative";
"hasql-pool" = dontDistribute super."hasql-pool";
@@ -3947,9 +3987,11 @@ self: super: {
"headergen" = dontDistribute super."headergen";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -4023,6 +4065,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -4051,6 +4094,7 @@ self: super: {
"himerge" = dontDistribute super."himerge";
"himg" = dontDistribute super."himg";
"himpy" = dontDistribute super."himpy";
+ "hindent" = doDistribute super."hindent_4_6_3";
"hindley-milner" = dontDistribute super."hindley-milner";
"hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
"hinduce-classifier" = dontDistribute super."hinduce-classifier";
@@ -4362,6 +4406,7 @@ self: super: {
"hspec-setup" = doDistribute super."hspec-setup_0_1_1_0";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4404,6 +4449,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = doDistribute super."hsx2hs_0_13_4";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htags" = dontDistribute super."htags";
@@ -4447,6 +4493,7 @@ self: super: {
"http-kinder" = dontDistribute super."http-kinder";
"http-kit" = dontDistribute super."http-kit";
"http-listen" = dontDistribute super."http-listen";
+ "http-media" = doDistribute super."http-media_0_6_3";
"http-monad" = dontDistribute super."http-monad";
"http-proxy" = dontDistribute super."http-proxy";
"http-querystring" = dontDistribute super."http-querystring";
@@ -4457,6 +4504,7 @@ self: super: {
"http-trace" = dontDistribute super."http-trace";
"http-types" = doDistribute super."http-types_0_9";
"http-wget" = dontDistribute super."http-wget";
+ "http2" = doDistribute super."http2_1_6_0";
"https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
"https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
"httpspec" = dontDistribute super."httpspec";
@@ -4469,6 +4517,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_1";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_3_0_0";
@@ -4486,6 +4535,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hw-bits" = doDistribute super."hw-bits_0_0_0_6";
"hw-json" = doDistribute super."hw-json_0_0_0_2";
"hw-prim" = doDistribute super."hw-prim_0_0_0_10";
"hw-rankselect" = doDistribute super."hw-rankselect_0_0_0_2";
@@ -4616,6 +4666,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4656,6 +4707,7 @@ self: super: {
"interspersed" = dontDistribute super."interspersed";
"intricacy" = dontDistribute super."intricacy";
"intset" = dontDistribute super."intset";
+ "invariant" = doDistribute super."invariant_0_3_1";
"invertible" = dontDistribute super."invertible";
"invertible-syntax" = dontDistribute super."invertible-syntax";
"io-capture" = dontDistribute super."io-capture";
@@ -4786,6 +4838,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -4822,10 +4875,12 @@ self: super: {
"karver" = dontDistribute super."karver";
"katip-elasticsearch" = doDistribute super."katip-elasticsearch_0_2_0_0";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -4911,6 +4966,7 @@ self: super: {
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = doDistribute super."lambdacube-gl_0_5_0_5";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
"lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
@@ -5051,6 +5107,7 @@ self: super: {
"libxml-enumerator" = dontDistribute super."libxml-enumerator";
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5159,6 +5216,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
"logging-effect" = dontDistribute super."logging-effect";
@@ -5193,6 +5251,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltl" = dontDistribute super."ltl";
"lua-bc" = dontDistribute super."lua-bc";
@@ -5242,6 +5301,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"managed" = doDistribute super."managed_1_0_4";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
@@ -5261,6 +5321,7 @@ self: super: {
"manatee-terminal" = dontDistribute super."manatee-terminal";
"manatee-welcome" = dontDistribute super."manatee-welcome";
"mancala" = dontDistribute super."mancala";
+ "mandrill" = doDistribute super."mandrill_0_5_2_1";
"mandulia" = dontDistribute super."mandulia";
"mangopay" = dontDistribute super."mangopay";
"manifold-random" = dontDistribute super."manifold-random";
@@ -5283,6 +5344,7 @@ self: super: {
"mastermind" = dontDistribute super."mastermind";
"matcher" = dontDistribute super."matcher";
"matchers" = dontDistribute super."matchers";
+ "math-functions" = doDistribute super."math-functions_0_1_7_0";
"mathblog" = dontDistribute super."mathblog";
"mathgenealogy" = dontDistribute super."mathgenealogy";
"mathista" = dontDistribute super."mathista";
@@ -5298,6 +5360,7 @@ self: super: {
"maybe-justify" = dontDistribute super."maybe-justify";
"maybench" = dontDistribute super."maybench";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5385,6 +5448,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5424,9 +5488,11 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_18";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5592,6 +5658,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = doDistribute super."names-th_0_2_0_1";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-hmac" = dontDistribute super."nano-hmac";
"nano-md5" = dontDistribute super."nano-md5";
@@ -5616,6 +5683,7 @@ self: super: {
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
"neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2";
"needle" = dontDistribute super."needle";
"neet" = dontDistribute super."neet";
"nehe-tuts" = dontDistribute super."nehe-tuts";
@@ -5628,6 +5696,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = doDistribute super."nested-routes_7_0_0";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -5776,6 +5845,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -5884,6 +5954,7 @@ self: super: {
"pacman-memcache" = dontDistribute super."pacman-memcache";
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palindromes" = dontDistribute super."palindromes";
"pam" = dontDistribute super."pam";
@@ -5951,6 +6022,7 @@ self: super: {
"patch-combinators" = dontDistribute super."patch-combinators";
"patch-image" = dontDistribute super."patch-image";
"path" = doDistribute super."path_0_5_7";
+ "path-io" = doDistribute super."path-io_1_1_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype";
@@ -5991,6 +6063,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permute" = dontDistribute super."permute";
"persist2er" = dontDistribute super."persist2er";
@@ -6066,6 +6139,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
@@ -6099,6 +6173,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs10" = doDistribute super."pkcs10_0_1_0_5";
"pkcs7" = dontDistribute super."pkcs7";
@@ -6352,6 +6427,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6366,6 +6445,7 @@ self: super: {
"quick-schema" = dontDistribute super."quick-schema";
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6384,6 +6464,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -6408,6 +6489,7 @@ self: super: {
"rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
"rainbow" = doDistribute super."rainbow_0_28_0_0";
"rainbow-tests" = dontDistribute super."rainbow-tests";
+ "rainbox" = doDistribute super."rainbox_0_18_0_8";
"rake" = dontDistribute super."rake";
"rakhana" = dontDistribute super."rakhana";
"ralist" = dontDistribute super."ralist";
@@ -6436,6 +6518,7 @@ self: super: {
"rasterific-svg" = doDistribute super."rasterific-svg_0_3_1_1";
"rate-limit" = dontDistribute super."rate-limit";
"ratel" = doDistribute super."ratel_0_1_3";
+ "ratel-wai" = doDistribute super."ratel-wai_0_1_2";
"ratio-int" = dontDistribute super."ratio-int";
"raven-haskell" = dontDistribute super."raven-haskell";
"raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
@@ -6592,6 +6675,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -6807,6 +6891,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -6818,6 +6903,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -6835,6 +6921,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_1";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_1";
@@ -6899,6 +6986,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -7005,6 +7093,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -7043,6 +7132,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
"smtlib2" = dontDistribute super."smtlib2";
@@ -7126,6 +7216,7 @@ self: super: {
"socketson" = dontDistribute super."socketson";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7210,10 +7301,13 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_1";
+ "stackage-curator" = doDistribute super."stackage-curator_0_14_0";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
"star-to-star" = dontDistribute super."star-to-star";
@@ -7321,6 +7415,7 @@ self: super: {
"stripe-core" = doDistribute super."stripe-core_2_0_3";
"stripe-haskell" = doDistribute super."stripe-haskell_2_0_3";
"stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_3";
+ "strive" = doDistribute super."strive_2_2_2";
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
@@ -7380,6 +7475,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7409,6 +7505,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7441,7 +7538,9 @@ self: super: {
"taglib" = dontDistribute super."taglib";
"taglib-api" = dontDistribute super."taglib-api";
"tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup" = doDistribute super."tagsoup_0_13_10";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7465,6 +7564,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tateti-tateti" = dontDistribute super."tateti-tateti";
"tau" = dontDistribute super."tau";
"tbox" = dontDistribute super."tbox";
@@ -7559,6 +7659,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7591,6 +7692,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_1";
@@ -7975,6 +8077,7 @@ self: super: {
"uuagd" = dontDistribute super."uuagd";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uulib" = dontDistribute super."uulib";
"uvector" = dontDistribute super."uvector";
@@ -7992,6 +8095,7 @@ self: super: {
"validate" = dontDistribute super."validate";
"validated-literals" = dontDistribute super."validated-literals";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8092,6 +8196,7 @@ self: super: {
"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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
"wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
"wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
"wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
@@ -8189,6 +8294,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"withdependencies" = doDistribute super."withdependencies_0_2_2_1";
"witness" = dontDistribute super."witness";
diff --git a/pkgs/development/haskell-modules/configuration-lts-6.1.nix b/pkgs/development/haskell-modules/configuration-lts-6.1.nix
index d5032927ded..1eca54977b2 100644
--- a/pkgs/development/haskell-modules/configuration-lts-6.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-6.1.nix
@@ -188,6 +188,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -213,6 +214,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -403,6 +405,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -707,6 +710,7 @@ self: super: {
"OpenCLRaw" = dontDistribute super."OpenCLRaw";
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_2_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -734,6 +738,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -879,6 +884,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1546,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_2_0";
"bindings-K8055" = dontDistribute super."bindings-K8055";
"bindings-apr" = dontDistribute super."bindings-apr";
"bindings-apr-util" = dontDistribute super."bindings-apr-util";
@@ -1651,6 +1658,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
@@ -1696,6 +1704,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_4_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1875,7 +1884,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -1905,6 +1916,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -1947,6 +1959,8 @@ self: super: {
"clash-lib" = doDistribute super."clash-lib_0_6_15";
"clash-prelude" = doDistribute super."clash-prelude_0_10_7";
"clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6";
+ "clash-verilog" = doDistribute super."clash-verilog_0_6_6";
"clash-vhdl" = doDistribute super."clash-vhdl_0_6_11";
"classify" = dontDistribute super."classify";
"classy-parallel" = dontDistribute super."classy-parallel";
@@ -1970,6 +1984,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -1989,6 +2004,7 @@ self: super: {
"clustertools" = dontDistribute super."clustertools";
"clutterhs" = dontDistribute super."clutterhs";
"cmaes" = dontDistribute super."cmaes";
+ "cmark" = doDistribute super."cmark_0_5_2_1";
"cmath" = dontDistribute super."cmath";
"cmathml3" = dontDistribute super."cmathml3";
"cmd-item" = dontDistribute super."cmd-item";
@@ -2153,6 +2169,7 @@ self: super: {
"convertible-ascii" = dontDistribute super."convertible-ascii";
"convertible-text" = dontDistribute super."convertible-text";
"cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_2";
"coordinate" = dontDistribute super."coordinate";
"copilot" = dontDistribute super."copilot";
"copilot-c99" = dontDistribute super."copilot-c99";
@@ -2176,6 +2193,7 @@ self: super: {
"count" = dontDistribute super."count";
"countable" = dontDistribute super."countable";
"counter" = dontDistribute super."counter";
+ "courier" = doDistribute super."courier_0_1_1_2";
"court" = dontDistribute super."court";
"coverage" = dontDistribute super."coverage";
"cpio-conduit" = dontDistribute super."cpio-conduit";
@@ -2246,6 +2264,7 @@ self: super: {
"csp" = dontDistribute super."csp";
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2317,8 +2336,10 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
+ "data-default-instances-base" = doDistribute super."data-default-instances-base_0_1_0";
"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";
@@ -2328,6 +2349,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2375,6 +2397,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2576,6 +2599,7 @@ self: super: {
"distribution" = dontDistribute super."distribution";
"distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs";
"distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = doDistribute super."diversity_0_8_0_0";
"djembe" = dontDistribute super."djembe";
"djinn" = dontDistribute super."djinn";
"djinn-th" = dontDistribute super."djinn-th";
@@ -2761,6 +2785,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envparse" = dontDistribute super."envparse";
"epanet-haskell" = dontDistribute super."epanet-haskell";
@@ -2873,6 +2898,7 @@ self: super: {
"fast-tags" = dontDistribute super."fast-tags";
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
"fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = doDistribute super."fasta_0_10_2_0";
"fastbayes" = dontDistribute super."fastbayes";
"fastcgi" = dontDistribute super."fastcgi";
"fastedit" = dontDistribute super."fastedit";
@@ -2910,6 +2936,8 @@ self: super: {
"ffmpeg-light" = dontDistribute super."ffmpeg-light";
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -3022,6 +3050,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3156,6 +3185,7 @@ self: super: {
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
"generic-xml" = dontDistribute super."generic-xml";
+ "generics-sop" = doDistribute super."generics-sop_0_2_1_0";
"generics-sop-lens" = dontDistribute super."generics-sop-lens";
"genericserialize" = dontDistribute super."genericserialize";
"genetics" = dontDistribute super."genetics";
@@ -3167,6 +3197,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3177,6 +3211,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3207,6 +3242,8 @@ self: super: {
"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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1";
+ "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1";
"ghc-vis" = dontDistribute super."ghc-vis";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
@@ -3243,6 +3280,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -3480,6 +3518,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_1_0";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3847,6 +3886,7 @@ self: super: {
"hasloGUI" = dontDistribute super."hasloGUI";
"hasparql-client" = dontDistribute super."hasparql-client";
"haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_19_12";
"hasql-backend" = dontDistribute super."hasql-backend";
"hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative";
"hasql-pool" = dontDistribute super."hasql-pool";
@@ -3916,9 +3956,11 @@ self: super: {
"headergen" = dontDistribute super."headergen";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -3991,6 +4033,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -4018,6 +4061,7 @@ self: super: {
"himerge" = dontDistribute super."himerge";
"himg" = dontDistribute super."himg";
"himpy" = dontDistribute super."himpy";
+ "hindent" = doDistribute super."hindent_4_6_3";
"hindley-milner" = dontDistribute super."hindley-milner";
"hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
"hinduce-classifier" = dontDistribute super."hinduce-classifier";
@@ -4327,6 +4371,7 @@ self: super: {
"hspec-setup" = doDistribute super."hspec-setup_0_1_1_0";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4369,6 +4414,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = doDistribute super."hsx2hs_0_13_4";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htags" = dontDistribute super."htags";
@@ -4412,6 +4458,7 @@ self: super: {
"http-kinder" = dontDistribute super."http-kinder";
"http-kit" = dontDistribute super."http-kit";
"http-listen" = dontDistribute super."http-listen";
+ "http-media" = doDistribute super."http-media_0_6_3";
"http-monad" = dontDistribute super."http-monad";
"http-proxy" = dontDistribute super."http-proxy";
"http-querystring" = dontDistribute super."http-querystring";
@@ -4422,6 +4469,7 @@ self: super: {
"http-trace" = dontDistribute super."http-trace";
"http-types" = doDistribute super."http-types_0_9";
"http-wget" = dontDistribute super."http-wget";
+ "http2" = doDistribute super."http2_1_6_0";
"https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
"https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
"httpspec" = dontDistribute super."httpspec";
@@ -4434,6 +4482,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_1";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-gui" = dontDistribute super."hunit-gui";
@@ -4450,6 +4499,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hw-bits" = doDistribute super."hw-bits_0_0_0_6";
"hw-json" = doDistribute super."hw-json_0_0_0_2";
"hw-prim" = doDistribute super."hw-prim_0_0_0_10";
"hw-rankselect" = doDistribute super."hw-rankselect_0_0_0_2";
@@ -4580,6 +4630,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4620,6 +4671,7 @@ self: super: {
"interspersed" = dontDistribute super."interspersed";
"intricacy" = dontDistribute super."intricacy";
"intset" = dontDistribute super."intset";
+ "invariant" = doDistribute super."invariant_0_3_1";
"invertible" = dontDistribute super."invertible";
"invertible-syntax" = dontDistribute super."invertible-syntax";
"io-capture" = dontDistribute super."io-capture";
@@ -4747,6 +4799,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -4783,10 +4836,12 @@ self: super: {
"karver" = dontDistribute super."karver";
"katip-elasticsearch" = doDistribute super."katip-elasticsearch_0_2_0_0";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -4828,6 +4883,7 @@ self: super: {
"kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
"korfu" = dontDistribute super."korfu";
"kqueue" = dontDistribute super."kqueue";
+ "kraken" = doDistribute super."kraken_0_0_2";
"krpc" = dontDistribute super."krpc";
"ks-test" = dontDistribute super."ks-test";
"ktx" = dontDistribute super."ktx";
@@ -4871,6 +4927,7 @@ self: super: {
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = doDistribute super."lambdacube-gl_0_5_0_5";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
"lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
@@ -5009,6 +5066,7 @@ self: super: {
"libxml-enumerator" = dontDistribute super."libxml-enumerator";
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5117,6 +5175,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
"logging-effect" = dontDistribute super."logging-effect";
@@ -5151,6 +5210,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltl" = dontDistribute super."ltl";
"lua-bc" = dontDistribute super."lua-bc";
@@ -5200,6 +5260,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
"manatee-anything" = dontDistribute super."manatee-anything";
@@ -5218,6 +5279,7 @@ self: super: {
"manatee-terminal" = dontDistribute super."manatee-terminal";
"manatee-welcome" = dontDistribute super."manatee-welcome";
"mancala" = dontDistribute super."mancala";
+ "mandrill" = doDistribute super."mandrill_0_5_2_1";
"mandulia" = dontDistribute super."mandulia";
"mangopay" = dontDistribute super."mangopay";
"manifold-random" = dontDistribute super."manifold-random";
@@ -5240,6 +5302,7 @@ self: super: {
"mastermind" = dontDistribute super."mastermind";
"matcher" = dontDistribute super."matcher";
"matchers" = dontDistribute super."matchers";
+ "math-functions" = doDistribute super."math-functions_0_1_7_0";
"mathblog" = dontDistribute super."mathblog";
"mathgenealogy" = dontDistribute super."mathgenealogy";
"mathista" = dontDistribute super."mathista";
@@ -5254,6 +5317,7 @@ self: super: {
"maybe-justify" = dontDistribute super."maybe-justify";
"maybench" = dontDistribute super."maybench";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5341,6 +5405,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5379,9 +5444,11 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_18";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5546,6 +5613,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = doDistribute super."names-th_0_2_0_1";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-hmac" = dontDistribute super."nano-hmac";
"nano-md5" = dontDistribute super."nano-md5";
@@ -5570,6 +5638,7 @@ self: super: {
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
"neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2";
"needle" = dontDistribute super."needle";
"neet" = dontDistribute super."neet";
"nehe-tuts" = dontDistribute super."nehe-tuts";
@@ -5582,6 +5651,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = doDistribute super."nested-routes_7_0_0";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -5729,6 +5799,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -5835,6 +5906,7 @@ self: super: {
"pacman-memcache" = dontDistribute super."pacman-memcache";
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palindromes" = dontDistribute super."palindromes";
"pam" = dontDistribute super."pam";
@@ -5902,6 +5974,7 @@ self: super: {
"patch-combinators" = dontDistribute super."patch-combinators";
"patch-image" = dontDistribute super."patch-image";
"path" = doDistribute super."path_0_5_7";
+ "path-io" = doDistribute super."path-io_1_1_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype";
@@ -5942,6 +6015,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permute" = dontDistribute super."permute";
"persist2er" = dontDistribute super."persist2er";
@@ -6004,6 +6078,7 @@ self: super: {
"piki" = dontDistribute super."piki";
"pinboard" = dontDistribute super."pinboard";
"pinch" = doDistribute super."pinch_0_2_0_1";
+ "pinchot" = doDistribute super."pinchot_0_18_0_2";
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes-async" = dontDistribute super."pipes-async";
@@ -6016,6 +6091,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6046,6 +6122,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs7" = dontDistribute super."pkcs7";
"pkggraph" = dontDistribute super."pkggraph";
@@ -6294,6 +6371,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6308,6 +6389,7 @@ self: super: {
"quick-schema" = dontDistribute super."quick-schema";
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6326,6 +6408,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -6350,6 +6433,7 @@ self: super: {
"rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
"rainbow" = doDistribute super."rainbow_0_28_0_0";
"rainbow-tests" = dontDistribute super."rainbow-tests";
+ "rainbox" = doDistribute super."rainbox_0_18_0_8";
"rake" = dontDistribute super."rake";
"rakhana" = dontDistribute super."rakhana";
"ralist" = dontDistribute super."ralist";
@@ -6378,6 +6462,7 @@ self: super: {
"rasterific-svg" = doDistribute super."rasterific-svg_0_3_1_1";
"rate-limit" = dontDistribute super."rate-limit";
"ratel" = doDistribute super."ratel_0_1_3";
+ "ratel-wai" = doDistribute super."ratel-wai_0_1_2";
"ratio-int" = dontDistribute super."ratio-int";
"raven-haskell" = dontDistribute super."raven-haskell";
"raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
@@ -6533,6 +6618,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -6557,6 +6643,7 @@ self: super: {
"restricted-workers" = dontDistribute super."restricted-workers";
"restyle" = dontDistribute super."restyle";
"resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = doDistribute super."rethinkdb_2_2_0_5";
"rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22";
"rethinkdb-model" = dontDistribute super."rethinkdb-model";
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
@@ -6746,6 +6833,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -6757,6 +6845,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -6774,6 +6863,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_1";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_1";
@@ -6838,6 +6928,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -6944,6 +7035,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -6982,6 +7074,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
"smtlib2" = dontDistribute super."smtlib2";
@@ -7065,6 +7158,7 @@ self: super: {
"socketson" = dontDistribute super."socketson";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7149,10 +7243,13 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_1";
+ "stackage-curator" = doDistribute super."stackage-curator_0_14_0";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
"star-to-star" = dontDistribute super."star-to-star";
@@ -7259,6 +7356,7 @@ self: super: {
"stripe-core" = doDistribute super."stripe-core_2_0_3";
"stripe-haskell" = doDistribute super."stripe-haskell_2_0_3";
"stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_3";
+ "strive" = doDistribute super."strive_2_2_2";
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
@@ -7318,6 +7416,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7347,6 +7446,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7379,7 +7479,9 @@ self: super: {
"taglib" = dontDistribute super."taglib";
"taglib-api" = dontDistribute super."taglib-api";
"tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup" = doDistribute super."tagsoup_0_13_10";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7402,6 +7504,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tateti-tateti" = dontDistribute super."tateti-tateti";
"tau" = dontDistribute super."tau";
"tbox" = dontDistribute super."tbox";
@@ -7495,6 +7598,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7527,6 +7631,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_1";
@@ -7909,6 +8014,7 @@ self: super: {
"uuagd" = dontDistribute super."uuagd";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uulib" = dontDistribute super."uulib";
"uvector" = dontDistribute super."uvector";
@@ -7926,6 +8032,7 @@ self: super: {
"validate" = dontDistribute super."validate";
"validated-literals" = dontDistribute super."validated-literals";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -8025,6 +8132,7 @@ self: super: {
"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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
"wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
"wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
"wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
@@ -8118,6 +8226,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"witness" = dontDistribute super."witness";
"witty" = dontDistribute super."witty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-6.2.nix b/pkgs/development/haskell-modules/configuration-lts-6.2.nix
index 745d629e695..ec18f66711d 100644
--- a/pkgs/development/haskell-modules/configuration-lts-6.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-6.2.nix
@@ -187,6 +187,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -212,6 +213,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -400,6 +402,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -703,6 +706,7 @@ self: super: {
"OpenCLRaw" = dontDistribute super."OpenCLRaw";
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_2_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -730,6 +734,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -874,6 +879,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1538,6 +1544,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_2_0";
"bindings-K8055" = dontDistribute super."bindings-K8055";
"bindings-apr" = dontDistribute super."bindings-apr";
"bindings-apr-util" = dontDistribute super."bindings-apr-util";
@@ -1643,6 +1650,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
@@ -1687,6 +1695,7 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_4_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
@@ -1866,7 +1875,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -1896,6 +1907,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -1938,6 +1950,8 @@ self: super: {
"clash-lib" = doDistribute super."clash-lib_0_6_15";
"clash-prelude" = doDistribute super."clash-prelude_0_10_7";
"clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6";
+ "clash-verilog" = doDistribute super."clash-verilog_0_6_6";
"clash-vhdl" = doDistribute super."clash-vhdl_0_6_11";
"classify" = dontDistribute super."classify";
"classy-parallel" = dontDistribute super."classy-parallel";
@@ -1961,6 +1975,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -1980,6 +1995,7 @@ self: super: {
"clustertools" = dontDistribute super."clustertools";
"clutterhs" = dontDistribute super."clutterhs";
"cmaes" = dontDistribute super."cmaes";
+ "cmark" = doDistribute super."cmark_0_5_2_1";
"cmath" = dontDistribute super."cmath";
"cmathml3" = dontDistribute super."cmathml3";
"cmd-item" = dontDistribute super."cmd-item";
@@ -2142,6 +2158,7 @@ self: super: {
"convertible-ascii" = dontDistribute super."convertible-ascii";
"convertible-text" = dontDistribute super."convertible-text";
"cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_2";
"coordinate" = dontDistribute super."coordinate";
"copilot" = dontDistribute super."copilot";
"copilot-c99" = dontDistribute super."copilot-c99";
@@ -2165,6 +2182,7 @@ self: super: {
"count" = dontDistribute super."count";
"countable" = dontDistribute super."countable";
"counter" = dontDistribute super."counter";
+ "courier" = doDistribute super."courier_0_1_1_2";
"court" = dontDistribute super."court";
"coverage" = dontDistribute super."coverage";
"cpio-conduit" = dontDistribute super."cpio-conduit";
@@ -2235,6 +2253,7 @@ self: super: {
"csp" = dontDistribute super."csp";
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2306,8 +2325,10 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
+ "data-default-instances-base" = doDistribute super."data-default-instances-base_0_1_0";
"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";
@@ -2317,6 +2338,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2364,6 +2386,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2564,6 +2587,7 @@ self: super: {
"distribution" = dontDistribute super."distribution";
"distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs";
"distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = doDistribute super."diversity_0_8_0_0";
"djembe" = dontDistribute super."djembe";
"djinn" = dontDistribute super."djinn";
"djinn-th" = dontDistribute super."djinn-th";
@@ -2749,6 +2773,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envparse" = dontDistribute super."envparse";
"epanet-haskell" = dontDistribute super."epanet-haskell";
@@ -2860,6 +2885,7 @@ self: super: {
"fast-tags" = dontDistribute super."fast-tags";
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
"fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = doDistribute super."fasta_0_10_2_0";
"fastbayes" = dontDistribute super."fastbayes";
"fastcgi" = dontDistribute super."fastcgi";
"fastedit" = dontDistribute super."fastedit";
@@ -2897,6 +2923,8 @@ self: super: {
"ffmpeg-light" = dontDistribute super."ffmpeg-light";
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -3006,6 +3034,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3140,6 +3169,7 @@ self: super: {
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
"generic-xml" = dontDistribute super."generic-xml";
+ "generics-sop" = doDistribute super."generics-sop_0_2_1_0";
"generics-sop-lens" = dontDistribute super."generics-sop-lens";
"genericserialize" = dontDistribute super."genericserialize";
"genetics" = dontDistribute super."genetics";
@@ -3151,6 +3181,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3161,6 +3195,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3189,6 +3224,8 @@ self: super: {
"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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1";
+ "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1";
"ghc-vis" = dontDistribute super."ghc-vis";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
@@ -3225,6 +3262,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -3462,6 +3500,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_1_0";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3827,6 +3866,7 @@ self: super: {
"hasloGUI" = dontDistribute super."hasloGUI";
"hasparql-client" = dontDistribute super."hasparql-client";
"haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_19_12";
"hasql-backend" = dontDistribute super."hasql-backend";
"hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative";
"hasql-pool" = dontDistribute super."hasql-pool";
@@ -3895,9 +3935,11 @@ self: super: {
"headergen" = dontDistribute super."headergen";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -3969,6 +4011,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -3996,6 +4039,7 @@ self: super: {
"himerge" = dontDistribute super."himerge";
"himg" = dontDistribute super."himg";
"himpy" = dontDistribute super."himpy";
+ "hindent" = doDistribute super."hindent_4_6_3";
"hindley-milner" = dontDistribute super."hindley-milner";
"hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
"hinduce-classifier" = dontDistribute super."hinduce-classifier";
@@ -4305,6 +4349,7 @@ self: super: {
"hspec-setup" = doDistribute super."hspec-setup_0_1_1_0";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4347,6 +4392,7 @@ self: super: {
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsx2hs" = doDistribute super."hsx2hs_0_13_4";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htags" = dontDistribute super."htags";
@@ -4390,6 +4436,7 @@ self: super: {
"http-kinder" = dontDistribute super."http-kinder";
"http-kit" = dontDistribute super."http-kit";
"http-listen" = dontDistribute super."http-listen";
+ "http-media" = doDistribute super."http-media_0_6_3";
"http-monad" = dontDistribute super."http-monad";
"http-proxy" = dontDistribute super."http-proxy";
"http-querystring" = dontDistribute super."http-querystring";
@@ -4399,6 +4446,7 @@ self: super: {
"http-test" = dontDistribute super."http-test";
"http-trace" = dontDistribute super."http-trace";
"http-wget" = dontDistribute super."http-wget";
+ "http2" = doDistribute super."http2_1_6_0";
"https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
"https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
"httpspec" = dontDistribute super."httpspec";
@@ -4411,6 +4459,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_1";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-gui" = dontDistribute super."hunit-gui";
@@ -4427,6 +4476,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hw-bits" = doDistribute super."hw-bits_0_0_0_6";
"hw-json" = doDistribute super."hw-json_0_0_0_2";
"hw-prim" = doDistribute super."hw-prim_0_0_0_10";
"hw-rankselect" = doDistribute super."hw-rankselect_0_0_0_2";
@@ -4556,6 +4606,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4596,6 +4647,7 @@ self: super: {
"interspersed" = dontDistribute super."interspersed";
"intricacy" = dontDistribute super."intricacy";
"intset" = dontDistribute super."intset";
+ "invariant" = doDistribute super."invariant_0_3_1";
"invertible" = dontDistribute super."invertible";
"invertible-syntax" = dontDistribute super."invertible-syntax";
"io-capture" = dontDistribute super."io-capture";
@@ -4723,6 +4775,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -4758,10 +4811,12 @@ self: super: {
"karver" = dontDistribute super."karver";
"katip-elasticsearch" = doDistribute super."katip-elasticsearch_0_2_0_0";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -4803,6 +4858,7 @@ self: super: {
"kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
"korfu" = dontDistribute super."korfu";
"kqueue" = dontDistribute super."kqueue";
+ "kraken" = doDistribute super."kraken_0_0_2";
"krpc" = dontDistribute super."krpc";
"ks-test" = dontDistribute super."ks-test";
"ktx" = dontDistribute super."ktx";
@@ -4846,6 +4902,7 @@ self: super: {
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = doDistribute super."lambdacube-gl_0_5_0_5";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
"lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
@@ -4984,6 +5041,7 @@ self: super: {
"libxml-enumerator" = dontDistribute super."libxml-enumerator";
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5091,6 +5149,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
"logging-effect" = dontDistribute super."logging-effect";
@@ -5125,6 +5184,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltl" = dontDistribute super."ltl";
"lua-bc" = dontDistribute super."lua-bc";
@@ -5174,6 +5234,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
"manatee-anything" = dontDistribute super."manatee-anything";
@@ -5192,6 +5253,7 @@ self: super: {
"manatee-terminal" = dontDistribute super."manatee-terminal";
"manatee-welcome" = dontDistribute super."manatee-welcome";
"mancala" = dontDistribute super."mancala";
+ "mandrill" = doDistribute super."mandrill_0_5_2_1";
"mandulia" = dontDistribute super."mandulia";
"mangopay" = dontDistribute super."mangopay";
"manifold-random" = dontDistribute super."manifold-random";
@@ -5214,6 +5276,7 @@ self: super: {
"mastermind" = dontDistribute super."mastermind";
"matcher" = dontDistribute super."matcher";
"matchers" = dontDistribute super."matchers";
+ "math-functions" = doDistribute super."math-functions_0_1_7_0";
"mathblog" = dontDistribute super."mathblog";
"mathgenealogy" = dontDistribute super."mathgenealogy";
"mathista" = dontDistribute super."mathista";
@@ -5228,6 +5291,7 @@ self: super: {
"maybe-justify" = dontDistribute super."maybe-justify";
"maybench" = dontDistribute super."maybench";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5315,6 +5379,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5353,9 +5418,11 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_18";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5519,6 +5586,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = doDistribute super."names-th_0_2_0_1";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-hmac" = dontDistribute super."nano-hmac";
"nano-md5" = dontDistribute super."nano-md5";
@@ -5543,6 +5611,7 @@ self: super: {
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
"neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2";
"needle" = dontDistribute super."needle";
"neet" = dontDistribute super."neet";
"nehe-tuts" = dontDistribute super."nehe-tuts";
@@ -5555,6 +5624,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = doDistribute super."nested-routes_7_0_0";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -5701,6 +5771,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -5806,6 +5877,7 @@ self: super: {
"pacman-memcache" = dontDistribute super."pacman-memcache";
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palindromes" = dontDistribute super."palindromes";
"pam" = dontDistribute super."pam";
@@ -5871,6 +5943,7 @@ self: super: {
"patch-combinators" = dontDistribute super."patch-combinators";
"patch-image" = dontDistribute super."patch-image";
"path" = doDistribute super."path_0_5_7";
+ "path-io" = doDistribute super."path-io_1_1_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype";
@@ -5910,6 +5983,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permute" = dontDistribute super."permute";
"persist2er" = dontDistribute super."persist2er";
@@ -5971,6 +6045,7 @@ self: super: {
"piki" = dontDistribute super."piki";
"pinboard" = dontDistribute super."pinboard";
"pinch" = doDistribute super."pinch_0_2_0_1";
+ "pinchot" = doDistribute super."pinchot_0_18_0_2";
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes-async" = dontDistribute super."pipes-async";
@@ -5983,6 +6058,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6013,6 +6089,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs7" = dontDistribute super."pkcs7";
"pkggraph" = dontDistribute super."pkggraph";
@@ -6261,6 +6338,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6275,6 +6356,7 @@ self: super: {
"quick-schema" = dontDistribute super."quick-schema";
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6293,6 +6375,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -6317,6 +6400,7 @@ self: super: {
"rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
"rainbow" = doDistribute super."rainbow_0_28_0_0";
"rainbow-tests" = dontDistribute super."rainbow-tests";
+ "rainbox" = doDistribute super."rainbox_0_18_0_8";
"rake" = dontDistribute super."rake";
"rakhana" = dontDistribute super."rakhana";
"ralist" = dontDistribute super."ralist";
@@ -6342,6 +6426,7 @@ self: super: {
"rascal" = dontDistribute super."rascal";
"rate-limit" = dontDistribute super."rate-limit";
"ratel" = doDistribute super."ratel_0_1_3";
+ "ratel-wai" = doDistribute super."ratel-wai_0_1_2";
"ratio-int" = dontDistribute super."ratio-int";
"raven-haskell" = dontDistribute super."raven-haskell";
"raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
@@ -6497,6 +6582,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -6521,9 +6607,11 @@ self: super: {
"restricted-workers" = dontDistribute super."restricted-workers";
"restyle" = dontDistribute super."restyle";
"resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = doDistribute super."rethinkdb_2_2_0_5";
"rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22";
"rethinkdb-model" = dontDistribute super."rethinkdb-model";
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = doDistribute super."retry_0_7_4";
"retryer" = dontDistribute super."retryer";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
@@ -6707,6 +6795,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -6718,6 +6807,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -6735,6 +6825,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_1";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_1";
@@ -6799,6 +6890,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -6905,6 +6997,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -6942,6 +7035,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
"smtlib2" = dontDistribute super."smtlib2";
@@ -7025,6 +7119,7 @@ self: super: {
"socketson" = dontDistribute super."socketson";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -7109,10 +7204,13 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
"stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_2";
+ "stackage-curator" = doDistribute super."stackage-curator_0_14_0";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
"star-to-star" = dontDistribute super."star-to-star";
@@ -7217,6 +7315,7 @@ self: super: {
"stripe-core" = doDistribute super."stripe-core_2_0_3";
"stripe-haskell" = doDistribute super."stripe-haskell_2_0_3";
"stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_3";
+ "strive" = doDistribute super."strive_2_2_2";
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
@@ -7275,6 +7374,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7304,6 +7404,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7336,7 +7437,9 @@ self: super: {
"taglib" = dontDistribute super."taglib";
"taglib-api" = dontDistribute super."taglib-api";
"tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup" = doDistribute super."tagsoup_0_13_10";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7359,6 +7462,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tateti-tateti" = dontDistribute super."tateti-tateti";
"tau" = dontDistribute super."tau";
"tbox" = dontDistribute super."tbox";
@@ -7372,6 +7476,7 @@ self: super: {
"teams" = dontDistribute super."teams";
"teeth" = dontDistribute super."teeth";
"telegram" = dontDistribute super."telegram";
+ "telegram-api" = doDistribute super."telegram-api_0_4_3_0";
"teleport" = dontDistribute super."teleport";
"template-default" = dontDistribute super."template-default";
"template-haskell-util" = dontDistribute super."template-haskell-util";
@@ -7451,6 +7556,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7483,6 +7589,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_1";
@@ -7863,6 +7970,7 @@ self: super: {
"uuagd" = dontDistribute super."uuagd";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uulib" = dontDistribute super."uulib";
"uvector" = dontDistribute super."uvector";
@@ -7880,6 +7988,7 @@ self: super: {
"validate" = dontDistribute super."validate";
"validated-literals" = dontDistribute super."validated-literals";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -7979,6 +8088,7 @@ self: super: {
"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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
"wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
"wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
"wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
@@ -8071,6 +8181,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"witness" = dontDistribute super."witness";
"witty" = dontDistribute super."witty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-6.3.nix b/pkgs/development/haskell-modules/configuration-lts-6.3.nix
index b2012886939..ef66bb58926 100644
--- a/pkgs/development/haskell-modules/configuration-lts-6.3.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-6.3.nix
@@ -187,6 +187,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -212,6 +213,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -400,6 +402,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -702,6 +705,7 @@ self: super: {
"OpenCLRaw" = dontDistribute super."OpenCLRaw";
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_2_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -729,6 +733,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -871,6 +876,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1460,6 +1466,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_2_0";
"bindings-K8055" = dontDistribute super."bindings-K8055";
"bindings-apr" = dontDistribute super."bindings-apr";
"bindings-apr-util" = dontDistribute super."bindings-apr-util";
@@ -1565,6 +1572,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
@@ -1609,9 +1617,11 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_4_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson" = doDistribute super."bson_0_3_2_2";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-mapping" = dontDistribute super."bson-mapping";
@@ -1786,7 +1796,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -1816,6 +1828,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -1854,13 +1867,20 @@ self: super: {
"clanki" = dontDistribute super."clanki";
"clarifai" = dontDistribute super."clarifai";
"clash" = dontDistribute super."clash";
+ "clash-ghc" = doDistribute super."clash-ghc_0_6_19";
+ "clash-lib" = doDistribute super."clash-lib_0_6_17";
+ "clash-prelude" = doDistribute super."clash-prelude_0_10_9";
"clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6";
+ "clash-verilog" = doDistribute super."clash-verilog_0_6_6";
+ "clash-vhdl" = doDistribute super."clash-vhdl_0_6_13";
"classify" = dontDistribute super."classify";
"classy-parallel" = dontDistribute super."classy-parallel";
"classy-prelude" = doDistribute super."classy-prelude_0_12_7";
"classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_7";
"classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_7";
"clay" = doDistribute super."clay_0_10_1";
+ "clckwrks" = doDistribute super."clckwrks_0_23_16";
"clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
"clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
"clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
@@ -1874,6 +1894,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -1893,6 +1914,7 @@ self: super: {
"clustertools" = dontDistribute super."clustertools";
"clutterhs" = dontDistribute super."clutterhs";
"cmaes" = dontDistribute super."cmaes";
+ "cmark" = doDistribute super."cmark_0_5_2_1";
"cmath" = dontDistribute super."cmath";
"cmathml3" = dontDistribute super."cmathml3";
"cmd-item" = dontDistribute super."cmd-item";
@@ -2055,6 +2077,7 @@ self: super: {
"convertible-ascii" = dontDistribute super."convertible-ascii";
"convertible-text" = dontDistribute super."convertible-text";
"cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_2";
"coordinate" = dontDistribute super."coordinate";
"copilot" = dontDistribute super."copilot";
"copilot-c99" = dontDistribute super."copilot-c99";
@@ -2078,6 +2101,7 @@ self: super: {
"count" = dontDistribute super."count";
"countable" = dontDistribute super."countable";
"counter" = dontDistribute super."counter";
+ "courier" = doDistribute super."courier_0_1_1_2";
"court" = dontDistribute super."court";
"coverage" = dontDistribute super."coverage";
"cpio-conduit" = dontDistribute super."cpio-conduit";
@@ -2148,6 +2172,7 @@ self: super: {
"csp" = dontDistribute super."csp";
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2219,8 +2244,10 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
+ "data-default-instances-base" = doDistribute super."data-default-instances-base_0_1_0";
"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";
@@ -2230,6 +2257,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2277,6 +2305,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2469,6 +2498,7 @@ self: super: {
"distribution" = dontDistribute super."distribution";
"distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs";
"distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = doDistribute super."diversity_0_8_0_0";
"djembe" = dontDistribute super."djembe";
"djinn" = dontDistribute super."djinn";
"djinn-th" = dontDistribute super."djinn-th";
@@ -2654,6 +2684,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envparse" = dontDistribute super."envparse";
"epanet-haskell" = dontDistribute super."epanet-haskell";
@@ -2765,6 +2796,7 @@ self: super: {
"fast-tags" = dontDistribute super."fast-tags";
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
"fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = doDistribute super."fasta_0_10_2_0";
"fastbayes" = dontDistribute super."fastbayes";
"fastcgi" = dontDistribute super."fastcgi";
"fastedit" = dontDistribute super."fastedit";
@@ -2802,6 +2834,8 @@ self: super: {
"ffmpeg-light" = dontDistribute super."ffmpeg-light";
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -2911,6 +2945,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3045,6 +3080,7 @@ self: super: {
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
"generic-xml" = dontDistribute super."generic-xml";
+ "generics-sop" = doDistribute super."generics-sop_0_2_1_0";
"generics-sop-lens" = dontDistribute super."generics-sop-lens";
"genericserialize" = dontDistribute super."genericserialize";
"genetics" = dontDistribute super."genetics";
@@ -3056,6 +3092,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3066,6 +3106,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3093,6 +3134,8 @@ self: super: {
"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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1";
+ "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1";
"ghc-vis" = dontDistribute super."ghc-vis";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
@@ -3129,6 +3172,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -3366,6 +3410,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_1_0";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3557,6 +3602,7 @@ self: super: {
"happs-tutorial" = dontDistribute super."happs-tutorial";
"happstack" = dontDistribute super."happstack";
"happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-authenticate" = doDistribute super."happstack-authenticate_2_3_4_2";
"happstack-contrib" = dontDistribute super."happstack-contrib";
"happstack-data" = dontDistribute super."happstack-data";
"happstack-dlg" = dontDistribute super."happstack-dlg";
@@ -3727,6 +3773,7 @@ self: super: {
"hasloGUI" = dontDistribute super."hasloGUI";
"hasparql-client" = dontDistribute super."hasparql-client";
"haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_19_12";
"hasql-backend" = dontDistribute super."hasql-backend";
"hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative";
"hasql-pool" = dontDistribute super."hasql-pool";
@@ -3794,9 +3841,11 @@ self: super: {
"headergen" = dontDistribute super."headergen";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -3868,6 +3917,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -3895,6 +3945,7 @@ self: super: {
"himerge" = dontDistribute super."himerge";
"himg" = dontDistribute super."himg";
"himpy" = dontDistribute super."himpy";
+ "hindent" = doDistribute super."hindent_4_6_3";
"hindley-milner" = dontDistribute super."hindley-milner";
"hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
"hinduce-classifier" = dontDistribute super."hinduce-classifier";
@@ -4202,6 +4253,7 @@ self: super: {
"hspec-setup" = doDistribute super."hspec-setup_0_1_1_0";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4242,6 +4294,7 @@ self: super: {
"hsx" = dontDistribute super."hsx";
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htags" = dontDistribute super."htags";
@@ -4284,6 +4337,7 @@ self: super: {
"http-kinder" = dontDistribute super."http-kinder";
"http-kit" = dontDistribute super."http-kit";
"http-listen" = dontDistribute super."http-listen";
+ "http-media" = doDistribute super."http-media_0_6_3";
"http-monad" = dontDistribute super."http-monad";
"http-proxy" = dontDistribute super."http-proxy";
"http-querystring" = dontDistribute super."http-querystring";
@@ -4293,6 +4347,7 @@ self: super: {
"http-test" = dontDistribute super."http-test";
"http-trace" = dontDistribute super."http-trace";
"http-wget" = dontDistribute super."http-wget";
+ "http2" = doDistribute super."http2_1_6_0";
"https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
"https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
"httpspec" = dontDistribute super."httpspec";
@@ -4305,6 +4360,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_1";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-gui" = dontDistribute super."hunit-gui";
@@ -4321,6 +4377,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hw-bits" = doDistribute super."hw-bits_0_0_0_6";
"hw-json" = doDistribute super."hw-json_0_0_0_2";
"hw-prim" = doDistribute super."hw-prim_0_0_0_10";
"hw-rankselect" = doDistribute super."hw-rankselect_0_0_0_2";
@@ -4450,6 +4507,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4490,6 +4548,7 @@ self: super: {
"interspersed" = dontDistribute super."interspersed";
"intricacy" = dontDistribute super."intricacy";
"intset" = dontDistribute super."intset";
+ "invariant" = doDistribute super."invariant_0_3_1";
"invertible" = dontDistribute super."invertible";
"invertible-syntax" = dontDistribute super."invertible-syntax";
"io-capture" = dontDistribute super."io-capture";
@@ -4615,6 +4674,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -4649,10 +4709,12 @@ self: super: {
"karakuri" = dontDistribute super."karakuri";
"karver" = dontDistribute super."karver";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -4694,6 +4756,7 @@ self: super: {
"kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
"korfu" = dontDistribute super."korfu";
"kqueue" = dontDistribute super."kqueue";
+ "kraken" = doDistribute super."kraken_0_0_2";
"krpc" = dontDistribute super."krpc";
"ks-test" = dontDistribute super."ks-test";
"ktx" = dontDistribute super."ktx";
@@ -4737,6 +4800,7 @@ self: super: {
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = doDistribute super."lambdacube-gl_0_5_0_5";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
"lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
@@ -4875,6 +4939,7 @@ self: super: {
"libxml-enumerator" = dontDistribute super."libxml-enumerator";
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -4981,6 +5046,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
"logging-effect" = dontDistribute super."logging-effect";
@@ -5015,6 +5081,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltl" = dontDistribute super."ltl";
"lua-bc" = dontDistribute super."lua-bc";
@@ -5064,6 +5131,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
"manatee-anything" = dontDistribute super."manatee-anything";
@@ -5082,6 +5150,7 @@ self: super: {
"manatee-terminal" = dontDistribute super."manatee-terminal";
"manatee-welcome" = dontDistribute super."manatee-welcome";
"mancala" = dontDistribute super."mancala";
+ "mandrill" = doDistribute super."mandrill_0_5_2_1";
"mandulia" = dontDistribute super."mandulia";
"mangopay" = dontDistribute super."mangopay";
"manifold-random" = dontDistribute super."manifold-random";
@@ -5104,6 +5173,7 @@ self: super: {
"mastermind" = dontDistribute super."mastermind";
"matcher" = dontDistribute super."matcher";
"matchers" = dontDistribute super."matchers";
+ "math-functions" = doDistribute super."math-functions_0_1_7_0";
"mathblog" = dontDistribute super."mathblog";
"mathgenealogy" = dontDistribute super."mathgenealogy";
"mathista" = dontDistribute super."mathista";
@@ -5118,6 +5188,7 @@ self: super: {
"maybe-justify" = dontDistribute super."maybe-justify";
"maybench" = dontDistribute super."maybench";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5205,6 +5276,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5243,9 +5315,11 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_18";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5407,6 +5481,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = doDistribute super."names-th_0_2_0_1";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-hmac" = dontDistribute super."nano-hmac";
"nano-md5" = dontDistribute super."nano-md5";
@@ -5431,6 +5506,7 @@ self: super: {
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
"neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2";
"needle" = dontDistribute super."needle";
"neet" = dontDistribute super."neet";
"nehe-tuts" = dontDistribute super."nehe-tuts";
@@ -5443,6 +5519,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = doDistribute super."nested-routes_7_0_0";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -5589,6 +5666,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -5694,6 +5772,7 @@ self: super: {
"pacman-memcache" = dontDistribute super."pacman-memcache";
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palindromes" = dontDistribute super."palindromes";
"pam" = dontDistribute super."pam";
@@ -5758,6 +5837,7 @@ self: super: {
"patch-combinators" = dontDistribute super."patch-combinators";
"patch-image" = dontDistribute super."patch-image";
"path" = doDistribute super."path_0_5_7";
+ "path-io" = doDistribute super."path-io_1_1_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype";
@@ -5797,6 +5877,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permute" = dontDistribute super."permute";
"persist2er" = dontDistribute super."persist2er";
@@ -5858,6 +5939,7 @@ self: super: {
"piki" = dontDistribute super."piki";
"pinboard" = dontDistribute super."pinboard";
"pinch" = doDistribute super."pinch_0_2_0_1";
+ "pinchot" = doDistribute super."pinchot_0_18_0_2";
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes-async" = dontDistribute super."pipes-async";
@@ -5869,6 +5951,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -5896,6 +5979,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs7" = dontDistribute super."pkcs7";
"pkggraph" = dontDistribute super."pkggraph";
@@ -6143,6 +6227,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6157,6 +6245,7 @@ self: super: {
"quick-schema" = dontDistribute super."quick-schema";
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6175,6 +6264,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -6199,6 +6289,7 @@ self: super: {
"rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
"rainbow" = doDistribute super."rainbow_0_28_0_0";
"rainbow-tests" = dontDistribute super."rainbow-tests";
+ "rainbox" = doDistribute super."rainbox_0_18_0_8";
"rake" = dontDistribute super."rake";
"rakhana" = dontDistribute super."rakhana";
"ralist" = dontDistribute super."ralist";
@@ -6224,6 +6315,7 @@ self: super: {
"rascal" = dontDistribute super."rascal";
"rate-limit" = dontDistribute super."rate-limit";
"ratel" = doDistribute super."ratel_0_1_3";
+ "ratel-wai" = doDistribute super."ratel-wai_0_1_2";
"ratio-int" = dontDistribute super."ratio-int";
"raven-haskell" = dontDistribute super."raven-haskell";
"raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
@@ -6378,6 +6470,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -6402,9 +6495,11 @@ self: super: {
"restricted-workers" = dontDistribute super."restricted-workers";
"restyle" = dontDistribute super."restyle";
"resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = doDistribute super."rethinkdb_2_2_0_5";
"rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22";
"rethinkdb-model" = dontDistribute super."rethinkdb-model";
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = doDistribute super."retry_0_7_4";
"retryer" = dontDistribute super."retryer";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
@@ -6587,6 +6682,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -6598,6 +6694,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -6615,6 +6712,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_1";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_1";
@@ -6679,6 +6777,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -6785,6 +6884,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -6822,6 +6922,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
"smtlib2" = dontDistribute super."smtlib2";
@@ -6905,6 +7006,7 @@ self: super: {
"socketson" = dontDistribute super."socketson";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -6989,9 +7091,12 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
+ "stackage-curator" = doDistribute super."stackage-curator_0_14_0";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
"star-to-star" = dontDistribute super."star-to-star";
@@ -7095,6 +7200,7 @@ self: super: {
"stripe-core" = doDistribute super."stripe-core_2_0_3";
"stripe-haskell" = doDistribute super."stripe-haskell_2_0_3";
"stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_3";
+ "strive" = doDistribute super."strive_2_2_2";
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
@@ -7152,6 +7258,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7181,6 +7288,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7213,7 +7321,9 @@ self: super: {
"taglib" = dontDistribute super."taglib";
"taglib-api" = dontDistribute super."taglib-api";
"tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup" = doDistribute super."tagsoup_0_13_10";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7235,6 +7345,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tateti-tateti" = dontDistribute super."tateti-tateti";
"tau" = dontDistribute super."tau";
"tbox" = dontDistribute super."tbox";
@@ -7248,6 +7359,7 @@ self: super: {
"teams" = dontDistribute super."teams";
"teeth" = dontDistribute super."teeth";
"telegram" = dontDistribute super."telegram";
+ "telegram-api" = doDistribute super."telegram-api_0_4_3_0";
"teleport" = dontDistribute super."teleport";
"template-default" = dontDistribute super."template-default";
"template-haskell-util" = dontDistribute super."template-haskell-util";
@@ -7327,6 +7439,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7359,6 +7472,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_1";
@@ -7733,6 +7847,7 @@ self: super: {
"uuagd" = dontDistribute super."uuagd";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uulib" = dontDistribute super."uulib";
"uvector" = dontDistribute super."uvector";
@@ -7750,6 +7865,7 @@ self: super: {
"validate" = dontDistribute super."validate";
"validated-literals" = dontDistribute super."validated-literals";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -7848,6 +7964,7 @@ self: super: {
"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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
"wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
"wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
"wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
@@ -7937,6 +8054,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"witness" = dontDistribute super."witness";
"witty" = dontDistribute super."witty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-6.4.nix b/pkgs/development/haskell-modules/configuration-lts-6.4.nix
index 10a4c6a780b..77ca194e448 100644
--- a/pkgs/development/haskell-modules/configuration-lts-6.4.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-6.4.nix
@@ -126,6 +126,7 @@ self: super: {
"BitSyntax" = dontDistribute super."BitSyntax";
"Bitly" = dontDistribute super."Bitly";
"Blobs" = dontDistribute super."Blobs";
+ "BlogLiterately" = doDistribute super."BlogLiterately_0_8_3_1";
"BluePrintCSS" = dontDistribute super."BluePrintCSS";
"Blueprint" = dontDistribute super."Blueprint";
"Bookshelf" = dontDistribute super."Bookshelf";
@@ -186,6 +187,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -211,6 +213,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -399,6 +402,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -700,6 +704,7 @@ self: super: {
"OpenCLRaw" = dontDistribute super."OpenCLRaw";
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_2_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -727,6 +732,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -869,6 +875,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1457,6 +1464,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_2_0";
"bindings-K8055" = dontDistribute super."bindings-K8055";
"bindings-apr" = dontDistribute super."bindings-apr";
"bindings-apr-util" = dontDistribute super."bindings-apr-util";
@@ -1562,6 +1570,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
@@ -1606,9 +1615,11 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_4_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson" = doDistribute super."bson_0_3_2_2";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-mapping" = dontDistribute super."bson-mapping";
@@ -1782,7 +1793,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -1812,6 +1825,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -1850,13 +1864,20 @@ self: super: {
"clanki" = dontDistribute super."clanki";
"clarifai" = dontDistribute super."clarifai";
"clash" = dontDistribute super."clash";
+ "clash-ghc" = doDistribute super."clash-ghc_0_6_19";
+ "clash-lib" = doDistribute super."clash-lib_0_6_17";
+ "clash-prelude" = doDistribute super."clash-prelude_0_10_9";
"clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6";
+ "clash-verilog" = doDistribute super."clash-verilog_0_6_6";
+ "clash-vhdl" = doDistribute super."clash-vhdl_0_6_13";
"classify" = dontDistribute super."classify";
"classy-parallel" = dontDistribute super."classy-parallel";
"classy-prelude" = doDistribute super."classy-prelude_0_12_8";
"classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_8";
"classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_8";
"clay" = doDistribute super."clay_0_10_1";
+ "clckwrks" = doDistribute super."clckwrks_0_23_16";
"clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
"clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
"clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
@@ -1870,6 +1891,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -1889,6 +1911,7 @@ self: super: {
"clustertools" = dontDistribute super."clustertools";
"clutterhs" = dontDistribute super."clutterhs";
"cmaes" = dontDistribute super."cmaes";
+ "cmark" = doDistribute super."cmark_0_5_2_1";
"cmath" = dontDistribute super."cmath";
"cmathml3" = dontDistribute super."cmathml3";
"cmd-item" = dontDistribute super."cmd-item";
@@ -2051,6 +2074,7 @@ self: super: {
"convertible-ascii" = dontDistribute super."convertible-ascii";
"convertible-text" = dontDistribute super."convertible-text";
"cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_2";
"coordinate" = dontDistribute super."coordinate";
"copilot" = dontDistribute super."copilot";
"copilot-c99" = dontDistribute super."copilot-c99";
@@ -2074,6 +2098,7 @@ self: super: {
"count" = dontDistribute super."count";
"countable" = dontDistribute super."countable";
"counter" = dontDistribute super."counter";
+ "courier" = doDistribute super."courier_0_1_1_2";
"court" = dontDistribute super."court";
"coverage" = dontDistribute super."coverage";
"cpio-conduit" = dontDistribute super."cpio-conduit";
@@ -2144,6 +2169,7 @@ self: super: {
"csp" = dontDistribute super."csp";
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2215,8 +2241,10 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
+ "data-default-instances-base" = doDistribute super."data-default-instances-base_0_1_0";
"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";
@@ -2226,6 +2254,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2273,6 +2302,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2460,6 +2490,7 @@ self: super: {
"distribution" = dontDistribute super."distribution";
"distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs";
"distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = doDistribute super."diversity_0_8_0_0";
"djembe" = dontDistribute super."djembe";
"djinn" = dontDistribute super."djinn";
"djinn-th" = dontDistribute super."djinn-th";
@@ -2644,6 +2675,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envparse" = dontDistribute super."envparse";
"epanet-haskell" = dontDistribute super."epanet-haskell";
@@ -2754,6 +2786,7 @@ self: super: {
"fast-tags" = dontDistribute super."fast-tags";
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
"fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = doDistribute super."fasta_0_10_2_0";
"fastbayes" = dontDistribute super."fastbayes";
"fastcgi" = dontDistribute super."fastcgi";
"fastedit" = dontDistribute super."fastedit";
@@ -2791,6 +2824,8 @@ self: super: {
"ffmpeg-light" = dontDistribute super."ffmpeg-light";
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -2900,6 +2935,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3025,6 +3061,7 @@ self: super: {
"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_10_5";
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
@@ -3033,6 +3070,7 @@ self: super: {
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
"generic-xml" = dontDistribute super."generic-xml";
+ "generics-sop" = doDistribute super."generics-sop_0_2_1_0";
"generics-sop-lens" = dontDistribute super."generics-sop-lens";
"genericserialize" = dontDistribute super."genericserialize";
"genetics" = dontDistribute super."genetics";
@@ -3044,6 +3082,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3054,6 +3096,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3081,6 +3124,8 @@ self: super: {
"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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1";
+ "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1";
"ghc-vis" = dontDistribute super."ghc-vis";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
@@ -3117,6 +3162,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -3354,6 +3400,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_1_0";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3545,6 +3592,7 @@ self: super: {
"happs-tutorial" = dontDistribute super."happs-tutorial";
"happstack" = dontDistribute super."happstack";
"happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-authenticate" = doDistribute super."happstack-authenticate_2_3_4_2";
"happstack-contrib" = dontDistribute super."happstack-contrib";
"happstack-data" = dontDistribute super."happstack-data";
"happstack-dlg" = dontDistribute super."happstack-dlg";
@@ -3715,6 +3763,7 @@ self: super: {
"hasloGUI" = dontDistribute super."hasloGUI";
"hasparql-client" = dontDistribute super."hasparql-client";
"haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_19_12";
"hasql-backend" = dontDistribute super."hasql-backend";
"hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative";
"hasql-pool" = dontDistribute super."hasql-pool";
@@ -3782,9 +3831,11 @@ self: super: {
"headergen" = dontDistribute super."headergen";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -3856,6 +3907,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -3883,6 +3935,7 @@ self: super: {
"himerge" = dontDistribute super."himerge";
"himg" = dontDistribute super."himg";
"himpy" = dontDistribute super."himpy";
+ "hindent" = doDistribute super."hindent_4_6_3";
"hindley-milner" = dontDistribute super."hindley-milner";
"hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
"hinduce-classifier" = dontDistribute super."hinduce-classifier";
@@ -4188,6 +4241,7 @@ self: super: {
"hspec-server" = dontDistribute super."hspec-server";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4228,6 +4282,7 @@ self: super: {
"hsx" = dontDistribute super."hsx";
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htags" = dontDistribute super."htags";
@@ -4269,6 +4324,7 @@ self: super: {
"http-kinder" = dontDistribute super."http-kinder";
"http-kit" = dontDistribute super."http-kit";
"http-listen" = dontDistribute super."http-listen";
+ "http-media" = doDistribute super."http-media_0_6_3";
"http-monad" = dontDistribute super."http-monad";
"http-proxy" = dontDistribute super."http-proxy";
"http-querystring" = dontDistribute super."http-querystring";
@@ -4278,6 +4334,7 @@ self: super: {
"http-test" = dontDistribute super."http-test";
"http-trace" = dontDistribute super."http-trace";
"http-wget" = dontDistribute super."http-wget";
+ "http2" = doDistribute super."http2_1_6_0";
"https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
"https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
"httpspec" = dontDistribute super."httpspec";
@@ -4290,6 +4347,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_1";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-gui" = dontDistribute super."hunit-gui";
@@ -4306,6 +4364,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hw-bits" = doDistribute super."hw-bits_0_0_0_6";
"hw-json" = doDistribute super."hw-json_0_0_0_2";
"hw-prim" = doDistribute super."hw-prim_0_0_0_10";
"hw-rankselect" = doDistribute super."hw-rankselect_0_0_0_2";
@@ -4435,6 +4494,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4475,6 +4535,7 @@ self: super: {
"interspersed" = dontDistribute super."interspersed";
"intricacy" = dontDistribute super."intricacy";
"intset" = dontDistribute super."intset";
+ "invariant" = doDistribute super."invariant_0_3_1";
"invertible" = dontDistribute super."invertible";
"invertible-syntax" = dontDistribute super."invertible-syntax";
"io-capture" = dontDistribute super."io-capture";
@@ -4600,6 +4661,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -4634,10 +4696,12 @@ self: super: {
"karakuri" = dontDistribute super."karakuri";
"karver" = dontDistribute super."karver";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -4679,6 +4743,7 @@ self: super: {
"kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
"korfu" = dontDistribute super."korfu";
"kqueue" = dontDistribute super."kqueue";
+ "kraken" = doDistribute super."kraken_0_0_2";
"krpc" = dontDistribute super."krpc";
"ks-test" = dontDistribute super."ks-test";
"ktx" = dontDistribute super."ktx";
@@ -4722,6 +4787,7 @@ self: super: {
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = doDistribute super."lambdacube-gl_0_5_0_5";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
"lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
@@ -4859,6 +4925,7 @@ self: super: {
"libxml-enumerator" = dontDistribute super."libxml-enumerator";
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -4965,6 +5032,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
"logging-effect" = dontDistribute super."logging-effect";
@@ -4999,6 +5067,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltl" = dontDistribute super."ltl";
"lua-bc" = dontDistribute super."lua-bc";
@@ -5048,6 +5117,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
"manatee-anything" = dontDistribute super."manatee-anything";
@@ -5066,6 +5136,7 @@ self: super: {
"manatee-terminal" = dontDistribute super."manatee-terminal";
"manatee-welcome" = dontDistribute super."manatee-welcome";
"mancala" = dontDistribute super."mancala";
+ "mandrill" = doDistribute super."mandrill_0_5_2_1";
"mandulia" = dontDistribute super."mandulia";
"mangopay" = dontDistribute super."mangopay";
"manifold-random" = dontDistribute super."manifold-random";
@@ -5088,6 +5159,7 @@ self: super: {
"mastermind" = dontDistribute super."mastermind";
"matcher" = dontDistribute super."matcher";
"matchers" = dontDistribute super."matchers";
+ "math-functions" = doDistribute super."math-functions_0_1_7_0";
"mathblog" = dontDistribute super."mathblog";
"mathgenealogy" = dontDistribute super."mathgenealogy";
"mathista" = dontDistribute super."mathista";
@@ -5102,6 +5174,7 @@ self: super: {
"maybe-justify" = dontDistribute super."maybe-justify";
"maybench" = dontDistribute super."maybench";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5189,6 +5262,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5227,9 +5301,11 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_18";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5274,6 +5350,7 @@ self: super: {
"mono-traversable" = doDistribute super."mono-traversable_0_10_2";
"mono-traversable-instances" = dontDistribute super."mono-traversable-instances";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
+ "monoid-extras" = doDistribute super."monoid-extras_0_4_1_2";
"monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record";
"monoid-statistics" = dontDistribute super."monoid-statistics";
@@ -5389,6 +5466,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = doDistribute super."names-th_0_2_0_1";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-hmac" = dontDistribute super."nano-hmac";
"nano-md5" = dontDistribute super."nano-md5";
@@ -5412,6 +5490,7 @@ self: super: {
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
"neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2";
"needle" = dontDistribute super."needle";
"neet" = dontDistribute super."neet";
"nehe-tuts" = dontDistribute super."nehe-tuts";
@@ -5424,6 +5503,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = doDistribute super."nested-routes_7_0_0";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -5569,6 +5649,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -5674,6 +5755,7 @@ self: super: {
"pacman-memcache" = dontDistribute super."pacman-memcache";
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palindromes" = dontDistribute super."palindromes";
"pam" = dontDistribute super."pam";
@@ -5736,6 +5818,7 @@ self: super: {
"pasty" = dontDistribute super."pasty";
"patch-combinators" = dontDistribute super."patch-combinators";
"patch-image" = dontDistribute super."patch-image";
+ "path-io" = doDistribute super."path-io_1_1_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype";
@@ -5775,6 +5858,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permute" = dontDistribute super."permute";
"persist2er" = dontDistribute super."persist2er";
@@ -5836,6 +5920,7 @@ self: super: {
"piki" = dontDistribute super."piki";
"pinboard" = dontDistribute super."pinboard";
"pinch" = doDistribute super."pinch_0_2_0_1";
+ "pinchot" = doDistribute super."pinchot_0_18_0_2";
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes-async" = dontDistribute super."pipes-async";
@@ -5847,6 +5932,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -5874,6 +5960,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs7" = dontDistribute super."pkcs7";
"pkggraph" = dontDistribute super."pkggraph";
@@ -6121,6 +6208,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6135,6 +6226,7 @@ self: super: {
"quick-schema" = dontDistribute super."quick-schema";
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6153,6 +6245,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -6175,7 +6268,9 @@ self: super: {
"radix" = dontDistribute super."radix";
"rados-haskell" = dontDistribute super."rados-haskell";
"rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
+ "rainbow" = doDistribute super."rainbow_0_28_0_2";
"rainbow-tests" = dontDistribute super."rainbow-tests";
+ "rainbox" = doDistribute super."rainbox_0_18_0_8";
"rake" = dontDistribute super."rake";
"rakhana" = dontDistribute super."rakhana";
"ralist" = dontDistribute super."ralist";
@@ -6201,6 +6296,7 @@ self: super: {
"rascal" = dontDistribute super."rascal";
"rate-limit" = dontDistribute super."rate-limit";
"ratel" = doDistribute super."ratel_0_1_3";
+ "ratel-wai" = doDistribute super."ratel-wai_0_1_2";
"ratio-int" = dontDistribute super."ratio-int";
"raven-haskell" = dontDistribute super."raven-haskell";
"raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
@@ -6352,6 +6448,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -6376,9 +6473,11 @@ self: super: {
"restricted-workers" = dontDistribute super."restricted-workers";
"restyle" = dontDistribute super."restyle";
"resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = doDistribute super."rethinkdb_2_2_0_5";
"rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22";
"rethinkdb-model" = dontDistribute super."rethinkdb-model";
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = doDistribute super."retry_0_7_4";
"retryer" = dontDistribute super."retryer";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
@@ -6561,6 +6660,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -6572,6 +6672,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -6589,6 +6690,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_1";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_1";
@@ -6653,6 +6755,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -6757,6 +6860,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -6794,6 +6898,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
"smtlib2" = dontDistribute super."smtlib2";
@@ -6877,6 +6982,7 @@ self: super: {
"socketson" = dontDistribute super."socketson";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -6961,9 +7067,12 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
+ "stackage-curator" = doDistribute super."stackage-curator_0_14_0";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
"star-to-star" = dontDistribute super."star-to-star";
@@ -7065,6 +7174,7 @@ self: super: {
"stripe-core" = doDistribute super."stripe-core_2_0_3";
"stripe-haskell" = doDistribute super."stripe-haskell_2_0_3";
"stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_3";
+ "strive" = doDistribute super."strive_2_2_2";
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
@@ -7122,6 +7232,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7151,6 +7262,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7183,7 +7295,9 @@ self: super: {
"taglib" = dontDistribute super."taglib";
"taglib-api" = dontDistribute super."taglib-api";
"tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup" = doDistribute super."tagsoup_0_13_10";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7205,6 +7319,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tateti-tateti" = dontDistribute super."tateti-tateti";
"tau" = dontDistribute super."tau";
"tbox" = dontDistribute super."tbox";
@@ -7218,6 +7333,7 @@ self: super: {
"teams" = dontDistribute super."teams";
"teeth" = dontDistribute super."teeth";
"telegram" = dontDistribute super."telegram";
+ "telegram-api" = doDistribute super."telegram-api_0_4_3_0";
"teleport" = dontDistribute super."teleport";
"template-default" = dontDistribute super."template-default";
"template-haskell-util" = dontDistribute super."template-haskell-util";
@@ -7296,6 +7412,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7328,6 +7445,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_1";
@@ -7701,6 +7819,7 @@ self: super: {
"uuagd" = dontDistribute super."uuagd";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uulib" = dontDistribute super."uulib";
"uvector" = dontDistribute super."uvector";
@@ -7718,6 +7837,7 @@ self: super: {
"validate" = dontDistribute super."validate";
"validated-literals" = dontDistribute super."validated-literals";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -7816,6 +7936,7 @@ self: super: {
"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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
"wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
"wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
"wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
@@ -7837,6 +7958,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-transformers" = doDistribute super."wai-transformers_0_0_6";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -7904,6 +8026,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"witness" = dontDistribute super."witness";
"witty" = dontDistribute super."witty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-6.5.nix b/pkgs/development/haskell-modules/configuration-lts-6.5.nix
index ea5bde113e9..45ede8fa435 100644
--- a/pkgs/development/haskell-modules/configuration-lts-6.5.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-6.5.nix
@@ -126,6 +126,7 @@ self: super: {
"BitSyntax" = dontDistribute super."BitSyntax";
"Bitly" = dontDistribute super."Bitly";
"Blobs" = dontDistribute super."Blobs";
+ "BlogLiterately" = doDistribute super."BlogLiterately_0_8_3_1";
"BluePrintCSS" = dontDistribute super."BluePrintCSS";
"Blueprint" = dontDistribute super."Blueprint";
"Bookshelf" = dontDistribute super."Bookshelf";
@@ -186,6 +187,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -211,6 +213,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -397,6 +400,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -698,6 +702,7 @@ self: super: {
"OpenCLRaw" = dontDistribute super."OpenCLRaw";
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_2_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -725,6 +730,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -867,6 +873,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1281,6 +1288,7 @@ self: super: {
"atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
"atom" = dontDistribute super."atom";
"atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = doDistribute super."atom-conduit_0_3_1_1";
"atom-msp430" = dontDistribute super."atom-msp430";
"atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
"atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
@@ -1453,6 +1461,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_2_0";
"bindings-K8055" = dontDistribute super."bindings-K8055";
"bindings-apr" = dontDistribute super."bindings-apr";
"bindings-apr-util" = dontDistribute super."bindings-apr-util";
@@ -1558,6 +1567,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
@@ -1602,9 +1612,11 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_4_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson" = doDistribute super."bson_0_3_2_2";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-mapping" = dontDistribute super."bson-mapping";
@@ -1777,7 +1789,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -1807,6 +1821,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -1845,13 +1860,20 @@ self: super: {
"clanki" = dontDistribute super."clanki";
"clarifai" = dontDistribute super."clarifai";
"clash" = dontDistribute super."clash";
+ "clash-ghc" = doDistribute super."clash-ghc_0_6_19";
+ "clash-lib" = doDistribute super."clash-lib_0_6_17";
+ "clash-prelude" = doDistribute super."clash-prelude_0_10_9";
"clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6";
+ "clash-verilog" = doDistribute super."clash-verilog_0_6_6";
+ "clash-vhdl" = doDistribute super."clash-vhdl_0_6_13";
"classify" = dontDistribute super."classify";
"classy-parallel" = dontDistribute super."classy-parallel";
"classy-prelude" = doDistribute super."classy-prelude_0_12_8";
"classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_8";
"classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_8";
"clay" = doDistribute super."clay_0_10_1";
+ "clckwrks" = doDistribute super."clckwrks_0_23_16";
"clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
"clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
"clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
@@ -1864,6 +1886,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -1883,6 +1906,7 @@ self: super: {
"clustertools" = dontDistribute super."clustertools";
"clutterhs" = dontDistribute super."clutterhs";
"cmaes" = dontDistribute super."cmaes";
+ "cmark" = doDistribute super."cmark_0_5_2_1";
"cmath" = dontDistribute super."cmath";
"cmathml3" = dontDistribute super."cmathml3";
"cmd-item" = dontDistribute super."cmd-item";
@@ -2045,6 +2069,7 @@ self: super: {
"convertible-ascii" = dontDistribute super."convertible-ascii";
"convertible-text" = dontDistribute super."convertible-text";
"cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_2";
"coordinate" = dontDistribute super."coordinate";
"copilot" = dontDistribute super."copilot";
"copilot-c99" = dontDistribute super."copilot-c99";
@@ -2068,6 +2093,7 @@ self: super: {
"count" = dontDistribute super."count";
"countable" = dontDistribute super."countable";
"counter" = dontDistribute super."counter";
+ "courier" = doDistribute super."courier_0_1_1_2";
"court" = dontDistribute super."court";
"coverage" = dontDistribute super."coverage";
"cpio-conduit" = dontDistribute super."cpio-conduit";
@@ -2137,6 +2163,7 @@ self: super: {
"csp" = dontDistribute super."csp";
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2208,8 +2235,10 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
+ "data-default-instances-base" = doDistribute super."data-default-instances-base_0_1_0";
"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";
@@ -2219,6 +2248,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2266,6 +2296,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2452,6 +2483,7 @@ self: super: {
"distribution" = dontDistribute super."distribution";
"distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs";
"distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = doDistribute super."diversity_0_8_0_0";
"djembe" = dontDistribute super."djembe";
"djinn" = dontDistribute super."djinn";
"djinn-th" = dontDistribute super."djinn-th";
@@ -2635,6 +2667,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envparse" = dontDistribute super."envparse";
"epanet-haskell" = dontDistribute super."epanet-haskell";
@@ -2745,6 +2778,7 @@ self: super: {
"fast-tags" = dontDistribute super."fast-tags";
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
"fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = doDistribute super."fasta_0_10_2_0";
"fastbayes" = dontDistribute super."fastbayes";
"fastcgi" = dontDistribute super."fastcgi";
"fastedit" = dontDistribute super."fastedit";
@@ -2782,6 +2816,8 @@ self: super: {
"ffmpeg-light" = dontDistribute super."ffmpeg-light";
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -2891,6 +2927,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3016,6 +3053,7 @@ self: super: {
"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_10_5";
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
@@ -3024,6 +3062,7 @@ self: super: {
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
"generic-xml" = dontDistribute super."generic-xml";
+ "generics-sop" = doDistribute super."generics-sop_0_2_1_0";
"generics-sop-lens" = dontDistribute super."generics-sop-lens";
"genericserialize" = dontDistribute super."genericserialize";
"genetics" = dontDistribute super."genetics";
@@ -3035,6 +3074,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3045,6 +3088,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3072,6 +3116,8 @@ self: super: {
"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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1";
+ "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1";
"ghc-vis" = dontDistribute super."ghc-vis";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
@@ -3108,6 +3154,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -3345,6 +3392,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_1_0";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3535,6 +3583,7 @@ self: super: {
"happs-tutorial" = dontDistribute super."happs-tutorial";
"happstack" = dontDistribute super."happstack";
"happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-authenticate" = doDistribute super."happstack-authenticate_2_3_4_2";
"happstack-contrib" = dontDistribute super."happstack-contrib";
"happstack-data" = dontDistribute super."happstack-data";
"happstack-dlg" = dontDistribute super."happstack-dlg";
@@ -3704,6 +3753,7 @@ self: super: {
"hasloGUI" = dontDistribute super."hasloGUI";
"hasparql-client" = dontDistribute super."hasparql-client";
"haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_19_12";
"hasql-backend" = dontDistribute super."hasql-backend";
"hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative";
"hasql-pool" = dontDistribute super."hasql-pool";
@@ -3771,9 +3821,11 @@ self: super: {
"headergen" = dontDistribute super."headergen";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -3845,6 +3897,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -3872,6 +3925,7 @@ self: super: {
"himerge" = dontDistribute super."himerge";
"himg" = dontDistribute super."himg";
"himpy" = dontDistribute super."himpy";
+ "hindent" = doDistribute super."hindent_4_6_3";
"hindley-milner" = dontDistribute super."hindley-milner";
"hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
"hinduce-classifier" = dontDistribute super."hinduce-classifier";
@@ -4176,6 +4230,7 @@ self: super: {
"hspec-server" = dontDistribute super."hspec-server";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4216,6 +4271,7 @@ self: super: {
"hsx" = dontDistribute super."hsx";
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htags" = dontDistribute super."htags";
@@ -4257,6 +4313,7 @@ self: super: {
"http-kinder" = dontDistribute super."http-kinder";
"http-kit" = dontDistribute super."http-kit";
"http-listen" = dontDistribute super."http-listen";
+ "http-media" = doDistribute super."http-media_0_6_3";
"http-monad" = dontDistribute super."http-monad";
"http-proxy" = dontDistribute super."http-proxy";
"http-querystring" = dontDistribute super."http-querystring";
@@ -4266,6 +4323,7 @@ self: super: {
"http-test" = dontDistribute super."http-test";
"http-trace" = dontDistribute super."http-trace";
"http-wget" = dontDistribute super."http-wget";
+ "http2" = doDistribute super."http2_1_6_0";
"https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
"https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
"httpspec" = dontDistribute super."httpspec";
@@ -4278,6 +4336,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_1";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-gui" = dontDistribute super."hunit-gui";
@@ -4294,6 +4353,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hw-bits" = doDistribute super."hw-bits_0_0_0_6";
"hw-json" = doDistribute super."hw-json_0_0_0_2";
"hw-prim" = doDistribute super."hw-prim_0_0_0_10";
"hw-rankselect" = doDistribute super."hw-rankselect_0_0_0_2";
@@ -4423,6 +4483,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4463,6 +4524,7 @@ self: super: {
"interspersed" = dontDistribute super."interspersed";
"intricacy" = dontDistribute super."intricacy";
"intset" = dontDistribute super."intset";
+ "invariant" = doDistribute super."invariant_0_3_1";
"invertible" = dontDistribute super."invertible";
"invertible-syntax" = dontDistribute super."invertible-syntax";
"io-capture" = dontDistribute super."io-capture";
@@ -4587,6 +4649,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -4621,10 +4684,12 @@ self: super: {
"karakuri" = dontDistribute super."karakuri";
"karver" = dontDistribute super."karver";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -4666,6 +4731,7 @@ self: super: {
"kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
"korfu" = dontDistribute super."korfu";
"kqueue" = dontDistribute super."kqueue";
+ "kraken" = doDistribute super."kraken_0_0_2";
"krpc" = dontDistribute super."krpc";
"ks-test" = dontDistribute super."ks-test";
"ktx" = dontDistribute super."ktx";
@@ -4709,6 +4775,7 @@ self: super: {
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = doDistribute super."lambdacube-gl_0_5_0_5";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
"lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
@@ -4843,6 +4910,7 @@ self: super: {
"libxml-enumerator" = dontDistribute super."libxml-enumerator";
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -4949,6 +5017,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
"logging-effect" = dontDistribute super."logging-effect";
@@ -4983,6 +5052,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltl" = dontDistribute super."ltl";
"lua-bc" = dontDistribute super."lua-bc";
@@ -5032,6 +5102,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
"manatee-anything" = dontDistribute super."manatee-anything";
@@ -5050,6 +5121,7 @@ self: super: {
"manatee-terminal" = dontDistribute super."manatee-terminal";
"manatee-welcome" = dontDistribute super."manatee-welcome";
"mancala" = dontDistribute super."mancala";
+ "mandrill" = doDistribute super."mandrill_0_5_2_1";
"mandulia" = dontDistribute super."mandulia";
"mangopay" = dontDistribute super."mangopay";
"manifold-random" = dontDistribute super."manifold-random";
@@ -5072,6 +5144,7 @@ self: super: {
"mastermind" = dontDistribute super."mastermind";
"matcher" = dontDistribute super."matcher";
"matchers" = dontDistribute super."matchers";
+ "math-functions" = doDistribute super."math-functions_0_1_7_0";
"mathblog" = dontDistribute super."mathblog";
"mathgenealogy" = dontDistribute super."mathgenealogy";
"mathista" = dontDistribute super."mathista";
@@ -5086,6 +5159,7 @@ self: super: {
"maybe-justify" = dontDistribute super."maybe-justify";
"maybench" = dontDistribute super."maybench";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5173,6 +5247,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5211,9 +5286,11 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_18";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5258,6 +5335,7 @@ self: super: {
"mono-traversable" = doDistribute super."mono-traversable_0_10_2";
"mono-traversable-instances" = dontDistribute super."mono-traversable-instances";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
+ "monoid-extras" = doDistribute super."monoid-extras_0_4_1_2";
"monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record";
"monoid-statistics" = dontDistribute super."monoid-statistics";
@@ -5371,6 +5449,7 @@ self: super: {
"named-records" = dontDistribute super."named-records";
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-hmac" = dontDistribute super."nano-hmac";
"nano-md5" = dontDistribute super."nano-md5";
@@ -5394,6 +5473,7 @@ self: super: {
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
"neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2";
"needle" = dontDistribute super."needle";
"neet" = dontDistribute super."neet";
"nehe-tuts" = dontDistribute super."nehe-tuts";
@@ -5406,6 +5486,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = doDistribute super."nested-routes_7_0_0";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -5551,6 +5632,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -5656,6 +5738,7 @@ self: super: {
"pacman-memcache" = dontDistribute super."pacman-memcache";
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palindromes" = dontDistribute super."palindromes";
"pam" = dontDistribute super."pam";
@@ -5718,6 +5801,7 @@ self: super: {
"pasty" = dontDistribute super."pasty";
"patch-combinators" = dontDistribute super."patch-combinators";
"patch-image" = dontDistribute super."patch-image";
+ "path-io" = doDistribute super."path-io_1_1_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype";
@@ -5757,6 +5841,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permute" = dontDistribute super."permute";
"persist2er" = dontDistribute super."persist2er";
@@ -5816,6 +5901,7 @@ self: super: {
"piki" = dontDistribute super."piki";
"pinboard" = dontDistribute super."pinboard";
"pinch" = doDistribute super."pinch_0_2_0_1";
+ "pinchot" = doDistribute super."pinchot_0_18_0_2";
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes-async" = dontDistribute super."pipes-async";
@@ -5826,6 +5912,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -5853,6 +5940,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs7" = dontDistribute super."pkcs7";
"pkggraph" = dontDistribute super."pkggraph";
@@ -6100,6 +6188,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6114,6 +6206,7 @@ self: super: {
"quick-schema" = dontDistribute super."quick-schema";
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6130,6 +6223,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -6152,7 +6246,9 @@ self: super: {
"radix" = dontDistribute super."radix";
"rados-haskell" = dontDistribute super."rados-haskell";
"rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
+ "rainbow" = doDistribute super."rainbow_0_28_0_2";
"rainbow-tests" = dontDistribute super."rainbow-tests";
+ "rainbox" = doDistribute super."rainbox_0_18_0_8";
"rake" = dontDistribute super."rake";
"rakhana" = dontDistribute super."rakhana";
"ralist" = dontDistribute super."ralist";
@@ -6178,6 +6274,7 @@ self: super: {
"rascal" = dontDistribute super."rascal";
"rate-limit" = dontDistribute super."rate-limit";
"ratel" = doDistribute super."ratel_0_1_3";
+ "ratel-wai" = doDistribute super."ratel-wai_0_1_2";
"ratio-int" = dontDistribute super."ratio-int";
"raven-haskell" = dontDistribute super."raven-haskell";
"raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
@@ -6296,6 +6393,7 @@ self: super: {
"relacion" = dontDistribute super."relacion";
"relation" = dontDistribute super."relation";
"relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = doDistribute super."relational-query_0_8_2_3";
"relational-record-examples" = dontDistribute super."relational-record-examples";
"relative-date" = dontDistribute super."relative-date";
"relit" = dontDistribute super."relit";
@@ -6326,6 +6424,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -6350,9 +6449,11 @@ self: super: {
"restricted-workers" = dontDistribute super."restricted-workers";
"restyle" = dontDistribute super."restyle";
"resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = doDistribute super."rethinkdb_2_2_0_5";
"rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22";
"rethinkdb-model" = dontDistribute super."rethinkdb-model";
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = doDistribute super."retry_0_7_4";
"retryer" = dontDistribute super."retryer";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
@@ -6535,6 +6636,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -6546,6 +6648,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -6563,6 +6666,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_1";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_1";
@@ -6627,6 +6731,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -6730,6 +6835,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -6765,6 +6871,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
"smtlib2" = dontDistribute super."smtlib2";
@@ -6848,6 +6955,7 @@ self: super: {
"socketson" = dontDistribute super."socketson";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -6931,9 +7039,12 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
+ "stackage-curator" = doDistribute super."stackage-curator_0_14_0";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
"star-to-star" = dontDistribute super."star-to-star";
@@ -7034,6 +7145,7 @@ self: super: {
"stripe-core" = doDistribute super."stripe-core_2_0_3";
"stripe-haskell" = doDistribute super."stripe-haskell_2_0_3";
"stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_3";
+ "strive" = doDistribute super."strive_2_2_2";
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
@@ -7090,6 +7202,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7119,6 +7232,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7151,7 +7265,9 @@ self: super: {
"taglib" = dontDistribute super."taglib";
"taglib-api" = dontDistribute super."taglib-api";
"tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup" = doDistribute super."tagsoup_0_13_10";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7173,6 +7289,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tateti-tateti" = dontDistribute super."tateti-tateti";
"tau" = dontDistribute super."tau";
"tbox" = dontDistribute super."tbox";
@@ -7186,6 +7303,7 @@ self: super: {
"teams" = dontDistribute super."teams";
"teeth" = dontDistribute super."teeth";
"telegram" = dontDistribute super."telegram";
+ "telegram-api" = doDistribute super."telegram-api_0_4_3_0";
"teleport" = dontDistribute super."teleport";
"template-default" = dontDistribute super."template-default";
"template-haskell-util" = dontDistribute super."template-haskell-util";
@@ -7261,6 +7379,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7291,6 +7410,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_1";
@@ -7661,6 +7781,7 @@ self: super: {
"uuagd" = dontDistribute super."uuagd";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uulib" = dontDistribute super."uulib";
"uvector" = dontDistribute super."uvector";
@@ -7678,6 +7799,7 @@ self: super: {
"validate" = dontDistribute super."validate";
"validated-literals" = dontDistribute super."validated-literals";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -7776,6 +7898,7 @@ self: super: {
"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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
"wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
"wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
"wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
@@ -7797,6 +7920,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-transformers" = doDistribute super."wai-transformers_0_0_6";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -7863,6 +7987,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"witness" = dontDistribute super."witness";
"witty" = dontDistribute super."witty";
@@ -7932,6 +8057,7 @@ self: super: {
"xinput-conduit" = dontDistribute super."xinput-conduit";
"xkbcommon" = dontDistribute super."xkbcommon";
"xkcd" = dontDistribute super."xkcd";
+ "xlsx" = doDistribute super."xlsx_0_2_2_2";
"xlsx-templater" = dontDistribute super."xlsx-templater";
"xml-basic" = dontDistribute super."xml-basic";
"xml-catalog" = dontDistribute super."xml-catalog";
diff --git a/pkgs/development/haskell-modules/configuration-lts-6.6.nix b/pkgs/development/haskell-modules/configuration-lts-6.6.nix
index e90a3c848dc..01d91f7b3d8 100644
--- a/pkgs/development/haskell-modules/configuration-lts-6.6.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-6.6.nix
@@ -126,6 +126,7 @@ self: super: {
"BitSyntax" = dontDistribute super."BitSyntax";
"Bitly" = dontDistribute super."Bitly";
"Blobs" = dontDistribute super."Blobs";
+ "BlogLiterately" = doDistribute super."BlogLiterately_0_8_3_1";
"BluePrintCSS" = dontDistribute super."BluePrintCSS";
"Blueprint" = dontDistribute super."Blueprint";
"Bookshelf" = dontDistribute super."Bookshelf";
@@ -185,6 +186,7 @@ self: super: {
"Command" = dontDistribute super."Command";
"Commando" = dontDistribute super."Commando";
"ComonadSheet" = dontDistribute super."ComonadSheet";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
"ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
"Concurrential" = dontDistribute super."Concurrential";
"Condor" = dontDistribute super."Condor";
@@ -210,6 +212,7 @@ self: super: {
"Crypto" = dontDistribute super."Crypto";
"CurryDB" = dontDistribute super."CurryDB";
"DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_2";
"DBlimited" = dontDistribute super."DBlimited";
"DBus" = dontDistribute super."DBus";
"DCFL" = dontDistribute super."DCFL";
@@ -355,6 +358,7 @@ self: super: {
"GiST" = dontDistribute super."GiST";
"Gifcurry" = dontDistribute super."Gifcurry";
"GiveYouAHead" = dontDistribute super."GiveYouAHead";
+ "Glob" = doDistribute super."Glob_0_7_9";
"GlomeTrace" = dontDistribute super."GlomeTrace";
"GlomeVec" = dontDistribute super."GlomeVec";
"GlomeView" = dontDistribute super."GlomeView";
@@ -395,6 +399,7 @@ self: super: {
"HERA" = dontDistribute super."HERA";
"HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
"HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
"HGL" = dontDistribute super."HGL";
"HGamer3D" = dontDistribute super."HGamer3D";
"HGamer3D-API" = dontDistribute super."HGamer3D-API";
@@ -695,6 +700,7 @@ self: super: {
"OpenCLRaw" = dontDistribute super."OpenCLRaw";
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_2_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -722,6 +728,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
+ "PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@@ -864,6 +871,7 @@ self: super: {
"Stomp" = dontDistribute super."Stomp";
"Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
"Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
"StrappedTemplates" = dontDistribute super."StrappedTemplates";
"StrategyLib" = dontDistribute super."StrategyLib";
"Stream" = dontDistribute super."Stream";
@@ -1277,6 +1285,7 @@ self: super: {
"atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
"atom" = dontDistribute super."atom";
"atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = doDistribute super."atom-conduit_0_3_1_1";
"atom-msp430" = dontDistribute super."atom-msp430";
"atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
"atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
@@ -1435,6 +1444,7 @@ self: super: {
"binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
"binary-list" = doDistribute super."binary-list_1_1_1_1";
"binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-orphans" = doDistribute super."binary-orphans_0_1_5_0";
"binary-protocol" = dontDistribute super."binary-protocol";
"binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
"binary-state" = dontDistribute super."binary-state";
@@ -1448,6 +1458,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_2_0";
"bindings-K8055" = dontDistribute super."bindings-K8055";
"bindings-apr" = dontDistribute super."bindings-apr";
"bindings-apr-util" = dontDistribute super."bindings-apr-util";
@@ -1553,6 +1564,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
+ "blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
@@ -1597,9 +1609,11 @@ self: super: {
"brians-brain" = dontDistribute super."brians-brain";
"brick" = doDistribute super."brick_0_4_1";
"brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0";
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson" = doDistribute super."bson_0_3_2_2";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-mapping" = dontDistribute super."bson-mapping";
@@ -1772,7 +1786,9 @@ self: super: {
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
"cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-io-streams" = dontDistribute super."cereal-io-streams";
"cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
"cereal-text" = dontDistribute super."cereal-text";
"certificate" = dontDistribute super."certificate";
"cf" = dontDistribute super."cf";
@@ -1802,6 +1818,7 @@ self: super: {
"cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
"check-pvp" = dontDistribute super."check-pvp";
"checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
"chell-hunit" = dontDistribute super."chell-hunit";
"chesshs" = dontDistribute super."chesshs";
"chevalier-common" = dontDistribute super."chevalier-common";
@@ -1840,13 +1857,20 @@ self: super: {
"clanki" = dontDistribute super."clanki";
"clarifai" = dontDistribute super."clarifai";
"clash" = dontDistribute super."clash";
+ "clash-ghc" = doDistribute super."clash-ghc_0_6_19";
+ "clash-lib" = doDistribute super."clash-lib_0_6_17";
+ "clash-prelude" = doDistribute super."clash-prelude_0_10_9";
"clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6";
+ "clash-verilog" = doDistribute super."clash-verilog_0_6_6";
+ "clash-vhdl" = doDistribute super."clash-vhdl_0_6_13";
"classify" = dontDistribute super."classify";
"classy-parallel" = dontDistribute super."classy-parallel";
"classy-prelude" = doDistribute super."classy-prelude_0_12_8";
"classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_8";
"classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_8";
"clay" = doDistribute super."clay_0_10_1";
+ "clckwrks" = doDistribute super."clckwrks_0_23_16";
"clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
"clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
"clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
@@ -1859,6 +1883,7 @@ self: super: {
"clevercss" = dontDistribute super."clevercss";
"cli" = dontDistribute super."cli";
"click-clack" = dontDistribute super."click-clack";
+ "clientsession" = doDistribute super."clientsession_0_9_1_1";
"clifford" = dontDistribute super."clifford";
"clippard" = dontDistribute super."clippard";
"clipper" = dontDistribute super."clipper";
@@ -1878,6 +1903,7 @@ self: super: {
"clustertools" = dontDistribute super."clustertools";
"clutterhs" = dontDistribute super."clutterhs";
"cmaes" = dontDistribute super."cmaes";
+ "cmark" = doDistribute super."cmark_0_5_2_1";
"cmath" = dontDistribute super."cmath";
"cmathml3" = dontDistribute super."cmathml3";
"cmd-item" = dontDistribute super."cmd-item";
@@ -2040,6 +2066,7 @@ self: super: {
"convertible-ascii" = dontDistribute super."convertible-ascii";
"convertible-text" = dontDistribute super."convertible-text";
"cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_2";
"coordinate" = dontDistribute super."coordinate";
"copilot" = dontDistribute super."copilot";
"copilot-c99" = dontDistribute super."copilot-c99";
@@ -2063,6 +2090,7 @@ self: super: {
"count" = dontDistribute super."count";
"countable" = dontDistribute super."countable";
"counter" = dontDistribute super."counter";
+ "courier" = doDistribute super."courier_0_1_1_2";
"court" = dontDistribute super."court";
"coverage" = dontDistribute super."coverage";
"cpio-conduit" = dontDistribute super."cpio-conduit";
@@ -2132,6 +2160,7 @@ self: super: {
"csp" = dontDistribute super."csp";
"cspmchecker" = dontDistribute super."cspmchecker";
"css" = dontDistribute super."css";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
"csv-enumerator" = dontDistribute super."csv-enumerator";
"csv-nptools" = dontDistribute super."csv-nptools";
"csv-table" = dontDistribute super."csv-table";
@@ -2203,8 +2232,10 @@ self: super: {
"data-construction" = dontDistribute super."data-construction";
"data-cycle" = dontDistribute super."data-cycle";
"data-default" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
"data-default-extra" = dontDistribute super."data-default-extra";
"data-default-generics" = dontDistribute super."data-default-generics";
+ "data-default-instances-base" = doDistribute super."data-default-instances-base_0_1_0";
"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";
@@ -2214,6 +2245,7 @@ self: super: {
"data-dispersal" = dontDistribute super."data-dispersal";
"data-dword" = dontDistribute super."data-dword";
"data-easy" = dontDistribute super."data-easy";
+ "data-elf" = dontDistribute super."data-elf";
"data-embed" = dontDistribute super."data-embed";
"data-endian" = dontDistribute super."data-endian";
"data-extend-generic" = dontDistribute super."data-extend-generic";
@@ -2261,6 +2293,7 @@ self: super: {
"data-store" = dontDistribute super."data-store";
"data-stringmap" = dontDistribute super."data-stringmap";
"data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-sword" = dontDistribute super."data-sword";
"data-tensor" = dontDistribute super."data-tensor";
"data-textual" = dontDistribute super."data-textual";
"data-timeout" = dontDistribute super."data-timeout";
@@ -2447,6 +2480,7 @@ self: super: {
"distribution" = dontDistribute super."distribution";
"distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs";
"distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = doDistribute super."diversity_0_8_0_0";
"djembe" = dontDistribute super."djembe";
"djinn" = dontDistribute super."djinn";
"djinn-th" = dontDistribute super."djinn-th";
@@ -2630,6 +2664,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
+ "env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envparse" = dontDistribute super."envparse";
"epanet-haskell" = dontDistribute super."epanet-haskell";
@@ -2740,6 +2775,7 @@ self: super: {
"fast-tags" = dontDistribute super."fast-tags";
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
"fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = doDistribute super."fasta_0_10_2_0";
"fastbayes" = dontDistribute super."fastbayes";
"fastcgi" = dontDistribute super."fastcgi";
"fastedit" = dontDistribute super."fastedit";
@@ -2777,6 +2813,8 @@ self: super: {
"ffmpeg-light" = dontDistribute super."ffmpeg-light";
"ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
"fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
"fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
"fgl-visualize" = dontDistribute super."fgl-visualize";
"fibon" = dontDistribute super."fibon";
@@ -2886,6 +2924,7 @@ self: super: {
"formlets-hsp" = dontDistribute super."formlets-hsp";
"formura" = dontDistribute super."formura";
"forth-hll" = dontDistribute super."forth-hll";
+ "fortran-src" = dontDistribute super."fortran-src";
"foscam-directory" = dontDistribute super."foscam-directory";
"foscam-filename" = dontDistribute super."foscam-filename";
"foscam-sort" = dontDistribute super."foscam-sort";
@@ -3011,6 +3050,7 @@ self: super: {
"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_10_5";
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
@@ -3019,6 +3059,7 @@ self: super: {
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
"generic-xml" = dontDistribute super."generic-xml";
+ "generics-sop" = doDistribute super."generics-sop_0_2_1_0";
"generics-sop-lens" = dontDistribute super."generics-sop-lens";
"genericserialize" = dontDistribute super."genericserialize";
"genetics" = dontDistribute super."genetics";
@@ -3030,6 +3071,10 @@ self: super: {
"geniserver" = dontDistribute super."geniserver";
"genprog" = dontDistribute super."genprog";
"gentlemark" = dontDistribute super."gentlemark";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@@ -3040,6 +3085,7 @@ self: super: {
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
"geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3067,6 +3113,8 @@ self: super: {
"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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1";
+ "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1";
"ghc-vis" = dontDistribute super."ghc-vis";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
@@ -3103,6 +3151,7 @@ self: super: {
"gi-webkit" = dontDistribute super."gi-webkit";
"gi-webkit2" = dontDistribute super."gi-webkit2";
"gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "giak" = dontDistribute super."giak";
"gimlh" = dontDistribute super."gimlh";
"ginger" = dontDistribute super."ginger";
"ginsu" = dontDistribute super."ginsu";
@@ -3340,6 +3389,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_1_0";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3530,6 +3580,7 @@ self: super: {
"happs-tutorial" = dontDistribute super."happs-tutorial";
"happstack" = dontDistribute super."happstack";
"happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-authenticate" = doDistribute super."happstack-authenticate_2_3_4_2";
"happstack-contrib" = dontDistribute super."happstack-contrib";
"happstack-data" = dontDistribute super."happstack-data";
"happstack-dlg" = dontDistribute super."happstack-dlg";
@@ -3699,6 +3750,7 @@ self: super: {
"hasloGUI" = dontDistribute super."hasloGUI";
"hasparql-client" = dontDistribute super."hasparql-client";
"haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_19_12";
"hasql-backend" = dontDistribute super."hasql-backend";
"hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative";
"hasql-pool" = dontDistribute super."hasql-pool";
@@ -3766,9 +3818,11 @@ self: super: {
"headergen" = dontDistribute super."headergen";
"heapsort" = dontDistribute super."heapsort";
"hecc" = dontDistribute super."hecc";
+ "heckle" = dontDistribute super."heckle";
"hedis" = doDistribute super."hedis_0_6_10";
"hedis-config" = dontDistribute super."hedis-config";
"hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
"hedis-pile" = dontDistribute super."hedis-pile";
"hedis-simple" = dontDistribute super."hedis-simple";
"hedis-tags" = dontDistribute super."hedis-tags";
@@ -3840,6 +3894,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
+ "hgeos" = dontDistribute super."hgeos";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
"hgom" = dontDistribute super."hgom";
@@ -3866,6 +3921,7 @@ self: super: {
"himerge" = dontDistribute super."himerge";
"himg" = dontDistribute super."himg";
"himpy" = dontDistribute super."himpy";
+ "hindent" = doDistribute super."hindent_4_6_3";
"hindley-milner" = dontDistribute super."hindley-milner";
"hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
"hinduce-classifier" = dontDistribute super."hinduce-classifier";
@@ -4170,6 +4226,7 @@ self: super: {
"hspec-server" = dontDistribute super."hspec-server";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-slow" = dontDistribute super."hspec-slow";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"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";
@@ -4210,6 +4267,7 @@ self: super: {
"hsx" = dontDistribute super."hsx";
"hsx-xhtml" = dontDistribute super."hsx-xhtml";
"hsyscall" = dontDistribute super."hsyscall";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
"hsyslog-udp" = dontDistribute super."hsyslog-udp";
"hszephyr" = dontDistribute super."hszephyr";
"htags" = dontDistribute super."htags";
@@ -4250,6 +4308,7 @@ self: super: {
"http-kinder" = dontDistribute super."http-kinder";
"http-kit" = dontDistribute super."http-kit";
"http-listen" = dontDistribute super."http-listen";
+ "http-media" = doDistribute super."http-media_0_6_3";
"http-monad" = dontDistribute super."http-monad";
"http-proxy" = dontDistribute super."http-proxy";
"http-querystring" = dontDistribute super."http-querystring";
@@ -4259,6 +4318,7 @@ self: super: {
"http-test" = dontDistribute super."http-test";
"http-trace" = dontDistribute super."http-trace";
"http-wget" = dontDistribute super."http-wget";
+ "http2" = doDistribute super."http2_1_6_0";
"https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
"https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
"httpspec" = dontDistribute super."httpspec";
@@ -4271,6 +4331,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_1";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-gui" = dontDistribute super."hunit-gui";
@@ -4287,6 +4348,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hw-bits" = doDistribute super."hw-bits_0_0_0_6";
"hw-json" = doDistribute super."hw-json_0_0_0_2";
"hw-prim" = doDistribute super."hw-prim_0_0_0_10";
"hw-rankselect" = doDistribute super."hw-rankselect_0_0_0_2";
@@ -4416,6 +4478,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4456,6 +4519,7 @@ self: super: {
"interspersed" = dontDistribute super."interspersed";
"intricacy" = dontDistribute super."intricacy";
"intset" = dontDistribute super."intset";
+ "invariant" = doDistribute super."invariant_0_3_1";
"invertible" = dontDistribute super."invertible";
"invertible-syntax" = dontDistribute super."invertible-syntax";
"io-capture" = dontDistribute super."io-capture";
@@ -4580,6 +4644,7 @@ self: super: {
"json-qq" = dontDistribute super."json-qq";
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-generic" = dontDistribute super."json-rpc-generic";
"json-rpc-server" = dontDistribute super."json-rpc-server";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
@@ -4614,10 +4679,12 @@ self: super: {
"karakuri" = dontDistribute super."karakuri";
"karver" = dontDistribute super."karver";
"katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
"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";
+ "keenser" = dontDistribute super."keenser";
"keera-callbacks" = dontDistribute super."keera-callbacks";
"keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
"keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
@@ -4659,6 +4726,7 @@ self: super: {
"kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
"korfu" = dontDistribute super."korfu";
"kqueue" = dontDistribute super."kqueue";
+ "kraken" = doDistribute super."kraken_0_0_2";
"krpc" = dontDistribute super."krpc";
"ks-test" = dontDistribute super."ks-test";
"ktx" = dontDistribute super."ktx";
@@ -4702,6 +4770,7 @@ self: super: {
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = doDistribute super."lambdacube-gl_0_5_0_5";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
"lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
@@ -4836,6 +4905,7 @@ self: super: {
"libxml-enumerator" = dontDistribute super."libxml-enumerator";
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -4942,6 +5012,7 @@ self: super: {
"log" = dontDistribute super."log";
"log-effect" = dontDistribute super."log-effect";
"log2json" = dontDistribute super."log2json";
+ "logentries" = dontDistribute super."logentries";
"logger" = dontDistribute super."logger";
"logging" = dontDistribute super."logging";
"logging-effect" = dontDistribute super."logging-effect";
@@ -4976,6 +5047,7 @@ self: super: {
"lscabal" = dontDistribute super."lscabal";
"lss" = dontDistribute super."lss";
"lsystem" = dontDistribute super."lsystem";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
"ltiv1p1" = dontDistribute super."ltiv1p1";
"ltl" = dontDistribute super."ltl";
"lua-bc" = dontDistribute super."lua-bc";
@@ -5025,6 +5097,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "makefile" = dontDistribute super."makefile";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
"manatee-anything" = dontDistribute super."manatee-anything";
@@ -5043,6 +5116,7 @@ self: super: {
"manatee-terminal" = dontDistribute super."manatee-terminal";
"manatee-welcome" = dontDistribute super."manatee-welcome";
"mancala" = dontDistribute super."mancala";
+ "mandrill" = doDistribute super."mandrill_0_5_2_1";
"mandulia" = dontDistribute super."mandulia";
"mangopay" = dontDistribute super."mangopay";
"manifold-random" = dontDistribute super."manifold-random";
@@ -5065,6 +5139,7 @@ self: super: {
"mastermind" = dontDistribute super."mastermind";
"matcher" = dontDistribute super."matcher";
"matchers" = dontDistribute super."matchers";
+ "math-functions" = doDistribute super."math-functions_0_1_7_0";
"mathblog" = dontDistribute super."mathblog";
"mathgenealogy" = dontDistribute super."mathgenealogy";
"mathista" = dontDistribute super."mathista";
@@ -5079,6 +5154,7 @@ self: super: {
"maybe-justify" = dontDistribute super."maybe-justify";
"maybench" = dontDistribute super."maybench";
"mbox-tools" = dontDistribute super."mbox-tools";
+ "mcm" = dontDistribute super."mcm";
"mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
"mcmc-samplers" = dontDistribute super."mcmc-samplers";
"mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
@@ -5128,6 +5204,8 @@ self: super: {
"microbench" = dontDistribute super."microbench";
"microformats2-types" = dontDistribute super."microformats2-types";
"microlens-each" = dontDistribute super."microlens-each";
+ "microlens-mtl" = doDistribute super."microlens-mtl_0_1_8_0";
+ "microlens-platform" = doDistribute super."microlens-platform_0_3_2_0";
"micrologger" = dontDistribute super."micrologger";
"microtimer" = dontDistribute super."microtimer";
"mida" = dontDistribute super."mida";
@@ -5162,6 +5240,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"missing-py2" = dontDistribute super."missing-py2";
"mix-arrows" = dontDistribute super."mix-arrows";
@@ -5200,9 +5279,11 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
"monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_18";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@@ -5247,6 +5328,7 @@ self: super: {
"mono-traversable" = doDistribute super."mono-traversable_0_10_2";
"mono-traversable-instances" = dontDistribute super."mono-traversable-instances";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
+ "monoid-extras" = doDistribute super."monoid-extras_0_4_1_2";
"monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record";
"monoid-statistics" = dontDistribute super."monoid-statistics";
@@ -5360,6 +5442,7 @@ self: super: {
"named-records" = dontDistribute super."named-records";
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
+ "namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-hmac" = dontDistribute super."nano-hmac";
"nano-md5" = dontDistribute super."nano-md5";
@@ -5383,6 +5466,7 @@ self: super: {
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
"neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2";
"needle" = dontDistribute super."needle";
"neet" = dontDistribute super."neet";
"nehe-tuts" = dontDistribute super."nehe-tuts";
@@ -5395,6 +5479,7 @@ self: super: {
"nero-wai" = dontDistribute super."nero-wai";
"nero-warp" = dontDistribute super."nero-warp";
"nested-routes" = doDistribute super."nested-routes_7_0_0";
+ "nested-sequence" = dontDistribute super."nested-sequence";
"nested-sets" = dontDistribute super."nested-sets";
"nestedmap" = dontDistribute super."nestedmap";
"net-concurrent" = dontDistribute super."net-concurrent";
@@ -5540,6 +5625,7 @@ self: super: {
"oden-go-packages" = dontDistribute super."oden-go-packages";
"oeis" = dontDistribute super."oeis";
"off-simple" = dontDistribute super."off-simple";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
"ohloh-hs" = dontDistribute super."ohloh-hs";
"oi" = dontDistribute super."oi";
"oidc-client" = dontDistribute super."oidc-client";
@@ -5644,6 +5730,7 @@ self: super: {
"pacman-memcache" = dontDistribute super."pacman-memcache";
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
+ "pagination" = dontDistribute super."pagination";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palindromes" = dontDistribute super."palindromes";
"pam" = dontDistribute super."pam";
@@ -5706,6 +5793,7 @@ self: super: {
"pasty" = dontDistribute super."pasty";
"patch-combinators" = dontDistribute super."patch-combinators";
"patch-image" = dontDistribute super."patch-image";
+ "path-io" = doDistribute super."path-io_1_1_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype";
@@ -5745,6 +5833,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permute" = dontDistribute super."permute";
"persist2er" = dontDistribute super."persist2er";
@@ -5804,6 +5893,7 @@ self: super: {
"piki" = dontDistribute super."piki";
"pinboard" = dontDistribute super."pinboard";
"pinch" = doDistribute super."pinch_0_2_0_1";
+ "pinchot" = doDistribute super."pinchot_0_18_0_2";
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes-async" = dontDistribute super."pipes-async";
@@ -5814,6 +5904,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -5841,6 +5932,7 @@ self: super: {
"pit" = dontDistribute super."pit";
"pitchtrack" = dontDistribute super."pitchtrack";
"pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
"pkcs1" = dontDistribute super."pkcs1";
"pkcs7" = dontDistribute super."pkcs7";
"pkggraph" = dontDistribute super."pkggraph";
@@ -6086,6 +6178,10 @@ self: super: {
"qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
"quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities";
@@ -6100,6 +6196,7 @@ self: super: {
"quick-schema" = dontDistribute super."quick-schema";
"quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
"quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
@@ -6116,6 +6213,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@@ -6138,7 +6236,9 @@ self: super: {
"radix" = dontDistribute super."radix";
"rados-haskell" = dontDistribute super."rados-haskell";
"rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
+ "rainbow" = doDistribute super."rainbow_0_28_0_2";
"rainbow-tests" = dontDistribute super."rainbow-tests";
+ "rainbox" = doDistribute super."rainbox_0_18_0_8";
"rake" = dontDistribute super."rake";
"rakhana" = dontDistribute super."rakhana";
"ralist" = dontDistribute super."ralist";
@@ -6164,6 +6264,7 @@ self: super: {
"rascal" = dontDistribute super."rascal";
"rate-limit" = dontDistribute super."rate-limit";
"ratel" = doDistribute super."ratel_0_1_3";
+ "ratel-wai" = doDistribute super."ratel-wai_0_1_2";
"ratio-int" = dontDistribute super."ratio-int";
"raven-haskell" = dontDistribute super."raven-haskell";
"raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
@@ -6282,6 +6383,7 @@ self: super: {
"relacion" = dontDistribute super."relacion";
"relation" = dontDistribute super."relation";
"relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = doDistribute super."relational-query_0_8_2_3";
"relational-record-examples" = dontDistribute super."relational-record-examples";
"relative-date" = dontDistribute super."relative-date";
"relit" = dontDistribute super."relit";
@@ -6312,6 +6414,7 @@ self: super: {
"repa-v4l2" = dontDistribute super."repa-v4l2";
"repl" = dontDistribute super."repl";
"repl-toolkit" = dontDistribute super."repl-toolkit";
+ "replicant" = dontDistribute super."replicant";
"repline" = dontDistribute super."repline";
"repo-based-blog" = dontDistribute super."repo-based-blog";
"repr" = dontDistribute super."repr";
@@ -6336,9 +6439,11 @@ self: super: {
"restricted-workers" = dontDistribute super."restricted-workers";
"restyle" = dontDistribute super."restyle";
"resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = doDistribute super."rethinkdb_2_2_0_5";
"rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22";
"rethinkdb-model" = dontDistribute super."rethinkdb-model";
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = doDistribute super."retry_0_7_4";
"retryer" = dontDistribute super."retryer";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
@@ -6494,6 +6599,7 @@ self: super: {
"sci-ratio" = dontDistribute super."sci-ratio";
"science-constants" = dontDistribute super."science-constants";
"science-constants-dimensional" = dontDistribute super."science-constants-dimensional";
+ "scientific" = doDistribute super."scientific_0_3_4_8";
"scion" = dontDistribute super."scion";
"scion-browser" = dontDistribute super."scion-browser";
"scons2dot" = dontDistribute super."scons2dot";
@@ -6520,6 +6626,7 @@ self: super: {
"scyther-proof" = dontDistribute super."scyther-proof";
"sde-solver" = dontDistribute super."sde-solver";
"sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_2_1_1";
"sdl2-cairo" = dontDistribute super."sdl2-cairo";
"sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
"sdl2-compositor" = dontDistribute super."sdl2-compositor";
@@ -6531,6 +6638,7 @@ self: super: {
"seal-module" = dontDistribute super."seal-module";
"search" = dontDistribute super."search";
"sec" = dontDistribute super."sec";
+ "secd" = dontDistribute super."secd";
"secdh" = dontDistribute super."secdh";
"seclib" = dontDistribute super."seclib";
"second-transfer" = dontDistribute super."second-transfer";
@@ -6548,6 +6656,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoids" = doDistribute super."semigroupoids_5_0_1";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
"semigroups" = doDistribute super."semigroups_0_18_1";
@@ -6611,6 +6720,7 @@ self: super: {
"sext" = dontDistribute super."sext";
"sfml-audio" = dontDistribute super."sfml-audio";
"sfmt" = dontDistribute super."sfmt";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
"sgd" = dontDistribute super."sgd";
"sgf" = dontDistribute super."sgf";
"sgrep" = dontDistribute super."sgrep";
@@ -6713,6 +6823,7 @@ self: super: {
"singleton-nats" = dontDistribute super."singleton-nats";
"singletons" = doDistribute super."singletons_2_0_1";
"sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
"sirkel" = dontDistribute super."sirkel";
"sitemap" = dontDistribute super."sitemap";
"size-based" = dontDistribute super."size-based";
@@ -6748,6 +6859,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
+ "smerdyakov" = dontDistribute super."smerdyakov";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
"smtlib2" = dontDistribute super."smtlib2";
@@ -6831,6 +6943,7 @@ self: super: {
"socketson" = dontDistribute super."socketson";
"soegtk" = dontDistribute super."soegtk";
"solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
"solr" = dontDistribute super."solr";
"sonic-visualiser" = dontDistribute super."sonic-visualiser";
"sophia" = dontDistribute super."sophia";
@@ -6914,9 +7027,12 @@ self: super: {
"stable-marriage" = dontDistribute super."stable-marriage";
"stable-memo" = dontDistribute super."stable-memo";
"stable-tree" = dontDistribute super."stable-tree";
+ "stache" = dontDistribute super."stache";
"stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
"stack-prism" = dontDistribute super."stack-prism";
"stack-run" = dontDistribute super."stack-run";
+ "stackage-curator" = doDistribute super."stackage-curator_0_14_0";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
"standalone-haddock" = dontDistribute super."standalone-haddock";
"star-to-star" = dontDistribute super."star-to-star";
@@ -7017,6 +7133,7 @@ self: super: {
"stripe-core" = doDistribute super."stripe-core_2_0_3";
"stripe-haskell" = doDistribute super."stripe-haskell_2_0_3";
"stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_3";
+ "strive" = doDistribute super."strive_2_2_2";
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
@@ -7073,6 +7190,7 @@ self: super: {
"symengine" = dontDistribute super."symengine";
"symengine-hs" = dontDistribute super."symengine-hs";
"sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
"synchronous-channels" = dontDistribute super."synchronous-channels";
"syncthing-hs" = dontDistribute super."syncthing-hs";
"synt" = dontDistribute super."synt";
@@ -7102,6 +7220,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";
@@ -7134,7 +7253,9 @@ self: super: {
"taglib" = dontDistribute super."taglib";
"taglib-api" = dontDistribute super."taglib-api";
"tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup" = doDistribute super."tagsoup_0_13_10";
"tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
"tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
"tai64" = dontDistribute super."tai64";
"tak" = dontDistribute super."tak";
@@ -7156,6 +7277,7 @@ self: super: {
"tasty-laws" = dontDistribute super."tasty-laws";
"tasty-lens" = dontDistribute super."tasty-lens";
"tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
"tateti-tateti" = dontDistribute super."tateti-tateti";
"tau" = dontDistribute super."tau";
"tbox" = dontDistribute super."tbox";
@@ -7169,6 +7291,7 @@ self: super: {
"teams" = dontDistribute super."teams";
"teeth" = dontDistribute super."teeth";
"telegram" = dontDistribute super."telegram";
+ "telegram-api" = doDistribute super."telegram-api_0_4_3_0";
"teleport" = dontDistribute super."teleport";
"template-default" = dontDistribute super."template-default";
"template-haskell-util" = dontDistribute super."template-haskell-util";
@@ -7244,6 +7367,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7274,6 +7398,7 @@ self: super: {
"th-utilities" = dontDistribute super."th-utilities";
"themoviedb" = dontDistribute super."themoviedb";
"themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
"theoremquest" = dontDistribute super."theoremquest";
"theoremquest-client" = dontDistribute super."theoremquest-client";
"these" = doDistribute super."these_0_6_2_1";
@@ -7643,6 +7768,7 @@ self: super: {
"uuagd" = dontDistribute super."uuagd";
"uuid-aeson" = dontDistribute super."uuid-aeson";
"uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
"uuid-quasi" = dontDistribute super."uuid-quasi";
"uulib" = dontDistribute super."uulib";
"uvector" = dontDistribute super."uvector";
@@ -7660,6 +7786,7 @@ self: super: {
"validate" = dontDistribute super."validate";
"validated-literals" = dontDistribute super."validated-literals";
"validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
"value-supply" = dontDistribute super."value-supply";
"vampire" = dontDistribute super."vampire";
"var" = dontDistribute super."var";
@@ -7758,6 +7885,7 @@ self: super: {
"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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
"wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
"wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
"wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
@@ -7779,6 +7907,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-transformers" = doDistribute super."wai-transformers_0_0_6";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -7844,6 +7973,7 @@ self: super: {
"windowslive" = dontDistribute super."windowslive";
"winerror" = dontDistribute super."winerror";
"winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
"wiring" = dontDistribute super."wiring";
"witness" = dontDistribute super."witness";
"witty" = dontDistribute super."witty";
@@ -7913,6 +8043,7 @@ self: super: {
"xinput-conduit" = dontDistribute super."xinput-conduit";
"xkbcommon" = dontDistribute super."xkbcommon";
"xkcd" = dontDistribute super."xkcd";
+ "xlsx" = doDistribute super."xlsx_0_2_2_2";
"xlsx-templater" = dontDistribute super."xlsx-templater";
"xml-basic" = dontDistribute super."xml-basic";
"xml-catalog" = dontDistribute super."xml-catalog";
diff --git a/pkgs/development/haskell-modules/configuration-lts-6.7.nix b/pkgs/development/haskell-modules/configuration-lts-6.7.nix
new file mode 100644
index 00000000000..fc4aab41a65
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-6.7.nix
@@ -0,0 +1,8221 @@
+{ 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-6.7 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";
+ "AFSM" = dontDistribute super."AFSM";
+ "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" = doDistribute super."Agda_2_5_1";
+ "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";
+ "BiGUL" = dontDistribute super."BiGUL";
+ "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";
+ "BlogLiterately" = doDistribute super."BlogLiterately_0_8_3_1";
+ "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";
+ "Chart" = doDistribute super."Chart_1_6";
+ "Chart-cairo" = doDistribute super."Chart-cairo_1_6";
+ "Chart-diagrams" = doDistribute super."Chart-diagrams_1_6";
+ "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";
+ "Concurrent-Cache" = dontDistribute super."Concurrent-Cache";
+ "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";
+ "DAV" = doDistribute super."DAV_1_2";
+ "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";
+ "Delta-Lambda" = dontDistribute super."Delta-Lambda";
+ "DescriptiveKeys" = dontDistribute super."DescriptiveKeys";
+ "Dflow" = dontDistribute super."Dflow";
+ "Diff" = doDistribute super."Diff_0_3_2";
+ "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";
+ "EdisonAPI" = doDistribute super."EdisonAPI_1_3";
+ "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";
+ "Glob" = doDistribute super."Glob_0_7_9";
+ "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";
+ "H" = doDistribute super."H_0_8_0_0";
+ "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";
+ "HDRUtils" = dontDistribute super."HDRUtils";
+ "HERA" = dontDistribute super."HERA";
+ "HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
+ "HFuse" = dontDistribute super."HFuse";
+ "HGE2D" = dontDistribute super."HGE2D";
+ "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";
+ "HPhone" = dontDistribute super."HPhone";
+ "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";
+ "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";
+ "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";
+ "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra";
+ "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";
+ "LambdaDB" = dontDistribute super."LambdaDB";
+ "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";
+ "LibZip" = dontDistribute super."LibZip";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "ListLike" = doDistribute super."ListLike_4_2_1";
+ "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";
+ "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";
+ "MissingH" = doDistribute super."MissingH_1_3_0_2";
+ "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";
+ "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";
+ "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";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_2_0_0";
+ "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";
+ "PathTree" = dontDistribute super."PathTree";
+ "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" = doDistribute super."PortMidi_0_1_6_0";
+ "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";
+ "QLearn" = dontDistribute super."QLearn";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "Quelea" = dontDistribute super."Quelea";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "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";
+ "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";
+ "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";
+ "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";
+ "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8";
+ "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" = doDistribute super."Win32_2_3_1_0";
+ "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";
+ "abnf" = dontDistribute super."abnf";
+ "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-typelits" = dontDistribute super."accelerate-typelits";
+ "accelerate-utility" = dontDistribute super."accelerate-utility";
+ "accentuateus" = dontDistribute super."accentuateus";
+ "access-time" = dontDistribute super."access-time";
+ "accuerr" = dontDistribute super."accuerr";
+ "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-applicative" = dontDistribute super."aeson-applicative";
+ "aeson-bson" = dontDistribute super."aeson-bson";
+ "aeson-coerce" = dontDistribute super."aeson-coerce";
+ "aeson-diff" = dontDistribute super."aeson-diff";
+ "aeson-filthy" = dontDistribute super."aeson-filthy";
+ "aeson-flatten" = dontDistribute super."aeson-flatten";
+ "aeson-iproute" = dontDistribute super."aeson-iproute";
+ "aeson-json-ast" = dontDistribute super."aeson-json-ast";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
+ "aeson-prefix" = dontDistribute super."aeson-prefix";
+ "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";
+ "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_5_0";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-branches" = dontDistribute super."aivika-branches";
+ "aivika-distributed" = dontDistribute super."aivika-distributed";
+ "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-lattice" = dontDistribute super."aivika-lattice";
+ "aivika-transformers" = dontDistribute super."aivika-transformers";
+ "ajhc" = dontDistribute super."ajhc";
+ "al" = dontDistribute super."al";
+ "alarmclock" = doDistribute super."alarmclock_0_2_0_9";
+ "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-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling";
+ "amazonka-discovery" = dontDistribute super."amazonka-discovery";
+ "ampersand" = dontDistribute super."ampersand";
+ "amqp" = doDistribute super."amqp_0_13_1";
+ "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";
+ "annah" = dontDistribute super."annah";
+ "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-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";
+ "applicative-splice" = dontDistribute super."applicative-splice";
+ "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" = dontDistribute super."argon";
+ "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";
+ "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-flatten" = dontDistribute super."ascii-flatten";
+ "ascii-table" = dontDistribute super."ascii-table";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "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";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = doDistribute super."atom-conduit_0_3_1_1";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
+ "atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
+ "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";
+ "aur-api" = dontDistribute super."aur-api";
+ "authenticate-kerberos" = dontDistribute super."authenticate-kerberos";
+ "authenticate-ldap" = dontDistribute super."authenticate-ldap";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "automitive-cse" = dontDistribute super."automitive-cse";
+ "automotive-cse" = dontDistribute super."automotive-cse";
+ "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";
+ "avwx" = dontDistribute super."avwx";
+ "awesome-prelude" = dontDistribute super."awesome-prelude";
+ "awesomium" = dontDistribute super."awesomium";
+ "awesomium-glut" = dontDistribute super."awesomium-glut";
+ "awesomium-raw" = dontDistribute super."awesomium-raw";
+ "aws" = doDistribute super."aws_0_13_2";
+ "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-noprelude" = doDistribute super."base-noprelude_4_8_2_0";
+ "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";
+ "bcrypt" = doDistribute super."bcrypt_0_0_8";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beam" = dontDistribute super."beam";
+ "beam-th" = dontDistribute super."beam-th";
+ "beamable" = dontDistribute super."beamable";
+ "bearriver" = dontDistribute super."bearriver";
+ "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";
+ "bifunctors" = doDistribute super."bifunctors_5_2";
+ "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-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-orphans" = doDistribute super."binary-orphans_0_1_5_0";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "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_2_0";
+ "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-libzip" = dontDistribute super."bindings-libzip";
+ "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";
+ "biophd" = doDistribute super."biophd_0_0_4";
+ "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-payment-channel" = dontDistribute super."bitcoin-payment-channel";
+ "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" = doDistribute super."bits_0_4";
+ "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";
+ "blockhash" = dontDistribute super."blockhash";
+ "blocking-transactions" = dontDistribute super."blocking-transactions";
+ "blogination" = dontDistribute super."blogination";
+ "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
+ "bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
+ "blosum" = dontDistribute super."blosum";
+ "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";
+ "bmp" = doDistribute super."bmp_1_2_5_2";
+ "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";
+ "boring-window-switcher" = dontDistribute super."boring-window-switcher";
+ "bot" = dontDistribute super."bot";
+ "botpp" = dontDistribute super."botpp";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "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";
+ "brick" = doDistribute super."brick_0_4_1";
+ "brillig" = dontDistribute super."brillig";
+ "broccoli" = dontDistribute super."broccoli";
+ "broker-haskell" = dontDistribute super."broker-haskell";
+ "bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson" = doDistribute super."bson_0_3_2_2";
+ "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-builder" = doDistribute super."bytestring-builder_0_10_6_0_0";
+ "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";
+ "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";
+ "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-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-helper" = doDistribute super."cabal-helper_0_6_3_1";
+ "cabal-info" = dontDistribute super."cabal-info";
+ "cabal-install" = doDistribute super."cabal-install_1_22_9_0";
+ "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";
+ "cache" = dontDistribute super."cache";
+ "cached-io" = dontDistribute super."cached-io";
+ "cached-traversable" = dontDistribute super."cached-traversable";
+ "cacophony" = doDistribute super."cacophony_0_6_0";
+ "caf" = dontDistribute super."caf";
+ "cafeteria-prelude" = dontDistribute super."cafeteria-prelude";
+ "caffegraph" = dontDistribute super."caffegraph";
+ "cairo" = doDistribute super."cairo_0_13_1_1";
+ "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";
+ "calendar-recycling" = dontDistribute super."calendar-recycling";
+ "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_16_0_0";
+ "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-megaparsec" = dontDistribute super."cassava-megaparsec";
+ "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-printf" = dontDistribute super."category-printf";
+ "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-io-streams" = dontDistribute super."cereal-io-streams";
+ "cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-streams" = dontDistribute super."cereal-streams";
+ "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-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-terminal" = dontDistribute super."cheapskate-terminal";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_4";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chorale" = dontDistribute super."chorale";
+ "chorale-geo" = dontDistribute super."chorale-geo";
+ "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";
+ "chunked-data" = doDistribute super."chunked-data_0_2_0";
+ "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";
+ "circlehs" = dontDistribute super."circlehs";
+ "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-ghc" = doDistribute super."clash-ghc_0_6_19";
+ "clash-lib" = doDistribute super."clash-lib_0_6_17";
+ "clash-prelude" = doDistribute super."clash-prelude_0_10_9";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6";
+ "clash-verilog" = doDistribute super."clash-verilog_0_6_6";
+ "clash-vhdl" = doDistribute super."clash-vhdl_0_6_13";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "classy-prelude" = doDistribute super."classy-prelude_0_12_8";
+ "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_8";
+ "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_8";
+ "clay" = doDistribute super."clay_0_10_1";
+ "clckwrks" = doDistribute super."clckwrks_0_23_16";
+ "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";
+ "cloben" = dontDistribute super."cloben";
+ "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";
+ "cluss" = dontDistribute super."cluss";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmark" = doDistribute super."cmark_0_5_2_1";
+ "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";
+ "cmph" = dontDistribute super."cmph";
+ "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_10";
+ "codo-notation" = dontDistribute super."codo-notation";
+ "cofunctor" = dontDistribute super."cofunctor";
+ "cognimeta-utils" = dontDistribute super."cognimeta-utils";
+ "coin" = dontDistribute super."coin";
+ "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";
+ "colonnade" = dontDistribute super."colonnade";
+ "color-counter" = dontDistribute super."color-counter";
+ "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" = doDistribute super."comonad_4_2_7_2";
+ "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";
+ "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-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-merge" = dontDistribute super."conduit-merge";
+ "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";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
+ "configifier" = dontDistribute super."configifier";
+ "configuration" = dontDistribute super."configuration";
+ "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-builder" = dontDistribute super."container-builder";
+ "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";
+ "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-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";
+ "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";
+ "courier" = doDistribute super."courier_0_1_1_2";
+ "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";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "cql" = doDistribute super."cql_3_0_7";
+ "cql-io" = doDistribute super."cql-io_0_15_2";
+ "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-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-multihash" = dontDistribute super."crypto-multihash";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
+ "cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
+ "cryptol" = doDistribute super."cryptol_2_3_0";
+ "cryptonite" = doDistribute super."cryptonite_0_15";
+ "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";
+ "css-text" = doDistribute super."css-text_0_1_2_1";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-table" = dontDistribute super."csv-table";
+ "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";
+ "d3d11binding" = dontDistribute super."d3d11binding";
+ "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" = doDistribute super."data-default_0_5_3";
+ "data-default-class" = doDistribute super."data-default-class_0_0_1";
+ "data-default-extra" = dontDistribute super."data-default-extra";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-default-instances-base" = doDistribute super."data-default-instances-base_0_1_0";
+ "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-elf" = dontDistribute super."data-elf";
+ "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-function-meld" = dontDistribute super."data-function-meld";
+ "data-function-tacit" = dontDistribute super."data-function-tacit";
+ "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-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-sword" = dontDistribute super."data-sword";
+ "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";
+ "datadog" = dontDistribute super."datadog";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "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";
+ "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";
+ "ddate" = dontDistribute super."ddate";
+ "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-babel" = dontDistribute super."ddc-core-babel";
+ "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" = doDistribute super."debian-build_0_9_2_0";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "debug-time" = dontDistribute super."debug-time";
+ "decepticons" = dontDistribute super."decepticons";
+ "decimal-arithmetic" = dontDistribute super."decimal-arithmetic";
+ "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-generics" = doDistribute super."deepseq-generics_0_1_1_2";
+ "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";
+ "delude" = dontDistribute super."delude";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dense" = dontDistribute super."dense";
+ "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" = doDistribute super."deriving-compat_0_2";
+ "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-svg" = doDistribute super."diagrams-svg_1_3_1_10";
+ "diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "diagrams-wx" = dontDistribute super."diagrams-wx";
+ "dialog" = dontDistribute super."dialog";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictionary-sharing" = dontDistribute super."dictionary-sharing";
+ "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";
+ "digits" = doDistribute super."digits_0_2";
+ "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";
+ "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-process-azure" = dontDistribute super."distributed-process-azure";
+ "distributed-process-ekg" = dontDistribute super."distributed-process-ekg";
+ "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-zookeeper" = dontDistribute super."distributed-process-zookeeper";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "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-configurator" = dontDistribute super."doctest-discover-configurator";
+ "doctest-prop" = dontDistribute super."doctest-prop";
+ "docvim" = dontDistribute super."docvim";
+ "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";
+ "dot-linker" = dontDistribute super."dot-linker";
+ "dot2graphml" = dontDistribute super."dot2graphml";
+ "dotenv" = doDistribute super."dotenv_0_3_0_1";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "double-metaphone" = dontDistribute super."double-metaphone";
+ "dove" = dontDistribute super."dove";
+ "dow" = dontDistribute super."dow";
+ "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" = doDistribute super."dpor_0_1_0_1";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe";
+ "drmaa" = dontDistribute super."drmaa";
+ "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";
+ "dunai" = dontDistribute super."dunai";
+ "duplo" = dontDistribute super."duplo";
+ "dustme" = dontDistribute super."dustme";
+ "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";
+ "ec2-unikernel" = dontDistribute super."ec2-unikernel";
+ "eccrypto" = dontDistribute super."eccrypto";
+ "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";
+ "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-export" = dontDistribute super."elm-export";
+ "elm-get" = dontDistribute super."elm-get";
+ "elm-hybrid" = dontDistribute super."elm-hybrid";
+ "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-validate-json" = dontDistribute super."email-validate-json";
+ "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";
+ "enchant" = dontDistribute super."enchant";
+ "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-locale" = dontDistribute super."env-locale";
+ "env-parser" = dontDistribute super."env-parser";
+ "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";
+ "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";
+ "eventsourced" = dontDistribute super."eventsourced";
+ "eventstore" = doDistribute super."eventstore_0_12_0_0";
+ "every-bit-counts" = dontDistribute super."every-bit-counts";
+ "ewe" = dontDistribute super."ewe";
+ "ex-pool" = dontDistribute super."ex-pool";
+ "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";
+ "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";
+ "failure-detector" = dontDistribute super."failure-detector";
+ "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-digits" = dontDistribute super."fast-digits";
+ "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";
+ "fbmessenger-api" = dontDistribute super."fbmessenger-api";
+ "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-gipeda" = dontDistribute super."feed-gipeda";
+ "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" = doDistribute super."fgl_5_5_2_3";
+ "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1";
+ "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-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";
+ "fitspec" = dontDistribute super."fitspec";
+ "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";
+ "fizzbuzz" = dontDistribute super."fizzbuzz";
+ "flaccuraterip" = dontDistribute super."flaccuraterip";
+ "flamethrower" = dontDistribute super."flamethrower";
+ "flamingra" = dontDistribute super."flamingra";
+ "flat-maybe" = dontDistribute super."flat-maybe";
+ "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-er" = dontDistribute super."flow-er";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "flowdock" = dontDistribute super."flowdock";
+ "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";
+ "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";
+ "foobar" = dontDistribute super."foobar";
+ "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";
+ "fortran-src" = dontDistribute super."fortran-src";
+ "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";
+ "fraxl" = dontDistribute super."fraxl";
+ "freddy" = dontDistribute super."freddy";
+ "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";
+ "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";
+ "funnyprint" = dontDistribute super."funnyprint";
+ "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";
+ "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_10_5";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
+ "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" = doDistribute super."generics-sop_0_2_1_0";
+ "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";
+ "genvalidity" = dontDistribute super."genvalidity";
+ "genvalidity-containers" = dontDistribute super."genvalidity-containers";
+ "genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
+ "genvalidity-text" = dontDistribute super."genvalidity-text";
+ "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";
+ "geojson-types" = dontDistribute super."geojson-types";
+ "geolite-csv" = dontDistribute super."geolite-csv";
+ "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-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-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_2";
+ "ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci-diagrams" = dontDistribute super."ghci-diagrams";
+ "ghci-haskeline" = dontDistribute super."ghci-haskeline";
+ "ghci-history-parser" = dontDistribute super."ghci-history-parser";
+ "ghci-lib" = dontDistribute super."ghci-lib";
+ "ghci-ng" = dontDistribute super."ghci-ng";
+ "ghci-pretty" = dontDistribute super."ghci-pretty";
+ "ghcjs-ajax" = dontDistribute super."ghcjs-ajax";
+ "ghcjs-dom" = doDistribute super."ghcjs-dom_0_2_4_0";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-dom-jsaddle" = dontDistribute super."ghcjs-dom-jsaddle";
+ "ghcjs-dom-jsffi" = dontDistribute super."ghcjs-dom-jsffi";
+ "ghcjs-dom-webkit" = dontDistribute super."ghcjs-dom-webkit";
+ "ghcjs-hplay" = dontDistribute super."ghcjs-hplay";
+ "ghcjs-perch" = dontDistribute super."ghcjs-perch";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gi-girepository" = dontDistribute super."gi-girepository";
+ "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-hs" = dontDistribute super."gi-gtk-hs";
+ "gi-gtkosxapplication" = dontDistribute super."gi-gtkosxapplication";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
+ "gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
+ "gi-notify" = dontDistribute super."gi-notify";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
+ "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";
+ "giak" = dontDistribute super."giak";
+ "gimlh" = dontDistribute super."gimlh";
+ "ginger" = dontDistribute super."ginger";
+ "ginsu" = dontDistribute super."ginsu";
+ "gio" = doDistribute super."gio_0_13_1_1";
+ "gipeda" = doDistribute super."gipeda_0_2_0_1";
+ "gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
+ "git-all" = dontDistribute super."git-all";
+ "git-annex" = doDistribute super."git-annex_6_20160511";
+ "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-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";
+ "givegif" = dontDistribute super."givegif";
+ "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";
+ "glib" = doDistribute super."glib_0_13_2_2";
+ "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-cloudmonitoring" = dontDistribute super."gogol-cloudmonitoring";
+ "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-dataproc" = dontDistribute super."gogol-dataproc";
+ "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-firebase-rules" = dontDistribute super."gogol-firebase-rules";
+ "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-kgsearch" = dontDistribute super."gogol-kgsearch";
+ "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-people" = dontDistribute super."gogol-people";
+ "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-script" = dontDistribute super."gogol-script";
+ "gogol-sheets" = dontDistribute super."gogol-sheets";
+ "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-vision" = dontDistribute super."gogol-vision";
+ "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";
+ "google-translate" = dontDistribute super."google-translate";
+ "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";
+ "gpio" = dontDistribute super."gpio";
+ "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-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";
+ "graphviz" = doDistribute super."graphviz_2999_18_1_0";
+ "grasp" = dontDistribute super."grasp";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "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" = doDistribute super."gtk_0_14_2";
+ "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-buildtools" = doDistribute super."gtk2hs-buildtools_0_13_0_5";
+ "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" = doDistribute super."gtk3_0_14_2";
+ "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" = doDistribute super."gtksourceview3_0_13_2_1";
+ "guarded-rewriting" = dontDistribute super."guarded-rewriting";
+ "guess-combinator" = dontDistribute super."guess-combinator";
+ "guid" = dontDistribute super."guid";
+ "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";
+ "hOpenPGP" = doDistribute super."hOpenPGP_2_4_4";
+ "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";
+ "hablog" = dontDistribute super."hablog";
+ "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-processing" = dontDistribute super."hackage-processing";
+ "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-api" = doDistribute super."haddock-api_2_16_1";
+ "haddock-leksah" = dontDistribute super."haddock-leksah";
+ "haddock-library" = doDistribute super."haddock-library_1_2_1";
+ "haddock-test" = dontDistribute super."haddock-test";
+ "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-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
+ "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";
+ "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";
+ "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-authenticate" = doDistribute super."happstack-authenticate_2_3_4_2";
+ "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";
+ "harvest-api" = dontDistribute super."harvest-api";
+ "has" = dontDistribute super."has";
+ "has-th" = dontDistribute super."has-th";
+ "hascal" = dontDistribute super."hascal";
+ "hascar" = dontDistribute super."hascar";
+ "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";
+ "hashing" = dontDistribute super."hashing";
+ "hashmap" = dontDistribute super."hashmap";
+ "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_3";
+ "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-fake-user-agent" = dontDistribute super."haskell-fake-user-agent";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-gi" = doDistribute super."haskell-gi_0_17_4";
+ "haskell-gi-base" = doDistribute super."haskell-gi-base_0_17";
+ "haskell-google-trends" = dontDistribute super."haskell-google-trends";
+ "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-packages" = dontDistribute super."haskell-packages";
+ "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
+ "haskell-platform-test" = dontDistribute super."haskell-platform-test";
+ "haskell-player" = dontDistribute super."haskell-player";
+ "haskell-plot" = dontDistribute super."haskell-plot";
+ "haskell-proxy-list" = dontDistribute super."haskell-proxy-list";
+ "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-tools-ast" = dontDistribute super."haskell-tools-ast";
+ "haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc";
+ "haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen";
+ "haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf";
+ "haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint";
+ "haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor";
+ "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";
+ "haskelzinc" = dontDistribute super."haskelzinc";
+ "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_12";
+ "hasql-backend" = dontDistribute super."hasql-backend";
+ "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-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";
+ "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";
+ "hdo" = dontDistribute super."hdo";
+ "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";
+ "heckle" = dontDistribute super."heckle";
+ "hedis" = doDistribute super."hedis_0_6_10";
+ "hedis-config" = dontDistribute super."hedis-config";
+ "hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-namespace" = dontDistribute super."hedis-namespace";
+ "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-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";
+ "heredocs" = dontDistribute super."heredocs";
+ "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-dict" = dontDistribute super."hetero-dict";
+ "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";
+ "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";
+ "hgeos" = dontDistribute super."hgeos";
+ "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";
+ "hindent" = doDistribute super."hindent_4_6_3";
+ "hindley-milner" = dontDistribute super."hindley-milner";
+ "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";
+ "hinotify-bytestring" = dontDistribute super."hinotify-bytestring";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_5_2";
+ "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";
+ "hit-graph" = dontDistribute super."hit-graph";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjs" = dontDistribute super."hjs";
+ "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" = doDistribute super."hledger_0_27";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_27";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_4";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "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-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";
+ "homoiconic" = dontDistribute super."homoiconic";
+ "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" = doDistribute super."hoogle_4_2_43";
+ "hoogle-index" = dontDistribute super."hoogle-index";
+ "hooks-dir" = dontDistribute super."hooks-dir";
+ "hoovie" = dontDistribute super."hoovie";
+ "hopencc" = dontDistribute super."hopencc";
+ "hopencl" = dontDistribute super."hopencl";
+ "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_18";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hoppy-docs" = dontDistribute super."hoppy-docs";
+ "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-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";
+ "houseman" = dontDistribute super."houseman";
+ "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";
+ "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";
+ "hpath" = dontDistribute super."hpath";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hpdft" = dontDistribute super."hpdft";
+ "hpio" = dontDistribute super."hpio";
+ "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_2_0";
+ "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-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-popen" = dontDistribute super."hs-popen";
+ "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";
+ "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";
+ "hscope" = dontDistribute super."hscope";
+ "hscrtmpl" = dontDistribute super."hscrtmpl";
+ "hscuid" = dontDistribute super."hscuid";
+ "hscurses" = dontDistribute super."hscurses";
+ "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex";
+ "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-megaparsec" = doDistribute super."hspec-megaparsec_0_1_1";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-slow" = dontDistribute super."hspec-slow";
+ "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
+ "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";
+ "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";
+ "hssqlppp-th" = dontDistribute super."hssqlppp-th";
+ "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";
+ "hsyslog" = doDistribute super."hsyslog_2_0";
+ "hsyslog-udp" = dontDistribute super."hsyslog-udp";
+ "hszephyr" = dontDistribute super."hszephyr";
+ "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-parse" = dontDistribute super."html-parse";
+ "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";
+ "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-dispatch" = dontDistribute super."http-dispatch";
+ "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-media" = doDistribute super."http-media_0_6_3";
+ "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-trace" = dontDistribute super."http-trace";
+ "http-wget" = dontDistribute super."http-wget";
+ "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";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_1";
+ "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-bits" = doDistribute super."hw-bits_0_0_0_6";
+ "hw-json" = doDistribute super."hw-json_0_0_0_2";
+ "hw-prim" = doDistribute super."hw-prim_0_0_0_10";
+ "hw-rankselect" = doDistribute super."hw-rankselect_0_0_0_2";
+ "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";
+ "hylide" = dontDistribute super."hylide";
+ "hylogen" = dontDistribute super."hylogen";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperloglogplus" = dontDistribute super."hyperloglogplus";
+ "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";
+ "identicon" = dontDistribute super."identicon";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna" = dontDistribute super."idna";
+ "idna2008" = dontDistribute super."idna2008";
+ "idris" = doDistribute super."idris_0_11_2";
+ "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_7";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
+ "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-maps" = dontDistribute super."incremental-maps";
+ "incremental-sat-solver" = dontDistribute super."incremental-sat-solver";
+ "increments" = dontDistribute super."increments";
+ "indentation" = dontDistribute super."indentation";
+ "indentation-core" = dontDistribute super."indentation-core";
+ "indentation-parsec" = dontDistribute super."indentation-parsec";
+ "indentation-trifecta" = dontDistribute super."indentation-trifecta";
+ "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";
+ "ini-qq" = dontDistribute super."ini-qq";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-java" = dontDistribute super."inline-java";
+ "inline-r" = doDistribute super."inline-r_0_8_0_1";
+ "inquire" = dontDistribute super."inquire";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
+ "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";
+ "integer-simple" = dontDistribute super."integer-simple";
+ "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";
+ "interlude-l" = dontDistribute super."interlude-l";
+ "intern" = dontDistribute super."intern";
+ "internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
+ "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";
+ "invariant" = doDistribute super."invariant_0_3_1";
+ "invertible" = dontDistribute super."invertible";
+ "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" = dontDistribute super."ip";
+ "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-client" = doDistribute super."irc-client_0_3_0_0";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-conduit" = doDistribute super."irc-conduit_0_1_2_0";
+ "irc-core" = dontDistribute super."irc-core";
+ "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";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_12_4";
+ "jsaddle" = doDistribute super."jsaddle_0_3_0_3";
+ "jsaddle-dom" = dontDistribute super."jsaddle-dom";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json-api" = dontDistribute super."json-api";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-ast" = dontDistribute super."json-ast";
+ "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder";
+ "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-aeson" = dontDistribute super."json-pointer-aeson";
+ "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-generic" = dontDistribute super."json-rpc-generic";
+ "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";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kan-extensions" = doDistribute super."kan-extensions_4_2_3";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "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";
+ "katt" = dontDistribute super."katt";
+ "kawhi" = dontDistribute super."kawhi";
+ "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";
+ "keenser" = dontDistribute super."keenser";
+ "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";
+ "khph" = dontDistribute super."khph";
+ "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";
+ "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-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" = doDistribute super."lambdacube-gl_0_5_0_5";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdaya-bus" = dontDistribute super."lambdaya-bus";
+ "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-comments" = dontDistribute super."language-c-comments";
+ "language-c-inline" = dontDistribute super."language-c-inline";
+ "language-cil" = dontDistribute super."language-cil";
+ "language-css" = dontDistribute super."language-css";
+ "language-dart" = dontDistribute super."language-dart";
+ "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_8_0_1";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "language-webidl" = dontDistribute super."language-webidl";
+ "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";
+ "lazy-search" = dontDistribute super."lazy-search";
+ "lazyarray" = dontDistribute super."lazyarray";
+ "lazyio" = dontDistribute super."lazyio";
+ "lazysmallcheck" = dontDistribute super."lazysmallcheck";
+ "lazysplines" = dontDistribute super."lazysplines";
+ "lbfgs" = dontDistribute super."lbfgs";
+ "lcs" = dontDistribute super."lcs";
+ "ld-intervals" = dontDistribute super."ld-intervals";
+ "lda" = dontDistribute super."lda";
+ "ldap-client" = dontDistribute super."ldap-client";
+ "ldif" = dontDistribute super."ldif";
+ "leaf" = dontDistribute super."leaf";
+ "leaky" = dontDistribute super."leaky";
+ "leancheck" = dontDistribute super."leancheck";
+ "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";
+ "legion" = dontDistribute super."legion";
+ "leksah" = dontDistribute super."leksah";
+ "lendingclub" = dontDistribute super."lendingclub";
+ "lens" = doDistribute super."lens_4_13";
+ "lens-family-th" = doDistribute super."lens-family-th_0_4_1_0";
+ "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";
+ "libroman" = dontDistribute super."libroman";
+ "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";
+ "lifted-protolude" = dontDistribute super."lifted-protolude";
+ "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";
+ "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo";
+ "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-transformer" = dontDistribute super."list-transformer";
+ "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" = dontDistribute super."located";
+ "located-base" = dontDistribute super."located-base";
+ "located-monad-logger" = dontDistribute super."located-monad-logger";
+ "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";
+ "logentries" = dontDistribute super."logentries";
+ "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";
+ "ltext" = doDistribute super."ltext_0_0_2_1";
+ "ltiv1p1" = dontDistribute super."ltiv1p1";
+ "ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
+ "lua-bytecode" = dontDistribute super."lua-bytecode";
+ "luachunk" = dontDistribute super."luachunk";
+ "luautils" = dontDistribute super."luautils";
+ "lub" = dontDistribute super."lub";
+ "lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = doDistribute super."lucid-svg_0_6_0_1";
+ "lucienne" = dontDistribute super."lucienne";
+ "luhn" = dontDistribute super."luhn";
+ "lui" = dontDistribute super."lui";
+ "luis-client" = dontDistribute super."luis-client";
+ "luka" = dontDistribute super."luka";
+ "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" = doDistribute super."machines_0_5_1";
+ "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";
+ "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";
+ "makefile" = dontDistribute super."makefile";
+ "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";
+ "mandrill" = doDistribute super."mandrill_0_5_2_1";
+ "mandulia" = dontDistribute super."mandulia";
+ "mangopay" = dontDistribute super."mangopay";
+ "manifold-random" = dontDistribute super."manifold-random";
+ "manifolds" = dontDistribute super."manifolds";
+ "map-exts" = dontDistribute super."map-exts";
+ "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";
+ "math-functions" = doDistribute super."math-functions_0_1_7_0";
+ "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";
+ "mcm" = dontDistribute super."mcm";
+ "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";
+ "means" = dontDistribute super."means";
+ "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_4_0";
+ "meldable-heap" = dontDistribute super."meldable-heap";
+ "mellon-core" = dontDistribute super."mellon-core";
+ "mellon-gpio" = dontDistribute super."mellon-gpio";
+ "mellon-web" = dontDistribute super."mellon-web";
+ "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";
+ "merge-bash-history" = dontDistribute super."merge-bash-history";
+ "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";
+ "microlens-mtl" = doDistribute super."microlens-mtl_0_1_8_0";
+ "microlens-platform" = doDistribute super."microlens-platform_0_3_2_0";
+ "micrologger" = dontDistribute super."micrologger";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "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";
+ "minlen" = dontDistribute super."minlen";
+ "minst-idx" = dontDistribute super."minst-idx";
+ "mios" = dontDistribute super."mios";
+ "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";
+ "mnist-idx" = dontDistribute super."mnist-idx";
+ "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-dijkstra" = dontDistribute super."monad-dijkstra";
+ "monad-exception" = dontDistribute super."monad-exception";
+ "monad-fork" = dontDistribute super."monad-fork";
+ "monad-gen" = dontDistribute super."monad-gen";
+ "monad-hash" = dontDistribute super."monad-hash";
+ "monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-levels" = dontDistribute super."monad-levels";
+ "monad-lgbt" = dontDistribute super."monad-lgbt";
+ "monad-log" = dontDistribute super."monad-log";
+ "monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
+ "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
+ "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-ste" = dontDistribute super."monad-ste";
+ "monad-stlike-io" = dontDistribute super."monad-stlike-io";
+ "monad-stlike-stm" = dontDistribute super."monad-stlike-stm";
+ "monad-stm" = dontDistribute super."monad-stm";
+ "monad-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-timing" = dontDistribute super."monad-timing";
+ "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";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mondo" = dontDistribute super."mondo";
+ "mongoDB" = doDistribute super."mongoDB_2_0_10";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "mono-traversable" = doDistribute super."mono-traversable_0_10_2";
+ "mono-traversable-instances" = dontDistribute super."mono-traversable-instances";
+ "monoid-absorbing" = dontDistribute super."monoid-absorbing";
+ "monoid-extras" = doDistribute super."monoid-extras_0_4_1_2";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-subclasses" = doDistribute super."monoid-subclasses_0_4_2";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "monoidal-containers" = doDistribute super."monoidal-containers_0_1_2_5";
+ "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";
+ "morph" = dontDistribute super."morph";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "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";
+ "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-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";
+ "mywatch" = dontDistribute super."mywatch";
+ "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";
+ "namespace" = dontDistribute super."namespace";
+ "nano-cryptr" = dontDistribute super."nano-cryptr";
+ "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";
+ "nanovg" = dontDistribute super."nanovg";
+ "nanq" = dontDistribute super."nanq";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "native" = dontDistribute super."native";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "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";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2";
+ "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" = doDistribute super."nested-routes_7_0_0";
+ "nested-sequence" = dontDistribute super."nested-sequence";
+ "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-hans" = dontDistribute super."network-hans";
+ "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-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";
+ "neural" = dontDistribute super."neural";
+ "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";
+ "ngx-export" = dontDistribute super."ngx-export";
+ "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";
+ "nullpipe" = dontDistribute super."nullpipe";
+ "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";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octane" = doDistribute super."octane_0_4_24";
+ "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";
+ "ofx" = doDistribute super."ofx_0_4_0_4";
+ "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";
+ "once" = doDistribute super."once_0_1_0_0";
+ "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" = doDistribute super."opaleye_0_4_2_0";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "open-haddock" = dontDistribute super."open-haddock";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-signals" = dontDistribute super."open-signals";
+ "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";
+ "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-text" = dontDistribute super."optparse-text";
+ "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";
+ "oscpacking" = dontDistribute super."oscpacking";
+ "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";
+ "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";
+ "pagination" = dontDistribute super."pagination";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_9_1_1";
+ "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";
+ "pango" = doDistribute super."pango_0_13_1_1";
+ "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";
+ "paranoia" = dontDistribute super."paranoia";
+ "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";
+ "parseerror-eq" = dontDistribute super."parseerror-eq";
+ "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_1_1_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";
+ "perfecthash" = dontDistribute super."perfecthash";
+ "period" = dontDistribute super."period";
+ "periodic" = dontDistribute super."periodic";
+ "perm" = dontDistribute super."perm";
+ "permute" = dontDistribute super."permute";
+ "persist2er" = dontDistribute super."persist2er";
+ "persistent" = doDistribute super."persistent_2_2_4_1";
+ "persistent-audit" = dontDistribute super."persistent-audit";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-database-url" = dontDistribute super."persistent-database-url";
+ "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-mongoDB" = doDistribute super."persistent-mongoDB_2_1_4";
+ "persistent-mysql" = doDistribute super."persistent-mysql_2_3_0_2";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2_2";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2_1";
+ "persistent-template" = doDistribute super."persistent-template_2_1_8_1";
+ "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";
+ "pg-store" = dontDistribute super."pg-store";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phash" = dontDistribute super."phash";
+ "phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
+ "phoityne-vscode" = dontDistribute super."phoityne-vscode";
+ "phone-metadata" = dontDistribute super."phone-metadata";
+ "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";
+ "pinch" = doDistribute super."pinch_0_2_0_1";
+ "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_2_1";
+ "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-cliff" = doDistribute super."pipes-cliff_0_10_0_4";
+ "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-files" = dontDistribute super."pipes-files";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv";
+ "pipes-lzma" = dontDistribute super."pipes-lzma";
+ "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-random" = dontDistribute super."pipes-random";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-s3" = dontDistribute super."pipes-s3";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple";
+ "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";
+ "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "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";
+ "point-octree" = dontDistribute super."point-octree";
+ "pointed" = doDistribute super."pointed_4_2_0_2";
+ "pointfree" = dontDistribute super."pointfree";
+ "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";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "pomodoro" = dontDistribute super."pomodoro";
+ "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-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-bind" = dontDistribute super."postgresql-simple-bind";
+ "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" = dontDistribute super."pqueue";
+ "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-compat" = dontDistribute super."prelude-compat";
+ "prelude-edsl" = dontDistribute super."prelude-edsl";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude2010" = dontDistribute super."prelude2010";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "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-ncols" = dontDistribute super."pretty-ncols";
+ "pretty-sop" = dontDistribute super."pretty-sop";
+ "pretty-tree" = dontDistribute super."pretty-tree";
+ "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
+ "prim-spoon" = dontDistribute super."prim-spoon";
+ "prim-uniq" = dontDistribute super."prim-uniq";
+ "primitive-simd" = dontDistribute super."primitive-simd";
+ "primula-board" = dontDistribute super."primula-board";
+ "primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
+ "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_8";
+ "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";
+ "processing" = dontDistribute super."processing";
+ "processing-for-haskell" = dontDistribute super."processing-for-haskell";
+ "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";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "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";
+ "proto-lens" = dontDistribute super."proto-lens";
+ "proto-lens-arbitrary" = dontDistribute super."proto-lens-arbitrary";
+ "proto-lens-combinators" = dontDistribute super."proto-lens-combinators";
+ "proto-lens-optparse" = dontDistribute super."proto-lens-optparse";
+ "proto-lens-protoc" = dontDistribute super."proto-lens-protoc";
+ "protobuf-native" = dontDistribute super."protobuf-native";
+ "protocol-buffers" = doDistribute super."protocol-buffers_2_2_0";
+ "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_2_0";
+ "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";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = dontDistribute super."psc-ide";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = doDistribute super."publicsuffix_0_20160522";
+ "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" = dontDistribute super."pulse";
+ "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_8_5_0";
+ "purescript-bridge" = dontDistribute super."purescript-bridge";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "pursuit-client" = dontDistribute super."pursuit-client";
+ "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";
+ "pusher-http-haskell" = doDistribute super."pusher-http-haskell_0_3_0_2";
+ "pusher-ws" = dontDistribute super."pusher-ws";
+ "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";
+ "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5";
+ "qtah-examples" = dontDistribute super."qtah-examples";
+ "qtah-generator" = dontDistribute super."qtah-generator";
+ "qtah-qt5" = dontDistribute super."qtah-qt5";
+ "quadratic-irrational" = dontDistribute super."quadratic-irrational";
+ "quantfin" = dontDistribute super."quantfin";
+ "quantities" = dontDistribute super."quantities";
+ "quantum-arrow" = dontDistribute super."quantum-arrow";
+ "quantum-random" = dontDistribute super."quantum-random";
+ "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";
+ "quickbooks" = dontDistribute super."quickbooks";
+ "quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2";
+ "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-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickpull" = dontDistribute super."quickpull";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "quickterm" = dontDistribute super."quickterm";
+ "quicktest" = dontDistribute super."quicktest";
+ "quickwebapp" = dontDistribute super."quickwebapp";
+ "quipper" = dontDistribute super."quipper";
+ "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-instances" = dontDistribute super."quiver-instances";
+ "quiver-interleave" = dontDistribute super."quiver-interleave";
+ "quiver-sort" = dontDistribute super."quiver-sort";
+ "quoridor-hs" = dontDistribute super."quoridor-hs";
+ "qux" = dontDistribute super."qux";
+ "raaz" = dontDistribute super."raaz";
+ "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" = doDistribute super."rainbow_0_28_0_2";
+ "rainbow-tests" = dontDistribute super."rainbow-tests";
+ "rainbox" = doDistribute super."rainbox_0_18_0_8";
+ "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-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";
+ "rapid" = dontDistribute super."rapid";
+ "rascal" = dontDistribute super."rascal";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratel" = doDistribute super."ratel_0_1_3";
+ "ratel-wai" = doDistribute super."ratel-wai_0_1_2";
+ "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";
+ "readshp" = dontDistribute super."readshp";
+ "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-job-queue" = dontDistribute super."redis-job-queue";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "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-colonnade" = dontDistribute super."reflex-dom-colonnade";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
+ "reflex-gloss" = dontDistribute super."reflex-gloss";
+ "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
+ "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" = doDistribute super."relational-query_0_8_2_3";
+ "relational-record-examples" = dontDistribute super."relational-record-examples";
+ "relative-date" = dontDistribute super."relative-date";
+ "relit" = dontDistribute super."relit";
+ "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";
+ "replicant" = dontDistribute super."replicant";
+ "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-example" = dontDistribute super."rest-example";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = doDistribute super."rethinkdb_2_2_0_5";
+ "rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = doDistribute super."retry_0_7_4";
+ "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";
+ "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";
+ "rison" = dontDistribute super."rison";
+ "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";
+ "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";
+ "roundRobin" = dontDistribute super."roundRobin";
+ "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";
+ "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";
+ "rts-loader" = dontDistribute super."rts-loader";
+ "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-exceptions" = dontDistribute super."safe-exceptions";
+ "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";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandi" = doDistribute super."sandi_0_3_6";
+ "sandlib" = dontDistribute super."sandlib";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sarsi" = dontDistribute super."sarsi";
+ "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";
+ "sbp2udp" = dontDistribute super."sbp2udp";
+ "sbv" = doDistribute super."sbv_5_11";
+ "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";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "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";
+ "scientific" = doDistribute super."scientific_0_3_4_8";
+ "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-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";
+ "scotty-view" = dontDistribute super."scotty-view";
+ "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" = doDistribute super."sdl2_2_1_1";
+ "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";
+ "secd" = dontDistribute super."secd";
+ "secdh" = dontDistribute super."secdh";
+ "seclib" = dontDistribute super."seclib";
+ "second-transfer" = dontDistribute super."second-transfer";
+ "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";
+ "semibounded-lattices" = dontDistribute super."semibounded-lattices";
+ "semigroupoids" = doDistribute super."semigroupoids_5_0_1";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups" = doDistribute super."semigroups_0_18_1";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semver-range" = dontDistribute super."semver-range";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensei" = dontDistribute super."sensei";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentence-jp" = dontDistribute super."sentence-jp";
+ "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";
+ "serpentine" = dontDistribute super."serpentine";
+ "serv" = dontDistribute super."serv";
+ "serv-wai" = dontDistribute super."serv-wai";
+ "servant-aeson-specs" = dontDistribute super."servant-aeson-specs";
+ "servant-auth-cookie" = dontDistribute super."servant-auth-cookie";
+ "servant-csharp" = dontDistribute super."servant-csharp";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-elm" = dontDistribute super."servant-elm";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-github" = dontDistribute super."servant-github";
+ "servant-haxl-client" = dontDistribute super."servant-haxl-client";
+ "servant-jquery" = dontDistribute super."servant-jquery";
+ "servant-pandoc" = dontDistribute super."servant-pandoc";
+ "servant-pool" = dontDistribute super."servant-pool";
+ "servant-postgresql" = dontDistribute super."servant-postgresql";
+ "servant-purescript" = dontDistribute super."servant-purescript";
+ "servant-quickcheck" = dontDistribute super."servant-quickcheck";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-subscriber" = dontDistribute super."servant-subscriber";
+ "servant-swagger" = doDistribute super."servant-swagger_1_0_3";
+ "servant-swagger-ui" = dontDistribute super."servant-swagger-ui";
+ "server-generic" = dontDistribute super."server-generic";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "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";
+ "sfnt2woff" = dontDistribute super."sfnt2woff";
+ "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-language-c" = doDistribute super."shake-language-c_0_9_1";
+ "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-sass" = dontDistribute super."shakespeare-sass";
+ "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";
+ "shellmate-extras" = dontDistribute super."shellmate-extras";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shine" = dontDistribute super."shine";
+ "shine-varying" = dontDistribute super."shine-varying";
+ "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-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-tar" = dontDistribute super."simple-tar";
+ "simple-vec3" = dontDistribute super."simple-vec3";
+ "simpleargs" = dontDistribute super."simpleargs";
+ "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";
+ "singletons" = doDistribute super."singletons_2_0_1";
+ "sink" = dontDistribute super."sink";
+ "siphon" = dontDistribute super."siphon";
+ "sirkel" = dontDistribute super."sirkel";
+ "sitemap" = dontDistribute super."sitemap";
+ "size-based" = dontDistribute super."size-based";
+ "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";
+ "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";
+ "smerdyakov" = dontDistribute super."smerdyakov";
+ "smsaero" = dontDistribute super."smsaero";
+ "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" = dontDistribute super."snake";
+ "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-routes" = dontDistribute super."snap-routes";
+ "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-activation" = dontDistribute super."socket-activation";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "socketson" = dontDistribute super."socketson";
+ "soegtk" = dontDistribute super."soegtk";
+ "solga" = dontDistribute super."solga";
+ "solga-swagger" = dontDistribute super."solga-swagger";
+ "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";
+ "sorted-list" = doDistribute super."sorted-list_0_1_6_1";
+ "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";
+ "sparkle" = dontDistribute super."sparkle";
+ "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";
+ "spoonutil" = dontDistribute super."spoonutil";
+ "spoty" = dontDistribute super."spoty";
+ "spreadsheet" = dontDistribute super."spreadsheet";
+ "spritz" = dontDistribute super."spritz";
+ "sproxy" = dontDistribute super."sproxy";
+ "sproxy-web" = dontDistribute super."sproxy-web";
+ "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";
+ "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";
+ "sscript" = dontDistribute super."sscript";
+ "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";
+ "stache" = dontDistribute super."stache";
+ "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stack-run" = dontDistribute super."stack-run";
+ "stackage-curator" = doDistribute super."stackage-curator_0_14_0";
+ "stackage-install" = doDistribute super."stackage-install_0_1_1_1";
+ "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";
+ "stgi" = dontDistribute super."stgi";
+ "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_8_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";
+ "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";
+ "store" = dontDistribute super."store";
+ "store-core" = dontDistribute super."store-core";
+ "str" = dontDistribute super."str";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stratux" = dontDistribute super."stratux";
+ "stratux-http" = dontDistribute super."stratux-http";
+ "stratux-types" = dontDistribute super."stratux-types";
+ "stratux-websockets" = dontDistribute super."stratux-websockets";
+ "stream" = dontDistribute super."stream";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming-eversion" = dontDistribute super."streaming-eversion";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-png" = dontDistribute super."streaming-png";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streaming-wai" = dontDistribute super."streaming-wai";
+ "streams" = doDistribute super."streams_3_2_1";
+ "strict-concurrency" = dontDistribute super."strict-concurrency";
+ "strict-data" = dontDistribute super."strict-data";
+ "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-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-core" = doDistribute super."stripe-core_2_0_3";
+ "stripe-haskell" = doDistribute super."stripe-haskell_2_0_3";
+ "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_3";
+ "strive" = doDistribute super."strive_2_2_2";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
+ "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";
+ "subwordgraph" = dontDistribute super."subwordgraph";
+ "suffixarray" = dontDistribute super."suffixarray";
+ "suffixtree" = dontDistribute super."suffixtree";
+ "sugarhaskell" = dontDistribute super."sugarhaskell";
+ "suitable" = dontDistribute super."suitable";
+ "sump" = dontDistribute super."sump";
+ "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";
+ "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_2_0_2";
+ "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";
+ "symengine" = dontDistribute super."symengine";
+ "symengine-hs" = dontDistribute super."symengine-hs";
+ "sync" = dontDistribute super."sync";
+ "sync-mht" = doDistribute super."sync-mht_0_3_8_4";
+ "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-info" = dontDistribute super."system-info";
+ "system-inotify" = dontDistribute super."system-inotify";
+ "system-lifted" = dontDistribute super."system-lifted";
+ "system-locale" = dontDistribute super."system-locale";
+ "system-random-effect" = dontDistribute super."system-random-effect";
+ "system-test" = dontDistribute super."system-test";
+ "system-time-monotonic" = dontDistribute super."system-time-monotonic";
+ "system-util" = dontDistribute super."system-util";
+ "system-uuid" = dontDistribute super."system-uuid";
+ "systemd" = dontDistribute super."systemd";
+ "systemstats" = dontDistribute super."systemstats";
+ "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-layout" = dontDistribute super."table-layout";
+ "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";
+ "taglib" = dontDistribute super."taglib";
+ "taglib-api" = dontDistribute super."taglib-api";
+ "tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup" = doDistribute super."tagsoup_0_13_10";
+ "tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec";
+ "tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
+ "tai64" = dontDistribute super."tai64";
+ "tak" = dontDistribute super."tak";
+ "tak-ai" = dontDistribute super."tak-ai";
+ "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";
+ "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5";
+ "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";
+ "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";
+ "tempo" = dontDistribute super."tempo";
+ "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-fixture" = dontDistribute super."test-fixture";
+ "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";
+ "testbench" = dontDistribute super."testbench";
+ "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-all" = dontDistribute super."text-all";
+ "text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
+ "text-format-simple" = dontDistribute super."text-format-simple";
+ "text-icu-normalized" = dontDistribute super."text-icu-normalized";
+ "text-icu-translit" = dontDistribute super."text-icu-translit";
+ "text-json-qq" = dontDistribute super."text-json-qq";
+ "text-latin1" = dontDistribute super."text-latin1";
+ "text-lips" = dontDistribute super."text-lips";
+ "text-loc" = dontDistribute super."text-loc";
+ "text-locale-encoding" = dontDistribute super."text-locale-encoding";
+ "text-normal" = dontDistribute super."text-normal";
+ "text-position" = dontDistribute super."text-position";
+ "text-printer" = dontDistribute super."text-printer";
+ "text-regex-replace" = dontDistribute super."text-regex-replace";
+ "text-register-machine" = dontDistribute super."text-register-machine";
+ "text-render" = dontDistribute super."text-render";
+ "text-show" = doDistribute super."text-show_2_1_2";
+ "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";
+ "text-zipper-monad" = dontDistribute super."text-zipper-monad";
+ "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-desugar" = doDistribute super."th-desugar_1_5_5";
+ "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" = doDistribute super."th-lift-instances_0_1_9";
+ "th-orphans" = doDistribute super."th-orphans_0_13_0";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "th-utilities" = dontDistribute super."th-utilities";
+ "themoviedb" = dontDistribute super."themoviedb";
+ "themplate" = dontDistribute super."themplate";
+ "thentos-cookie-session" = dontDistribute super."thentos-cookie-session";
+ "theoremquest" = dontDistribute super."theoremquest";
+ "theoremquest-client" = dontDistribute super."theoremquest-client";
+ "these" = doDistribute super."these_0_6_2_1";
+ "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";
+ "throttled-io-loop" = dontDistribute super."throttled-io-loop";
+ "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" = doDistribute super."tidal_0_7_1";
+ "tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
+ "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";
+ "timelens" = dontDistribute super."timelens";
+ "timeless" = dontDistribute super."timeless";
+ "timelike" = dontDistribute super."timelike";
+ "timelike-clock" = dontDistribute super."timelike-clock";
+ "timelike-time" = dontDistribute super."timelike-time";
+ "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";
+ "timeprint" = dontDistribute super."timeprint";
+ "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";
+ "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";
+ "tracetree" = dontDistribute super."tracetree";
+ "tracker" = dontDistribute super."tracker";
+ "traildb" = dontDistribute super."traildb";
+ "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-compat" = doDistribute super."transformers-compat_0_4_0_4";
+ "transformers-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-eff" = dontDistribute super."transformers-eff";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "transient-universe" = dontDistribute super."transient-universe";
+ "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-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";
+ "trifecta" = doDistribute super."trifecta_1_5_2";
+ "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";
+ "ttask" = dontDistribute super."ttask";
+ "tubes" = dontDistribute super."tubes";
+ "tuntap" = dontDistribute super."tuntap";
+ "tup-functor" = dontDistribute super."tup-functor";
+ "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";
+ "turingMachine" = dontDistribute super."turingMachine";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "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-list" = doDistribute super."type-list_0_3_0_4";
+ "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";
+ "uAgda" = dontDistribute super."uAgda";
+ "uacpid" = dontDistribute super."uacpid";
+ "uber" = dontDistribute super."uber";
+ "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";
+ "unfoldable-restricted" = dontDistribute super."unfoldable-restricted";
+ "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";
+ "unicode-transforms" = dontDistribute super."unicode-transforms";
+ "unicoder" = dontDistribute super."unicoder";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union" = doDistribute super."union_0_1_1_0";
+ "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";
+ "unit-constraint" = dontDistribute super."unit-constraint";
+ "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-compat" = doDistribute super."unix-compat_0_4_1_4";
+ "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-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";
+ "unused" = dontDistribute super."unused";
+ "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-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";
+ "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-orphans" = doDistribute super."uuid-orphans_1_3_11_1";
+ "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";
+ "valid-names" = dontDistribute super."valid-names";
+ "validate" = dontDistribute super."validate";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "validations" = dontDistribute super."validations";
+ "validity" = dontDistribute super."validity";
+ "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";
+ "vcatt" = dontDistribute super."vcatt";
+ "vcd" = dontDistribute super."vcd";
+ "vcs-revision" = dontDistribute super."vcs-revision";
+ "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse";
+ "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";
+ "vectortiles" = dontDistribute super."vectortiles";
+ "verbalexpressions" = dontDistribute super."verbalexpressions";
+ "verbosity" = dontDistribute super."verbosity";
+ "verdict" = dontDistribute super."verdict";
+ "verdict-json" = dontDistribute super."verdict-json";
+ "verilog" = dontDistribute super."verilog";
+ "versions" = doDistribute super."versions_2_0_0";
+ "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-operational" = dontDistribute super."vinyl-operational";
+ "vinyl-plus" = dontDistribute super."vinyl-plus";
+ "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";
+ "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" = doDistribute super."vty_5_5_0";
+ "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-http2-extra" = dontDistribute super."wai-http2-extra";
+ "wai-lens" = dontDistribute super."wai-lens";
+ "wai-lite" = dontDistribute super."wai-lite";
+ "wai-logger" = doDistribute super."wai-logger_2_2_7";
+ "wai-logger-prefork" = dontDistribute super."wai-logger-prefork";
+ "wai-make-assets" = dontDistribute super."wai-make-assets";
+ "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4";
+ "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" = doDistribute super."wai-middleware-verbs_0_2_0";
+ "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-mysql" = dontDistribute super."wai-session-mysql";
+ "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-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-inv-route" = dontDistribute super."web-inv-route";
+ "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";
+ "webcloud" = dontDistribute super."webcloud";
+ "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" = doDistribute super."webkitgtk3_0_14_1_1";
+ "webkitgtk3-javascriptcore" = doDistribute super."webkitgtk3-javascriptcore_0_13_1_2";
+ "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" = doDistribute super."werewolf_1_0_2_2";
+ "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";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
+ "wikipedia4epub" = dontDistribute super."wikipedia4epub";
+ "win-hp-path" = dontDistribute super."win-hp-path";
+ "windowslive" = dontDistribute super."windowslive";
+ "winerror" = dontDistribute super."winerror";
+ "winio" = dontDistribute super."winio";
+ "wire-streams" = dontDistribute super."wire-streams";
+ "wiring" = dontDistribute super."wiring";
+ "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";
+ "word-vector" = dontDistribute super."word-vector";
+ "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" = doDistribute super."wuss_1_0_4";
+ "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";
+ "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_2_2";
+ "xlsx-templater" = dontDistribute super."xlsx-templater";
+ "xml-basic" = dontDistribute super."xml-basic";
+ "xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-conduit-decode" = dontDistribute super."xml-conduit-decode";
+ "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";
+ "xpathdsv" = dontDistribute super."xpathdsv";
+ "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-api" = dontDistribute super."yahoo-finance-api";
+ "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";
+ "yandex-translate" = dontDistribute super."yandex-translate";
+ "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-oauth2" = doDistribute super."yesod-auth-oauth2_0_1_10";
+ "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-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-mangopay" = dontDistribute super."yesod-mangopay";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "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";
+ "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";
+ "z3-encoding" = dontDistribute super."z3-encoding";
+ "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";
+ "zip-archive" = doDistribute super."zip-archive_0_2_3_7";
+ "zip-conduit" = dontDistribute super."zip-conduit";
+ "zipedit" = dontDistribute super."zipedit";
+ "zipkin" = dontDistribute super."zipkin";
+ "zipper" = dontDistribute super."zipper";
+ "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";
+ "zsh-battery" = dontDistribute super."zsh-battery";
+ "ztail" = dontDistribute super."ztail";
+
+}
diff --git a/pkgs/development/haskell-modules/default.nix b/pkgs/development/haskell-modules/default.nix
index b03293ecfc5..4bc9a2af550 100644
--- a/pkgs/development/haskell-modules/default.nix
+++ b/pkgs/development/haskell-modules/default.nix
@@ -9,8 +9,8 @@ let
allCabalFiles = pkgs.fetchFromGitHub {
owner = "commercialhaskell";
repo = "all-cabal-hashes";
- rev = "461610ab6f0cf581e186643c037f1981755792d9";
- sha256 = "0x2577lfd5cbbaivl72273kw93gcmxvbjybk7w4h2ic3zvs1fnvm";
+ rev = "72f1318540eff69544eb8c14a16f630d0c5448b8";
+ sha256 = "1czi1rajk2726mqrw3qp7a43h26acbjw54ll3ns063yzg9hg469m";
};
inherit (stdenv.lib) fix' extends;
diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix
index de8865e3282..13057b4c4aa 100644
--- a/pkgs/development/haskell-modules/hackage-packages.nix
+++ b/pkgs/development/haskell-modules/hackage-packages.nix
@@ -1469,13 +1469,14 @@ self: {
}) {};
"BiGUL" = callPackage
- ({ mkDerivation, base, containers, mtl, pretty, template-haskell }:
+ ({ mkDerivation, base, containers, mtl, template-haskell, th-extras
+ }:
mkDerivation {
pname = "BiGUL";
- version = "0.9.0.0";
- sha256 = "4530a12694a213bbbc98a55a7120c7093d92a70892757c30faac0176a4ce9ff7";
+ version = "1.0.0";
+ sha256 = "f4fe9d078b3f7b3db8d39be54877ff912c0c7f37774a82c728edab713efc6775";
libraryHaskellDepends = [
- base containers mtl pretty template-haskell
+ base containers mtl template-haskell th-extras
];
jailbreak = true;
homepage = "http://www.prg.nii.ac.jp/project/bigul/";
@@ -2143,7 +2144,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "BlogLiterately" = callPackage
+ "BlogLiterately_0_8_3_1" = callPackage
({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs
, containers, data-default, directory, filepath, HaXml, haxr
, highlighting-kate, hscolour, HTTP, lens, mtl, pandoc
@@ -2169,6 +2170,32 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "BlogLiterately" = callPackage
+ ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs
+ , containers, data-default, directory, filepath, HaXml, haxr
+ , highlighting-kate, hscolour, HTTP, lens, mtl, pandoc
+ , pandoc-citeproc, pandoc-types, parsec, process, split, strict
+ , tagsoup, temporary, transformers
+ }:
+ mkDerivation {
+ pname = "BlogLiterately";
+ version = "0.8.4";
+ sha256 = "1eb44830043ba01ddd186498d594a8b01c1ced908f2ea2dc6aa6085e2c91dd7d";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base blaze-html bool-extras bytestring cmdargs containers
+ data-default directory filepath HaXml haxr highlighting-kate
+ 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/";
+ description = "A tool for posting Haskelly articles to blogs";
+ license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"BlogLiterately-diagrams_0_1_4_3" = callPackage
({ mkDerivation, base, BlogLiterately, containers, diagrams-builder
, diagrams-cairo, diagrams-lib, directory, filepath, pandoc, safe
@@ -3948,6 +3975,17 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "Concurrent-Cache" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "Concurrent-Cache";
+ version = "0.2.1.0";
+ sha256 = "4b729f38e34be0f9b9bc51eafd513c1e476a14f4058d4476341db51e6c0ad642";
+ libraryHaskellDepends = [ base ];
+ description = "A Cached variable for IO functions";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"ConcurrentUtils" = callPackage
({ mkDerivation, array, base, binary, bytestring, containers
, crypto-random, cryptohash, list-extras, MonadRandom, monads-tf
@@ -4459,7 +4497,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "DAV" = callPackage
+ "DAV_1_2" = callPackage
({ mkDerivation, base, bytestring, case-insensitive, containers
, data-default, exceptions, http-client, http-client-tls
, http-types, lens, mtl, mtl-compat, network, network-uri
@@ -4470,6 +4508,8 @@ self: {
pname = "DAV";
version = "1.2";
sha256 = "1a07c8ef17cd4207c6f889e7eb5c45d9f025374f2cdacc1e34e6d71fe103b746";
+ revision = "1";
+ editedCabalFile = "6c084095b369b6a2cb797a19a9accf5488f729f19bb6c0240e0f6faf1ac266bb";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -4487,6 +4527,37 @@ self: {
homepage = "http://floss.scru.org/hDAV";
description = "RFC 4918 WebDAV support";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "DAV" = callPackage
+ ({ mkDerivation, base, bytestring, case-insensitive, containers
+ , data-default, exceptions, haskeline, http-client, http-client-tls
+ , http-types, lens, mtl, network, network-uri, optparse-applicative
+ , transformers, transformers-base, transformers-compat, utf8-string
+ , xml-conduit, xml-hamlet
+ }:
+ mkDerivation {
+ pname = "DAV";
+ version = "1.3.1";
+ sha256 = "5c80faa58f8bbfb4bbdf7f3db6f23a3a4d26a199831ceb27dd5f69fef21bc009";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring case-insensitive containers data-default exceptions
+ http-client http-client-tls http-types lens mtl transformers
+ transformers-base transformers-compat utf8-string xml-conduit
+ xml-hamlet
+ ];
+ executableHaskellDepends = [
+ base bytestring case-insensitive containers data-default exceptions
+ haskeline http-client http-client-tls http-types lens mtl network
+ network-uri optparse-applicative transformers transformers-base
+ transformers-compat utf8-string xml-conduit xml-hamlet
+ ];
+ homepage = "http://floss.scru.org/hDAV";
+ description = "RFC 4918 WebDAV support";
+ license = stdenv.lib.licenses.gpl3;
}) {};
"DBlimited" = callPackage
@@ -5997,8 +6068,8 @@ self: {
}:
mkDerivation {
pname = "Euterpea";
- version = "2.0.1";
- sha256 = "904e085a15789161515324391882c6a04469cb652c3fcfa9e4b6aa640b327333";
+ version = "2.0.2";
+ sha256 = "9b7dfed82cceae3f1213c1dffee46d17a4d729626ad873175984567abab44db4";
libraryHaskellDepends = [
array arrows base bytestring containers deepseq ghc-prim HCodecs
heap PortMidi random stm
@@ -7840,7 +7911,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "Glob" = callPackage
+ "Glob_0_7_9" = callPackage
({ mkDerivation, base, containers, directory, dlist, filepath
, HUnit, QuickCheck, test-framework, test-framework-hunit
, test-framework-quickcheck2, transformers, transformers-compat
@@ -7858,6 +7929,30 @@ self: {
test-framework test-framework-hunit test-framework-quickcheck2
transformers transformers-compat
];
+ homepage = "http://iki.fi/matti.niemenmaa/glob/";
+ description = "Globbing library";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "Glob" = callPackage
+ ({ mkDerivation, base, containers, directory, dlist, filepath
+ , HUnit, QuickCheck, test-framework, test-framework-hunit
+ , test-framework-quickcheck2, transformers, transformers-compat
+ }:
+ mkDerivation {
+ pname = "Glob";
+ version = "0.7.10";
+ sha256 = "db8f67725566df72379cdbbdb2f7aaf6500163b94924229b4b0aa9bbaa9804a7";
+ libraryHaskellDepends = [
+ base containers directory dlist filepath transformers
+ transformers-compat
+ ];
+ testHaskellDepends = [
+ base containers directory dlist filepath HUnit QuickCheck
+ test-framework test-framework-hunit test-framework-quickcheck2
+ transformers transformers-compat
+ ];
doCheck = false;
homepage = "http://iki.fi/matti.niemenmaa/glob/";
description = "Globbing library";
@@ -8678,6 +8773,21 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs) fuse;};
+ "HGE2D" = callPackage
+ ({ mkDerivation, base, GLUT, OpenGL, time }:
+ mkDerivation {
+ pname = "HGE2D";
+ version = "0.1.6.5";
+ sha256 = "072579275b26bc68356e564f6691bf9168548848e5ef759865e629b7f684d326";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base GLUT OpenGL time ];
+ executableHaskellDepends = [ base ];
+ homepage = "https://github.com/I3ck/HGE2D";
+ description = "2D game engine written in Haskell";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"HGL" = callPackage
({ mkDerivation, array, base, X11 }:
mkDerivation {
@@ -16307,7 +16417,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) mesa;};
- "OpenGLRaw" = callPackage
+ "OpenGLRaw_3_2_0_0" = callPackage
({ mkDerivation, base, bytestring, containers, fixed, half, mesa
, text, transformers
}:
@@ -16322,6 +16432,24 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/Opengl";
description = "A raw binding for the OpenGL graphics system";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) mesa;};
+
+ "OpenGLRaw" = callPackage
+ ({ mkDerivation, base, bytestring, containers, fixed, half, mesa
+ , text, transformers
+ }:
+ mkDerivation {
+ pname = "OpenGLRaw";
+ version = "3.2.1.0";
+ sha256 = "a1554684460bd34b2e031cfc5f5e5388e6266f67482bd77829575b5b8b339afe";
+ libraryHaskellDepends = [
+ base bytestring containers fixed half text transformers
+ ];
+ librarySystemDepends = [ mesa ];
+ homepage = "http://www.haskell.org/haskellwiki/Opengl";
+ description = "A raw binding for the OpenGL graphics system";
+ license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs) mesa;};
"OpenGLRaw21" = callPackage
@@ -16777,6 +16905,24 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {};
+ "PathTree" = callPackage
+ ({ mkDerivation, base, containers, QuickCheck, test-framework
+ , test-framework-quickcheck2
+ }:
+ mkDerivation {
+ pname = "PathTree";
+ version = "0.1.1.0";
+ sha256 = "18f88853bfe2e2b1a5961765ca4874dc58418dbb480781a9446deca7654918e7";
+ libraryHaskellDepends = [ base containers ];
+ testHaskellDepends = [
+ base QuickCheck test-framework test-framework-quickcheck2
+ ];
+ jailbreak = true;
+ homepage = "https://github.com/pjrt/PathTree#readme";
+ description = "A tree used to merge and maintain paths";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"Pathfinder" = callPackage
({ mkDerivation, base, bytestring, libxml2, text }:
mkDerivation {
@@ -16938,8 +17084,8 @@ self: {
}:
mkDerivation {
pname = "Plot-ho-matic";
- version = "0.10.0.0";
- sha256 = "07cadc1eb4e2d0820c508676914e851d324c98eb97e4f37f936860fc3ddd8e80";
+ version = "0.10.1.0";
+ sha256 = "af1880de4e2bdb5c0bcdd5e532163d15c6fd33b1f01a1d09c8f5ded3dcfa70c5";
libraryHaskellDepends = [
base bytestring cairo cereal Chart Chart-cairo containers
data-default-class generic-accessors glib gtk3 lens text time
@@ -17482,6 +17628,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "QuickCheck_2_9_1" = callPackage
+ ({ mkDerivation, base, containers, random, template-haskell
+ , test-framework, tf-random, transformers
+ }:
+ mkDerivation {
+ pname = "QuickCheck";
+ version = "2.9.1";
+ sha256 = "f8769cbef895a67f9bd1ac554faa577e6c1fb41e271425880a759009e454d05f";
+ libraryHaskellDepends = [
+ base containers random template-haskell tf-random transformers
+ ];
+ testHaskellDepends = [
+ base containers template-haskell test-framework
+ ];
+ jailbreak = true;
+ homepage = "https://github.com/nick8325/quickcheck";
+ description = "Automatic testing of Haskell programs";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"QuickCheck-GenT" = callPackage
({ mkDerivation, base, mtl, QuickCheck, random }:
mkDerivation {
@@ -18792,6 +18959,7 @@ self: {
data-default-class diagrams-core diagrams-lib directory parsec
split text tuple vector xml
];
+ jailbreak = true;
description = "Fonts from the SVG-Font format";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -20114,7 +20282,7 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
- "Strafunski-StrategyLib" = callPackage
+ "Strafunski-StrategyLib_5_0_0_8" = callPackage
({ mkDerivation, base, directory, mtl, syb, transformers }:
mkDerivation {
pname = "Strafunski-StrategyLib";
@@ -20124,6 +20292,18 @@ self: {
jailbreak = true;
description = "Library for strategic programming";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "Strafunski-StrategyLib" = callPackage
+ ({ mkDerivation, base, directory, mtl, syb, transformers }:
+ mkDerivation {
+ pname = "Strafunski-StrategyLib";
+ version = "5.0.0.9";
+ sha256 = "c8e464538cd27c4f2636eb25dcd1a1ef1df680f89600219baa2ca21ce2a98e1d";
+ libraryHaskellDepends = [ base directory mtl syb transformers ];
+ description = "Library for strategic programming";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"StrappedTemplates" = callPackage
@@ -24148,6 +24328,7 @@ self: {
version = "0.2.0";
sha256 = "218f0271298f9a42aad50c10cc042388c62d1619624b750f0b665be4f068c4cd";
libraryHaskellDepends = [ base template-haskell type-level ];
+ jailbreak = true;
homepage = "http://inmachina.net/~jwlato/haskell/";
description = "Self-optimizing tuple types";
license = stdenv.lib.licenses.bsd3;
@@ -24827,8 +25008,8 @@ self: {
}:
mkDerivation {
pname = "aeson-diff";
- version = "1.0.0.0";
- sha256 = "5ea558cd2825880fe162418a933077d457cc02eb2cb4bcef48b5b49bef6ca9b1";
+ version = "1.0.0.1";
+ sha256 = "8a2398f9898138444613c389c29222902a56f0078f5200017bf69cb86de1d76b";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -24842,7 +25023,6 @@ self: {
aeson base bytestring directory filepath Glob hlint QuickCheck
quickcheck-instances text unordered-containers vector
];
- jailbreak = true;
homepage = "https://github.com/thsutton/aeson-diff";
description = "Extract and apply patches to JSON documents";
license = stdenv.lib.licenses.bsd3;
@@ -25527,10 +25707,9 @@ self: {
({ mkDerivation, aeson, base }:
mkDerivation {
pname = "aeson-yak";
- version = "0.1.1";
- sha256 = "b71317e0a87bbd84d6ec407a307299201070a10e3b2cf9d28c4afb5cf8b0dad2";
+ version = "0.1.1.1";
+ sha256 = "68eaed01e8d928870dc8c3f3530a3c77aaf8ef1bec86928f2382b9e0af81a260";
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;
@@ -26054,6 +26233,7 @@ self: {
aivika aivika-experiment array base Chart colour containers
data-default-class filepath lens mtl split
];
+ jailbreak = true;
homepage = "http://github.com/dsorokin/aivika-experiment-chart";
description = "Simulation experiments with charting for the Aivika library";
license = stdenv.lib.licenses.bsd3;
@@ -38345,7 +38525,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "atom-conduit" = callPackage
+ "atom-conduit_0_3_1_1" = callPackage
({ mkDerivation, base, conduit, conduit-parse, data-default
, exceptions, foldl, hlint, lens-simple, mono-traversable, parsers
, quickcheck-instances, resourcet, tasty, tasty-hunit
@@ -38356,6 +38536,36 @@ self: {
pname = "atom-conduit";
version = "0.3.1.1";
sha256 = "d0603a5a726fade01a9fe6c5859d81c6f53d8770dc0db8b889e2717e63a3d2b3";
+ revision = "1";
+ editedCabalFile = "8ebc45eae1c2408eb475b62923c8801b07abe999d107f3d9b22ec22c2e8c1dad";
+ libraryHaskellDepends = [
+ base conduit conduit-parse exceptions foldl lens-simple
+ mono-traversable parsers text time timerep uri-bytestring
+ xml-conduit xml-conduit-parse xml-types
+ ];
+ testHaskellDepends = [
+ base conduit conduit-parse data-default exceptions hlint
+ lens-simple mono-traversable parsers quickcheck-instances resourcet
+ tasty tasty-hunit tasty-quickcheck text time uri-bytestring
+ xml-conduit xml-conduit-parse xml-types
+ ];
+ jailbreak = true;
+ description = "Streaming parser/renderer for the Atom 1.0 standard (RFC 4287).";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "atom-conduit" = callPackage
+ ({ mkDerivation, base, conduit, conduit-parse, data-default
+ , exceptions, foldl, hlint, lens-simple, mono-traversable, parsers
+ , quickcheck-instances, resourcet, tasty, tasty-hunit
+ , tasty-quickcheck, text, time, timerep, uri-bytestring
+ , xml-conduit, xml-conduit-parse, xml-types
+ }:
+ mkDerivation {
+ pname = "atom-conduit";
+ version = "0.3.1.2";
+ sha256 = "ab469b789cd81a5dab366c367a5b86a073e7cfc8fbb1a978d3107441795f7a22";
libraryHaskellDepends = [
base conduit conduit-parse exceptions foldl lens-simple
mono-traversable parsers text time timerep uri-bytestring
@@ -40141,6 +40351,7 @@ self: {
mtl QuickCheck quickcheck-instances resourcet tagged tasty
tasty-quickcheck text time transformers transformers-base
];
+ jailbreak = true;
doCheck = false;
homepage = "http://github.com/aristidb/aws";
description = "Amazon Web Services (AWS) for Haskell";
@@ -43251,6 +43462,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "bifunctors_5_4" = callPackage
+ ({ mkDerivation, base, base-orphans, comonad, containers, hspec
+ , QuickCheck, semigroups, tagged, template-haskell, transformers
+ , transformers-compat
+ }:
+ mkDerivation {
+ pname = "bifunctors";
+ version = "5.4";
+ sha256 = "47d5c35c00d743ded8116d598cfc81c88acea11859375709d9b54c94f4e0a26d";
+ libraryHaskellDepends = [
+ base base-orphans comonad containers semigroups tagged
+ template-haskell transformers transformers-compat
+ ];
+ testHaskellDepends = [
+ base hspec QuickCheck transformers transformers-compat
+ ];
+ homepage = "http://github.com/ekmett/bifunctors/";
+ description = "Bifunctors";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"bighugethesaurus" = callPackage
({ mkDerivation, base, HTTP, split }:
mkDerivation {
@@ -43482,15 +43715,15 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "binary_0_8_4_0" = callPackage
+ "binary_0_8_4_1" = callPackage
({ mkDerivation, array, base, bytestring, Cabal, containers
, directory, filepath, HUnit, QuickCheck, random, test-framework
, test-framework-quickcheck2
}:
mkDerivation {
pname = "binary";
- version = "0.8.4.0";
- sha256 = "d7a672366741152365a2c1e67525dc08bf606a4a8cae06f58c7f51a2e43f9018";
+ version = "0.8.4.1";
+ sha256 = "8d13c700fe96c84644a2af37003f488668fe9cd1f8e5b316fc929de26ce7e7ba";
libraryHaskellDepends = [ array base bytestring containers ];
testHaskellDepends = [
array base bytestring Cabal containers directory filepath HUnit
@@ -43846,7 +44079,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "binary-orphans" = callPackage
+ "binary-orphans_0_1_5_0" = callPackage
({ mkDerivation, aeson, base, binary, case-insensitive, hashable
, quickcheck-instances, scientific, tagged, tasty, tasty-quickcheck
, text, text-binary, time, unordered-containers, vector
@@ -43869,6 +44102,32 @@ self: {
homepage = "https://github.com/phadej/binary-orphans#readme";
description = "Orphan instances for binary";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "binary-orphans" = callPackage
+ ({ mkDerivation, aeson, base, binary, case-insensitive, hashable
+ , QuickCheck, quickcheck-instances, scientific, tagged, tasty
+ , tasty-quickcheck, text, text-binary, time, unordered-containers
+ , vector, vector-binary-instances
+ }:
+ mkDerivation {
+ pname = "binary-orphans";
+ version = "0.1.5.1";
+ sha256 = "c60442199ad6139654a6a672dc66d321dbe8a23199fb5269ef295b2adc23af4c";
+ libraryHaskellDepends = [
+ aeson base binary case-insensitive hashable scientific tagged text
+ text-binary time unordered-containers vector
+ vector-binary-instances
+ ];
+ testHaskellDepends = [
+ aeson base binary case-insensitive hashable QuickCheck
+ quickcheck-instances scientific tagged tasty tasty-quickcheck text
+ time unordered-containers vector
+ ];
+ homepage = "https://github.com/phadej/binary-orphans#readme";
+ description = "Orphan instances for binary";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"binary-parser_0_5_0_1" = callPackage
@@ -44385,7 +44644,7 @@ self: {
inherit (pkgs.xorg) libXrandr; inherit (pkgs.xorg) libXxf86vm;
inherit (pkgs) mesa;};
- "bindings-GLFW" = callPackage
+ "bindings-GLFW_3_1_2_0" = callPackage
({ mkDerivation, base, bindings-DSL, HUnit, libX11, libXcursor
, libXext, libXfixes, libXi, libXinerama, libXrandr, libXxf86vm
, mesa, template-haskell, test-framework, test-framework-hunit
@@ -44406,6 +44665,33 @@ 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.1";
+ sha256 = "083cea7d2262aecd8a80f74d80c82c2aaa84cf80e960d456e8e34fc38398decb";
+ 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;
+ description = "Low-level bindings to GLFW OpenGL library";
+ license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXcursor;
inherit (pkgs.xorg) libXext; inherit (pkgs.xorg) libXfixes;
inherit (pkgs.xorg) libXi; inherit (pkgs.xorg) libXinerama;
@@ -45595,18 +45881,19 @@ self: {
"bitcoin-payment-channel" = callPackage
({ mkDerivation, aeson, base, base16-bytestring, base58string
- , base64-bytestring, binary, bytestring, cereal, haskoin-core
- , hexstring, QuickCheck, scientific, text, time
+ , base64-bytestring, binary, bytestring, cereal, errors
+ , haskoin-core, hexstring, QuickCheck, scientific, text, time
}:
mkDerivation {
pname = "bitcoin-payment-channel";
- version = "0.1.1.3";
- sha256 = "3d597ad214a159e3ddfac79d169f06463bafa54428c2e2dfcee0236f00126aae";
+ version = "0.2.0.0";
+ sha256 = "0bfb82323eaf0064990c17cd2e544416c8e8dfe71749b01a86fca51eaa1d6dc1";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson base base16-bytestring base58string base64-bytestring binary
- bytestring cereal haskoin-core hexstring scientific text time
+ bytestring cereal errors haskoin-core hexstring scientific text
+ time
];
executableHaskellDepends = [
aeson base base16-bytestring base58string base64-bytestring binary
@@ -46011,18 +46298,19 @@ self: {
}) {};
"bitx-bitcoin" = callPackage
- ({ mkDerivation, aeson, base, bytestring, directory, doctest, hspec
- , http-client, http-client-tls, http-types, microlens, microlens-th
- , network, QuickCheck, safe, scientific, split, text, time
+ ({ mkDerivation, aeson, base, bytestring, directory, doctest
+ , exceptions, hspec, http-client, http-client-tls, http-types
+ , microlens, microlens-th, network, QuickCheck, safe, scientific
+ , split, text, time
}:
mkDerivation {
pname = "bitx-bitcoin";
- version = "0.9.0.0";
- sha256 = "9360e11c943707a18339273346e0d4ce84dd247ea9ca503d2143eb210113cf05";
+ version = "0.9.0.1";
+ sha256 = "5a0b9076aafd4ad9939891df0251c8bfaed687d12f4bcb21f46e3a5f85ffd332";
libraryHaskellDepends = [
- aeson base bytestring http-client http-client-tls http-types
- microlens microlens-th network QuickCheck scientific split text
- time
+ aeson base bytestring exceptions http-client http-client-tls
+ http-types microlens microlens-th network QuickCheck scientific
+ split text time
];
testHaskellDepends = [
aeson base bytestring directory doctest hspec http-client
@@ -46935,6 +47223,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "blockhash" = callPackage
+ ({ mkDerivation, base, bytestring, JuicyPixels
+ , optparse-applicative, primitive, vector, vector-algorithms
+ }:
+ mkDerivation {
+ pname = "blockhash";
+ version = "0.1.0.0";
+ sha256 = "81e50f190a92639b5d6545d544500001c6567fbda18338a9238b1809bc4d5449";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring primitive vector vector-algorithms
+ ];
+ executableHaskellDepends = [
+ base JuicyPixels optparse-applicative vector
+ ];
+ testHaskellDepends = [ base ];
+ homepage = "https://github.com/kseo/blockhash#readme";
+ description = "Blockhash perceptual image hash algorithm";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"blocking-transactions" = callPackage
({ mkDerivation, base, containers, parallel }:
mkDerivation {
@@ -47145,22 +47455,23 @@ self: {
}) {};
"bloodhound-amazonka-auth" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-elasticsearch, base
- , bloodhound, exceptions, http-client, http-types, tasty
- , tasty-hunit, time, transformers, uri-bytestring
+ ({ mkDerivation, aeson, amazonka, amazonka-core
+ , amazonka-elasticsearch, base, bloodhound, exceptions, http-client
+ , http-client-tls, http-types, lens, retry, tasty, tasty-hunit
+ , text, time, transformers, uri-bytestring
}:
mkDerivation {
pname = "bloodhound-amazonka-auth";
- version = "0.1.0.0";
- sha256 = "8a0bff2793fe8493e3d6239b43da5b15c1d31bfec71cad6bac0b20f0fd57c297";
+ version = "0.1.1.0";
+ sha256 = "cf92a14be0e0d5552f2b00cdb19ab320f93ae612b92589999b674a3984858504";
libraryHaskellDepends = [
amazonka-core amazonka-elasticsearch base bloodhound exceptions
http-client http-types time transformers uri-bytestring
];
testHaskellDepends = [
- amazonka-core base http-client tasty tasty-hunit time
+ aeson amazonka amazonka-core base bloodhound http-client
+ http-client-tls lens retry tasty tasty-hunit text time
];
- jailbreak = true;
homepage = "http://github.com/MichaelXavier/bloodhound-amazonka-auth#readme";
description = "Adds convenient Amazon ElasticSearch Service authentication to Bloodhound";
license = stdenv.lib.licenses.bsd3;
@@ -47579,14 +47890,13 @@ self: {
}:
mkDerivation {
pname = "boomange";
- version = "0.1.3.1";
- sha256 = "a0e249f91c62048a2cbf1d2935deab37ff214099634c15bb308a41fa72a3e1e9";
+ version = "0.1.3.2";
+ sha256 = "0a0d3eab319a67e76c0552a6d7bee457b7e102a2b10a9ba56b186dccfa008069";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
base containers descrilo directory filepath simtreelo
];
- jailbreak = true;
description = "A Bookmarks manager with a HTML generator";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -48192,7 +48502,7 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
- "broadcast-chan" = callPackage
+ "broadcast-chan_0_1_0" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "broadcast-chan";
@@ -48202,6 +48512,19 @@ self: {
homepage = "https://github.com/merijn/broadcast-chan";
description = "Broadcast channel type that avoids 0 reader space leaks";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "broadcast-chan" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "broadcast-chan";
+ version = "0.1.1";
+ sha256 = "ad5bd65a301aff6df38c4111f02e73cce3bcfed7bfae6c66c2e70310f1e985f2";
+ libraryHaskellDepends = [ base ];
+ homepage = "https://github.com/merijn/broadcast-chan";
+ description = "Broadcast channel type that avoids 0 reader space leaks";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"broccoli" = callPackage
@@ -48321,7 +48644,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "bson" = callPackage
+ "bson_0_3_2_2" = callPackage
({ mkDerivation, base, binary, bytestring, cryptohash
, data-binary-ieee754, mtl, network, QuickCheck, test-framework
, test-framework-quickcheck2, text, time
@@ -48341,6 +48664,29 @@ self: {
homepage = "http://github.com/mongodb-haskell/bson";
description = "BSON documents are JSON-like objects with a standard binary encoding";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "bson" = callPackage
+ ({ mkDerivation, base, binary, bytestring, cryptohash
+ , data-binary-ieee754, mtl, network, QuickCheck, test-framework
+ , test-framework-quickcheck2, text, time
+ }:
+ mkDerivation {
+ pname = "bson";
+ version = "0.3.2.3";
+ sha256 = "9b3aba435365cdfbbd0ba8ccb3400e961d56329da57f6de2e1e391004c374982";
+ libraryHaskellDepends = [
+ base binary bytestring cryptohash data-binary-ieee754 mtl network
+ text time
+ ];
+ testHaskellDepends = [
+ base binary bytestring cryptohash data-binary-ieee754 mtl network
+ QuickCheck test-framework test-framework-quickcheck2 text time
+ ];
+ homepage = "http://github.com/mongodb-haskell/bson";
+ description = "BSON documents are JSON-like objects with a standard binary encoding";
+ license = "unknown";
}) {};
"bson-generic" = callPackage
@@ -50592,34 +50938,6 @@ self: {
}) {};
"cabal-helper" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, cabal-install, directory
- , extra, filepath, ghc-prim, mtl, process, template-haskell
- , temporary, transformers, unix, utf8-string
- }:
- mkDerivation {
- pname = "cabal-helper";
- version = "0.7.0.1";
- sha256 = "4c158f81ad325a0b2bfd5bfec149851f59837fd73775c8b4da0050bdeca0182d";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base Cabal directory filepath ghc-prim mtl process transformers
- ];
- executableHaskellDepends = [
- base bytestring Cabal directory filepath ghc-prim process
- template-haskell temporary transformers utf8-string
- ];
- testHaskellDepends = [
- base bytestring Cabal directory extra filepath ghc-prim mtl process
- template-haskell temporary transformers unix utf8-string
- ];
- testToolDepends = [ cabal-install ];
- doCheck = false;
- description = "Simple interface to some of Cabal's configuration state used by ghc-mod";
- license = stdenv.lib.licenses.agpl3;
- }) {};
-
- "cabal-helper_0_7_1_0" = callPackage
({ mkDerivation, base, bytestring, Cabal, cabal-install, directory
, extra, filepath, ghc-prim, mtl, process, template-haskell
, temporary, transformers, unix, utf8-string
@@ -50628,8 +50946,8 @@ self: {
pname = "cabal-helper";
version = "0.7.1.0";
sha256 = "7c78b875b5f246b8422b641923d2ffe593bf65ce9e99373e19ef8372df8db66f";
- revision = "1";
- editedCabalFile = "1d0a9e90761cbdc1804e396eeb3bf10ae5663f5b3ce637a5f80238b4f04ed5cd";
+ revision = "2";
+ editedCabalFile = "b84eff37825d78f316e9712e175937b54b35d7c67eed8741a3db160800fbd177";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -50644,11 +50962,9 @@ self: {
template-haskell temporary transformers unix utf8-string
];
testToolDepends = [ cabal-install ];
- jailbreak = true;
doCheck = false;
description = "Simple interface to some of Cabal's configuration state used by ghc-mod";
license = stdenv.lib.licenses.agpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cabal-info" = callPackage
@@ -52507,28 +52823,37 @@ self: {
}) {};
"camfort" = callPackage
- ({ mkDerivation, alex, array, base, comonad, containers, directory
- , fclabels, generic-deriving, happy, haskell-src, hmatrix
- , language-fortran, matrix, mtl, syb, syz, template-haskell, text
- , transformers, uniplate, vector
+ ({ mkDerivation, alex, array, base, bytestring, comonad, containers
+ , directory, fclabels, fgl, filepath, fortran-src, generic-deriving
+ , GenericPretty, ghc-prim, happy, haskell-src, hmatrix, hspec
+ , language-fortran, matrix, mtl, QuickCheck, regex-base, regex-pcre
+ , syb, syz, template-haskell, text, transformers, uniplate, vector
}:
mkDerivation {
pname = "camfort";
- version = "0.700";
- sha256 = "f5978dfbc1af77fc7fb0ff0190fae5d58f797301acbec7115ce66ab146913151";
+ version = "0.800";
+ sha256 = "353634acb37e99cda4f747fc61309583c9c556b9eec579db79dd089c0202a450";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- array base comonad containers directory fclabels generic-deriving
+ array base bytestring comonad containers directory fclabels fgl
+ filepath fortran-src generic-deriving GenericPretty ghc-prim
haskell-src hmatrix language-fortran matrix mtl syb syz
template-haskell text transformers uniplate vector
];
libraryToolDepends = [ alex happy ];
executableHaskellDepends = [
- array base comonad containers directory fclabels generic-deriving
- haskell-src hmatrix language-fortran matrix mtl syb syz
- template-haskell text transformers uniplate vector
+ array base bytestring comonad containers directory fclabels fgl
+ filepath fortran-src generic-deriving GenericPretty ghc-prim
+ haskell-src hmatrix language-fortran matrix mtl QuickCheck
+ regex-base regex-pcre syb syz template-haskell text transformers
+ uniplate vector
];
+ testHaskellDepends = [
+ base bytestring containers directory filepath fortran-src hspec mtl
+ QuickCheck uniplate
+ ];
+ jailbreak = true;
description = "CamFort - Cambridge Fortran infrastructure";
license = stdenv.lib.licenses.asl20;
hydraPlatforms = [ "x86_64-darwin" ];
@@ -52606,18 +52931,17 @@ self: {
}) {};
"canteven-log" = callPackage
- ({ mkDerivation, aeson, base, bytestring, canteven-config
- , directory, fast-logger, filepath, hslogger, monad-logger
- , template-haskell, text, time, transformers, yaml
+ ({ mkDerivation, aeson, base, bytestring, directory, fast-logger
+ , filepath, monad-logger, template-haskell, text, time
+ , transformers, yaml
}:
mkDerivation {
pname = "canteven-log";
- version = "0.3.0.3";
- sha256 = "2496d0cc6aad2108ad9982229e078144d8c8a7f427e86803a1e10a6b6bc6a36b";
+ version = "1.0.0.0";
+ sha256 = "67d58599b7ed949606208aab1c17d333d4793a911405e349c710db4267d2e098";
libraryHaskellDepends = [
- aeson base bytestring canteven-config directory fast-logger
- filepath hslogger monad-logger template-haskell text time
- transformers yaml
+ aeson base bytestring directory fast-logger filepath monad-logger
+ template-haskell text time transformers yaml
];
jailbreak = true;
homepage = "https://github.com/SumAll/haskell-canteven-log";
@@ -54321,6 +54645,23 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "cereal-io-streams" = callPackage
+ ({ mkDerivation, base, bytestring, cereal, derive, HUnit
+ , io-streams, mtl, QuickCheck, tasty, tasty-hunit, tasty-quickcheck
+ }:
+ mkDerivation {
+ pname = "cereal-io-streams";
+ version = "0.0.1.0";
+ sha256 = "b32bb775ec6f93fcc7246b5903473c893995b45d11f82c29913a20f459e568f1";
+ libraryHaskellDepends = [ base bytestring cereal io-streams ];
+ testHaskellDepends = [
+ base bytestring cereal derive HUnit io-streams mtl QuickCheck tasty
+ tasty-hunit tasty-quickcheck
+ ];
+ description = "io-streams support for the cereal binary serialization library";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"cereal-plus" = callPackage
({ mkDerivation, array, base, bytestring, cereal, containers
, errors, hashable, hashtables, HTF, HUnit, mmorph, mtl, QuickCheck
@@ -54347,6 +54688,23 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "cereal-streams" = callPackage
+ ({ mkDerivation, base, bytestring, cereal, derive, HUnit
+ , io-streams, mtl, QuickCheck, tasty, tasty-hunit, tasty-quickcheck
+ }:
+ mkDerivation {
+ pname = "cereal-streams";
+ version = "0.0.1.0";
+ sha256 = "f2f7852ee6a64bfe8d526ee46d178973a58079c8a3f8390f2a367546b4d8b7cc";
+ libraryHaskellDepends = [ base bytestring cereal io-streams ];
+ testHaskellDepends = [
+ base bytestring cereal derive HUnit io-streams mtl QuickCheck tasty
+ tasty-hunit tasty-quickcheck
+ ];
+ description = "Use cereal to encode/decode io-streams";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"cereal-text" = callPackage
({ mkDerivation, base, cereal, text }:
mkDerivation {
@@ -54599,20 +54957,20 @@ self: {
({ mkDerivation, ansi-terminal, array, async, base, bytestring
, cmdargs, containers, directory, dlist, either, filepath, ghc-prim
, mtl, process, regex-base, regex-pcre, regex-posix, safe, split
- , stm, stringsearch, transformers, unix-compat
- , unordered-containers
+ , stm, stringsearch, transformers, unicode-show, unix-compat
+ , unordered-containers, utf8-string
}:
mkDerivation {
pname = "cgrep";
- version = "6.6.15";
- sha256 = "f58a557fecdc7066ec60653e7c902b8baedcf4f44a81f890265374b6dab9affa";
+ version = "6.6.16";
+ sha256 = "7161e331f409ee95abfab14f720ad300ce4c9bd37a9fae74de6643c0f30b134b";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
ansi-terminal array async base bytestring cmdargs containers
directory dlist either filepath ghc-prim mtl process regex-base
regex-pcre regex-posix safe split stm stringsearch transformers
- unix-compat unordered-containers
+ unicode-show unix-compat unordered-containers utf8-string
];
homepage = "http://awgn.github.io/cgrep/";
description = "Command line tool";
@@ -55100,7 +55458,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "checkers" = callPackage
+ "checkers_0_4_4" = callPackage
({ mkDerivation, array, base, QuickCheck, random }:
mkDerivation {
pname = "checkers";
@@ -55109,6 +55467,18 @@ self: {
libraryHaskellDepends = [ array base QuickCheck random ];
description = "Check properties on standard classes and data structures";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "checkers" = callPackage
+ ({ mkDerivation, array, base, QuickCheck, random }:
+ mkDerivation {
+ pname = "checkers";
+ version = "0.4.5";
+ sha256 = "7963cf60f9fda15ea022351f75f8e5e8636f79b163ee4ad05e893f74e5112d91";
+ libraryHaskellDepends = [ array base QuickCheck random ];
+ description = "Check properties on standard classes and data structures";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"chell_0_4" = callPackage
@@ -56029,14 +56399,13 @@ self: {
}:
mkDerivation {
pname = "clang-pure";
- version = "0.1.0.0";
- sha256 = "7c5cfef49732236bc6d6da95b89087c07447d9bf235c032c16c7e6850a747b08";
+ version = "0.1.0.1";
+ sha256 = "9beb6dd2d0a21a4057a0372d5fc9da2984ffc455bd24ed3c93c7b4ba7ec20900";
libraryHaskellDepends = [
base bytestring containers contravariant inline-c stm
template-haskell vector
];
librarySystemDepends = [ clang ];
- jailbreak = true;
description = "Pure C++ code analysis with libclang";
license = stdenv.lib.licenses.asl20;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -56410,7 +56779,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "clash-ghc" = callPackage
+ "clash-ghc_0_6_19" = callPackage
({ mkDerivation, array, base, bifunctors, bytestring, clash-lib
, clash-prelude, clash-systemverilog, clash-verilog, clash-vhdl
, containers, deepseq, directory, filepath, ghc, ghc-typelits-extra
@@ -56437,6 +56806,34 @@ self: {
homepage = "http://www.clash-lang.org/";
description = "CAES Language for Synchronous Hardware";
license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "clash-ghc" = callPackage
+ ({ mkDerivation, array, base, bifunctors, bytestring, clash-lib
+ , clash-prelude, clash-systemverilog, clash-verilog, clash-vhdl
+ , containers, deepseq, directory, filepath, ghc, ghc-typelits-extra
+ , ghc-typelits-natnormalise, hashable, haskeline, lens, mtl
+ , process, text, time, transformers, unbound-generics, unix
+ , unordered-containers
+ }:
+ mkDerivation {
+ pname = "clash-ghc";
+ version = "0.6.20";
+ sha256 = "9cd2247062148e39cb1eb9f35a1fca9a1a8ad06d0d273eb7aa4a971673c68929";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ array base bifunctors bytestring clash-lib clash-prelude
+ clash-systemverilog clash-verilog clash-vhdl containers deepseq
+ directory filepath ghc ghc-typelits-extra ghc-typelits-natnormalise
+ hashable haskeline lens mtl process text time transformers
+ unbound-generics unix unordered-containers
+ ];
+ jailbreak = true;
+ homepage = "http://www.clash-lang.org/";
+ description = "CAES Language for Synchronous Hardware";
+ license = stdenv.lib.licenses.bsd2;
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
@@ -56697,7 +57094,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "clash-lib" = callPackage
+ "clash-lib_0_6_17" = callPackage
({ mkDerivation, aeson, attoparsec, base, bytestring, clash-prelude
, concurrent-supply, containers, deepseq, directory, errors, fgl
, filepath, hashable, lens, mtl, pretty, process, template-haskell
@@ -56717,6 +57114,29 @@ self: {
homepage = "http://www.clash-lang.org/";
description = "CAES Language for Synchronous Hardware - As a Library";
license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "clash-lib" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, bytestring, clash-prelude
+ , concurrent-supply, containers, deepseq, directory, errors, fgl
+ , filepath, ghc, hashable, lens, mtl, pretty, process
+ , template-haskell, text, time, transformers, unbound-generics
+ , unordered-containers, uu-parsinglib, wl-pprint-text
+ }:
+ mkDerivation {
+ pname = "clash-lib";
+ version = "0.6.18";
+ sha256 = "84031ce63203a0e339ec64de2f8804a8721a04b8be7f14e56faa8671bbcbb9fc";
+ libraryHaskellDepends = [
+ aeson attoparsec base bytestring clash-prelude concurrent-supply
+ containers deepseq directory errors fgl filepath ghc hashable lens
+ mtl pretty process template-haskell text time transformers
+ unbound-generics unordered-containers uu-parsinglib wl-pprint-text
+ ];
+ homepage = "http://www.clash-lang.org/";
+ description = "CAES Language for Synchronous Hardware - As a Library";
+ license = stdenv.lib.licenses.bsd2;
}) {};
"clash-prelude_0_9_2" = callPackage
@@ -56850,7 +57270,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "clash-prelude" = callPackage
+ "clash-prelude_0_10_9" = callPackage
({ mkDerivation, array, base, data-default, doctest, ghc-prim
, ghc-typelits-extra, ghc-typelits-natnormalise, integer-gmp, lens
, QuickCheck, reflection, singletons, template-haskell
@@ -56859,8 +57279,29 @@ self: {
pname = "clash-prelude";
version = "0.10.9";
sha256 = "4a96fa9222427df9b515c343d0db6f53441c710141a09a344ee47ab30ebacee1";
- revision = "1";
- editedCabalFile = "60f4e89dd73b84c4798fc7fd7f52d58afd7eb3069b5d41994fb3d43be4eb40f5";
+ revision = "2";
+ editedCabalFile = "966a6c0c7d74ee6932671fc44d7cd1d809ef6a11523ff5caf4c4a9c13583cb80";
+ libraryHaskellDepends = [
+ array base data-default ghc-prim ghc-typelits-extra
+ ghc-typelits-natnormalise integer-gmp lens QuickCheck reflection
+ singletons template-haskell
+ ];
+ testHaskellDepends = [ base doctest ];
+ homepage = "http://www.clash-lang.org/";
+ description = "CAES Language for Synchronous Hardware - Prelude library";
+ license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "clash-prelude" = callPackage
+ ({ mkDerivation, array, base, data-default, doctest, ghc-prim
+ , ghc-typelits-extra, ghc-typelits-natnormalise, integer-gmp, lens
+ , QuickCheck, reflection, singletons, template-haskell
+ }:
+ mkDerivation {
+ pname = "clash-prelude";
+ version = "0.10.10";
+ sha256 = "64577debc8c970919268374eb0b422a4b8152422df3683ce3b665cc1cfa94d9c";
libraryHaskellDepends = [
array base data-default ghc-prim ghc-typelits-extra
ghc-typelits-natnormalise integer-gmp lens QuickCheck reflection
@@ -57012,7 +57453,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "clash-systemverilog" = callPackage
+ "clash-systemverilog_0_6_6" = callPackage
({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl
, text, unordered-containers, wl-pprint-text
}:
@@ -57029,6 +57470,24 @@ self: {
homepage = "http://www.clash-lang.org/";
description = "CAES Language for Synchronous Hardware - SystemVerilog backend";
license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "clash-systemverilog" = callPackage
+ ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl
+ , text, unordered-containers, wl-pprint-text
+ }:
+ mkDerivation {
+ pname = "clash-systemverilog";
+ version = "0.6.7";
+ sha256 = "377e57de5f09852b6c2059fc8d114d01b48005f270265092e98251d3c9c4d92b";
+ libraryHaskellDepends = [
+ base clash-lib clash-prelude fgl lens mtl text unordered-containers
+ wl-pprint-text
+ ];
+ homepage = "http://www.clash-lang.org/";
+ description = "CAES Language for Synchronous Hardware - SystemVerilog backend";
+ license = stdenv.lib.licenses.bsd2;
}) {};
"clash-verilog_0_5_7" = callPackage
@@ -57157,7 +57616,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "clash-verilog" = callPackage
+ "clash-verilog_0_6_6" = callPackage
({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl
, text, unordered-containers, wl-pprint-text
}:
@@ -57174,6 +57633,24 @@ self: {
homepage = "http://www.clash-lang.org/";
description = "CAES Language for Synchronous Hardware - Verilog backend";
license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "clash-verilog" = callPackage
+ ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl
+ , text, unordered-containers, wl-pprint-text
+ }:
+ mkDerivation {
+ pname = "clash-verilog";
+ version = "0.6.7";
+ sha256 = "1794d45c04ce52c6488f970a465861785948e2ffa2ca275678efdb75902945ab";
+ libraryHaskellDepends = [
+ base clash-lib clash-prelude fgl lens mtl text unordered-containers
+ wl-pprint-text
+ ];
+ homepage = "http://www.clash-lang.org/";
+ description = "CAES Language for Synchronous Hardware - Verilog backend";
+ license = stdenv.lib.licenses.bsd2;
}) {};
"clash-vhdl_0_5_8" = callPackage
@@ -57374,7 +57851,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "clash-vhdl" = callPackage
+ "clash-vhdl_0_6_13" = callPackage
({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl
, text, unordered-containers, wl-pprint-text
}:
@@ -57389,6 +57866,24 @@ self: {
homepage = "http://www.clash-lang.org/";
description = "CAES Language for Synchronous Hardware - VHDL backend";
license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "clash-vhdl" = callPackage
+ ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl
+ , text, unordered-containers, wl-pprint-text
+ }:
+ mkDerivation {
+ pname = "clash-vhdl";
+ version = "0.6.14";
+ sha256 = "1a1e42191123299d9c8e0aaed7f95f81cd3059bff91321e028e9c9641dc2b0e0";
+ libraryHaskellDepends = [
+ base clash-lib clash-prelude fgl lens mtl text unordered-containers
+ wl-pprint-text
+ ];
+ homepage = "http://www.clash-lang.org/";
+ description = "CAES Language for Synchronous Hardware - VHDL backend";
+ license = stdenv.lib.licenses.bsd2;
}) {};
"classify" = callPackage
@@ -58539,7 +59034,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) openssl;};
- "clckwrks" = callPackage
+ "clckwrks_0_23_16" = callPackage
({ mkDerivation, acid-state, aeson, aeson-qq, attoparsec, base
, blaze-html, bytestring, cereal, containers, directory, filepath
, happstack-authenticate, happstack-hsp, happstack-jmacro
@@ -58567,6 +59062,41 @@ 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;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) openssl;};
+
+ "clckwrks" = callPackage
+ ({ mkDerivation, acid-state, aeson, aeson-qq, attoparsec, base
+ , blaze-html, bytestring, cereal, containers, directory, filepath
+ , happstack-authenticate, happstack-hsp, happstack-jmacro
+ , happstack-server, happstack-server-tls, hsp, hsx-jmacro, hsx2hs
+ , ixset, jmacro, lens, mtl, network, network-uri, old-locale
+ , openssl, process, random, reform, reform-happstack, reform-hsp
+ , safecopy, stm, text, time, time-locale-compat
+ , unordered-containers, userid, utf8-string, uuid-orphans
+ , uuid-types, vector, web-plugins, web-routes, web-routes-happstack
+ , web-routes-hsp, web-routes-th, xss-sanitize
+ }:
+ mkDerivation {
+ pname = "clckwrks";
+ version = "0.23.17";
+ sha256 = "ac6134a2b6a54d08aadda1fa2251120fb034238397199c62fc50d980d143b08d";
+ libraryHaskellDepends = [
+ acid-state aeson aeson-qq attoparsec base blaze-html bytestring
+ cereal containers directory filepath happstack-authenticate
+ happstack-hsp happstack-jmacro happstack-server
+ happstack-server-tls hsp hsx-jmacro hsx2hs ixset jmacro lens mtl
+ network network-uri old-locale process random reform
+ reform-happstack reform-hsp safecopy stm text time
+ time-locale-compat unordered-containers userid utf8-string
+ uuid-orphans uuid-types vector web-plugins web-routes
+ web-routes-happstack web-routes-hsp web-routes-th xss-sanitize
+ ];
+ librarySystemDepends = [ openssl ];
homepage = "http://www.clckwrks.com/";
description = "A secure, reliable content management system (CMS) and blogging platform";
license = stdenv.lib.licenses.bsd3;
@@ -58979,7 +59509,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "clientsession" = callPackage
+ "clientsession_0_9_1_1" = callPackage
({ mkDerivation, base, base64-bytestring, bytestring, cereal
, cipher-aes, containers, cprng-aes, crypto-api, crypto-random
, directory, entropy, hspec, HUnit, QuickCheck, setenv, skein
@@ -59003,6 +59533,33 @@ self: {
homepage = "http://github.com/yesodweb/clientsession/tree/master";
description = "Securely store session data in a client-side cookie";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "clientsession" = callPackage
+ ({ mkDerivation, base, base64-bytestring, bytestring, cereal
+ , cipher-aes, containers, cprng-aes, crypto-api, crypto-random
+ , directory, entropy, hspec, HUnit, QuickCheck, setenv, skein
+ , tagged, transformers
+ }:
+ mkDerivation {
+ pname = "clientsession";
+ version = "0.9.1.2";
+ sha256 = "5915adc4de26d2a8b03f1a445bac0b0f5d10a5b0380a4eed71b79a20a727d068";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base base64-bytestring bytestring cereal cipher-aes cprng-aes
+ crypto-api crypto-random directory entropy setenv skein tagged
+ ];
+ executableHaskellDepends = [ base ];
+ testHaskellDepends = [
+ base bytestring cereal containers hspec HUnit QuickCheck
+ transformers
+ ];
+ homepage = "http://github.com/yesodweb/clientsession/tree/master";
+ description = "Securely store session data in a client-side cookie";
+ license = stdenv.lib.licenses.mit;
}) {};
"clifford" = callPackage
@@ -59530,7 +60087,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "cmark" = callPackage
+ "cmark_0_5_2_1" = callPackage
({ mkDerivation, base, bytestring, HUnit, text }:
mkDerivation {
pname = "cmark";
@@ -59541,6 +60098,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.3.1";
+ sha256 = "4ae12da7e712d10a662a8323e7bc513daa1abf3ad4d055054b5f19b1122ca124";
+ 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
@@ -63886,6 +64457,8 @@ self: {
pname = "consumers";
version = "2.0";
sha256 = "467af01ed4ce5f5240c16a0693e32f27f1f098723d11c7f1eab004d08f285995";
+ revision = "1";
+ editedCabalFile = "5f7410822e5c36feeb12b24e3bbcb02bb6ed295812ef013913e2afa81f1980c8";
libraryHaskellDepends = [
base containers exceptions hpqtypes lifted-base lifted-threads log
monad-control mtl stm time transformers-base
@@ -64810,7 +65383,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "cookie" = callPackage
+ "cookie_0_4_2" = callPackage
({ mkDerivation, base, blaze-builder, bytestring
, data-default-class, deepseq, HUnit, old-locale, QuickCheck, tasty
, tasty-hunit, tasty-quickcheck, text, time
@@ -64830,6 +65403,29 @@ self: {
homepage = "http://github.com/snoyberg/cookie";
description = "HTTP cookie parsing and rendering";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "cookie" = callPackage
+ ({ mkDerivation, base, blaze-builder, bytestring
+ , data-default-class, deepseq, HUnit, old-locale, QuickCheck, tasty
+ , tasty-hunit, tasty-quickcheck, text, time
+ }:
+ mkDerivation {
+ pname = "cookie";
+ version = "0.4.2.1";
+ sha256 = "06413091908e20ce154effdcd354d7eea1447380e29a8acdb15c3347512852e4";
+ libraryHaskellDepends = [
+ base blaze-builder bytestring data-default-class deepseq old-locale
+ text time
+ ];
+ testHaskellDepends = [
+ base blaze-builder bytestring HUnit QuickCheck tasty tasty-hunit
+ tasty-quickcheck text time
+ ];
+ homepage = "http://github.com/snoyberg/cookie";
+ description = "HTTP cookie parsing and rendering";
+ license = stdenv.lib.licenses.mit;
}) {};
"coordinate" = callPackage
@@ -64838,8 +65434,8 @@ self: {
}:
mkDerivation {
pname = "coordinate";
- version = "0.1.1";
- sha256 = "78bf22add331dead9d2fc3ea4c0f626d821462c47bae72be8833282e9455e7ca";
+ version = "0.1.2";
+ sha256 = "dba23e66c6669344571ee24b7ce65b3817241a4211e608cfb879daa4e5dbf052";
libraryHaskellDepends = [ base lens transformers ];
testHaskellDepends = [
base directory doctest filepath QuickCheck template-haskell
@@ -65343,7 +65939,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "courier" = callPackage
+ "courier_0_1_1_2" = callPackage
({ mkDerivation, async, base, bytestring, cereal, containers
, directory, hslogger, HUnit, network, stm, test-framework
, test-framework-hunit, text, uuid
@@ -65366,6 +65962,32 @@ self: {
homepage = "http://github.com/hargettp/courier";
description = "A message-passing library for simplifying network applications";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "courier" = callPackage
+ ({ mkDerivation, async, base, bytestring, cereal, containers
+ , directory, hslogger, HUnit, network, stm, test-framework
+ , test-framework-hunit, text, uuid
+ }:
+ mkDerivation {
+ pname = "courier";
+ version = "0.1.1.3";
+ sha256 = "0cf44b62c2b134a7bf9aa779ef2b04d91f4b44a46273bb478ecdcbd9d1198e83";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ async base bytestring cereal containers hslogger network stm text
+ uuid
+ ];
+ executableHaskellDepends = [ base cereal ];
+ testHaskellDepends = [
+ async base cereal containers directory hslogger HUnit network stm
+ test-framework test-framework-hunit
+ ];
+ homepage = "http://github.com/hargettp/courier";
+ description = "A message-passing library for simplifying network applications";
+ license = stdenv.lib.licenses.mit;
}) {};
"court" = callPackage
@@ -67885,7 +68507,7 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "css-text" = callPackage
+ "css-text_0_1_2_1" = callPackage
({ mkDerivation, attoparsec, base, hspec, QuickCheck, text }:
mkDerivation {
pname = "css-text";
@@ -67896,6 +68518,21 @@ self: {
homepage = "http://www.yesodweb.com/";
description = "CSS parser and renderer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "css-text" = callPackage
+ ({ mkDerivation, attoparsec, base, hspec, QuickCheck, text }:
+ mkDerivation {
+ pname = "css-text";
+ version = "0.1.2.2";
+ sha256 = "dff564ac08587950dab4fedf07c357d9907099f60c87bf465d648a8965e61987";
+ libraryHaskellDepends = [ attoparsec base text ];
+ testHaskellDepends = [ attoparsec base hspec QuickCheck text ];
+ doCheck = false;
+ homepage = "http://www.yesodweb.com/";
+ description = "CSS parser and renderer";
+ license = stdenv.lib.licenses.mit;
}) {};
"csv" = callPackage
@@ -69498,24 +70135,6 @@ self: {
}) {};
"data-default" = callPackage
- ({ mkDerivation, base, data-default-class
- , data-default-instances-base, data-default-instances-containers
- , data-default-instances-dlist, data-default-instances-old-locale
- }:
- mkDerivation {
- pname = "data-default";
- version = "0.6.0";
- sha256 = "1f84023990e44e4555ac54e6bc84e4efa3bb42a0851ce0bb7b3358ef5344386d";
- libraryHaskellDepends = [
- base data-default-class data-default-instances-base
- data-default-instances-containers data-default-instances-dlist
- data-default-instances-old-locale
- ];
- description = "A class for types with a default value";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "data-default_0_7_1_1" = callPackage
({ mkDerivation, base, data-default-class
, data-default-instances-containers, data-default-instances-dlist
, data-default-instances-old-locale
@@ -69528,24 +70147,23 @@ self: {
base data-default-class data-default-instances-containers
data-default-instances-dlist data-default-instances-old-locale
];
- jailbreak = true;
+ description = "A class for types with a default value";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "data-default-class_0_0_1" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "data-default-class";
+ version = "0.0.1";
+ sha256 = "adc8ee80a6f0e5903339a2b8685220b32bc3e23856d3c12186cc464ae5c88f31";
+ libraryHaskellDepends = [ base ];
description = "A class for types with a default value";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"data-default-class" = callPackage
- ({ mkDerivation, base }:
- mkDerivation {
- pname = "data-default-class";
- version = "0.0.1";
- sha256 = "adc8ee80a6f0e5903339a2b8685220b32bc3e23856d3c12186cc464ae5c88f31";
- libraryHaskellDepends = [ base ];
- description = "A class for types with a default value";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "data-default-class_0_1_2_0" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "data-default-class";
@@ -69554,7 +70172,6 @@ self: {
libraryHaskellDepends = [ base ];
description = "A class for types with a default value";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"data-default-extra" = callPackage
@@ -69619,7 +70236,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "data-default-instances-base" = callPackage
+ "data-default-instances-base_0_1_0" = callPackage
({ mkDerivation, base, data-default-class }:
mkDerivation {
pname = "data-default-instances-base";
@@ -69628,19 +70245,18 @@ self: {
libraryHaskellDepends = [ base data-default-class ];
description = "Default instances for types in base";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "data-default-instances-base_0_1_0_1" = callPackage
+ "data-default-instances-base" = callPackage
({ mkDerivation, base, data-default-class }:
mkDerivation {
pname = "data-default-instances-base";
version = "0.1.0.1";
sha256 = "844fe453f674b6b0998da804465914abce8936c5e640d8bb8bff37ad07d7a17a";
libraryHaskellDepends = [ base data-default-class ];
- jailbreak = true;
description = "Default instances for types in base";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"data-default-instances-bytestring" = callPackage
@@ -69650,6 +70266,7 @@ self: {
version = "0.0.1";
sha256 = "4c431278d0dc1054fd531281db70d8615f88d9b2a29924aba2567fb3cf647220";
libraryHaskellDepends = [ base bytestring data-default-class ];
+ jailbreak = true;
homepage = "https://github.com/trskop/data-default-extra";
description = "Default instances for (lazy and strict) ByteString, Builder and ShortByteString";
license = stdenv.lib.licenses.bsd3;
@@ -69662,6 +70279,7 @@ self: {
version = "0.0.1";
sha256 = "430135708ad9d0730a4c3a3d1eb574bdc6f07547a5a9c5f30202e1e786070ab4";
libraryHaskellDepends = [ case-insensitive data-default-class ];
+ jailbreak = true;
homepage = "https://github.com/trskop/data-default-extra";
description = "Default instance for CI type from case-insensitive package";
license = stdenv.lib.licenses.bsd3;
@@ -69724,6 +70342,7 @@ self: {
version = "0.0.1";
sha256 = "db5d4c46cf36ce5956ffd0affe0f2c48e1c000b9bd61821d3e6c1b0171060cdf";
libraryHaskellDepends = [ base data-default-class text ];
+ jailbreak = true;
homepage = "https://github.com/trskop/data-default-extra";
description = "Default instances for (lazy and strict) Text and Text Builder";
license = stdenv.lib.licenses.bsd3;
@@ -69738,6 +70357,7 @@ self: {
libraryHaskellDepends = [
data-default-class unordered-containers
];
+ jailbreak = true;
homepage = "https://github.com/trskop/data-default-extra";
description = "Default instances for unordered-containers";
license = stdenv.lib.licenses.bsd3;
@@ -69750,6 +70370,7 @@ self: {
version = "0.0.1";
sha256 = "9ac84473a3af8b0c5e795ea5f84a34a0c18c3b2d5e17ce428206203f9d794666";
libraryHaskellDepends = [ data-default-class vector ];
+ jailbreak = true;
homepage = "https://github.com/trskop/data-default-extra";
description = "Default instances for types defined in vector package";
license = stdenv.lib.licenses.bsd3;
@@ -69817,6 +70438,23 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "data-elf" = callPackage
+ ({ mkDerivation, base, binary, bytestring, data-endian, data-flags
+ , data-sword, text-latin1
+ }:
+ mkDerivation {
+ pname = "data-elf";
+ version = "0.1.0.1";
+ sha256 = "33f6f3508721bafabb5cc2d1f04b262964e178883d7dbcbe3feeb8cc069e5df9";
+ libraryHaskellDepends = [
+ base binary bytestring data-endian data-flags data-sword
+ text-latin1
+ ];
+ homepage = "https://github.com/mvv/data-elf";
+ description = "Executable and Linkable Format (ELF) data structures";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"data-embed" = callPackage
({ mkDerivation, base, bytestring, cereal, containers, directory
, executable-path, hashable, utf8-string
@@ -69845,8 +70483,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "data-endian";
- version = "0.1";
- sha256 = "39b84a6b516c8d7e0fdb72ed16a77f87bae9fcffb9c9437797d406de47bb9b46";
+ version = "0.1.1";
+ sha256 = "8c1d4f30374f8331d31f4d7c6b39284331b6b9436e7b50f86547417bd05f2ac0";
libraryHaskellDepends = [ base ];
homepage = "https://github.com/mvv/data-endian";
description = "Endian-sensitive data";
@@ -69957,9 +70595,10 @@ self: {
({ mkDerivation, base, template-haskell }:
mkDerivation {
pname = "data-flags";
- version = "0.0.3.1";
- sha256 = "45bfa0c14b4e31364c5b7c70bf19f1ee3aa6ae692e08e7a70b56668503970de8";
+ version = "0.0.3.2";
+ sha256 = "9e8944d63a314a116d1cc8ecb115ad0ea8dabd5ccb84dbbefd332e641430794a";
libraryHaskellDepends = [ base template-haskell ];
+ homepage = "https://github.com/mvv/data-flags";
description = "A package for working with bit masks and flags in general";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -70151,12 +70790,11 @@ self: {
}:
mkDerivation {
pname = "data-lens";
- version = "2.10.7";
- sha256 = "3b198a84158d757d074b6cf71fe16c8ad900e24991d9813d0b6361a1fd97e050";
+ version = "2.11.0.1";
+ sha256 = "690a282338dbd94ecf05fce07ea90724f1bd3349defd2f6619fcf635fb7b881b";
libraryHaskellDepends = [
base comonad containers semigroupoids transformers
];
- jailbreak = true;
homepage = "http://github.com/roconnor/data-lens/";
description = "Used to be Haskell 98 Lenses";
license = stdenv.lib.licenses.bsd3;
@@ -70167,12 +70805,11 @@ self: {
({ mkDerivation, base, comonad, data-lens, mtl, transformers }:
mkDerivation {
pname = "data-lens-fd";
- version = "2.0.5";
- sha256 = "d3df1cedb0ccacfa6a2926466e10388b2a2e7bd78f5718cb2260746eec730c65";
+ version = "2.0.6";
+ sha256 = "e95a54e60369b8dfe4fd378df178c759aec9ecb050f6eb35c5dfb0ad0e72dd81";
libraryHaskellDepends = [
base comonad data-lens mtl transformers
];
- jailbreak = true;
homepage = "http://github.com/roconnor/data-lens-fd/";
description = "Lenses";
license = stdenv.lib.licenses.bsd3;
@@ -70223,10 +70860,9 @@ self: {
({ mkDerivation, base, data-lens, template-haskell }:
mkDerivation {
pname = "data-lens-template";
- version = "2.1.9";
- sha256 = "cf94f5d81569ad8f0ce4194649f5920226adf990d4012728958516d9821af236";
+ version = "2.2";
+ sha256 = "f50b0f5364c5d8a11278722ccb2faf2b7c4451001b34b4f55150599484182af0";
libraryHaskellDepends = [ base data-lens template-haskell ];
- jailbreak = true;
homepage = "http://github.com/roconnor/data-lens-template/";
description = "Utilities for Data.Lens";
license = stdenv.lib.licenses.bsd3;
@@ -70633,6 +71269,23 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "data-sword" = callPackage
+ ({ mkDerivation, base, data-bword, hashable, tasty
+ , tasty-quickcheck, template-haskell
+ }:
+ mkDerivation {
+ pname = "data-sword";
+ version = "0.1.1";
+ sha256 = "9fa52df57b18f0086a0a5e718221357e7f2a23917252648ec6b66c222ae6ce88";
+ libraryHaskellDepends = [
+ base data-bword hashable template-haskell
+ ];
+ testHaskellDepends = [ base tasty tasty-quickcheck ];
+ homepage = "https://github.com/mvv/data-sword";
+ description = "Shorter binary words";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"data-tensor" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -71659,8 +72312,8 @@ self: {
}:
mkDerivation {
pname = "dead-code-detection";
- version = "0.8";
- sha256 = "8eadc01d4df3100697b3b4f93d8253c417f851a320c2bfc2ea6362f7937b1c03";
+ version = "0.8.1";
+ sha256 = "6b69771ae3dac21d73ccd6fbb145dac98cf3f661787f2c59ecd6ee26726bc1fb";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -71810,17 +72463,17 @@ self: {
}) {};
"debian-build" = callPackage
- ({ mkDerivation, base, Cabal, directory, filepath, process, split
+ ({ mkDerivation, base, directory, filepath, process, split
, transformers
}:
mkDerivation {
pname = "debian-build";
- version = "0.10.0.0";
- sha256 = "3fd611276d30ea91f6d5f776f5726a3e7be702859027118639c31169597eff54";
+ version = "0.10.1.0";
+ sha256 = "a41033dee53346bda2f77a4192f85b54dbe3d25ef9b1fd158fdc09b4411e90b4";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base Cabal directory filepath process split transformers
+ base directory filepath process split transformers
];
executableHaskellDepends = [ base filepath transformers ];
homepage = "http://twitter.com/khibino/";
@@ -73166,8 +73819,8 @@ self: {
}:
mkDerivation {
pname = "deriving-compat";
- version = "0.2.2";
- sha256 = "0acf6caf0c0737c7aa0424544a54b54c3ab36310576ad404d13c73824136f7c8";
+ version = "0.3.1";
+ sha256 = "d47aac3fb7f035e50325b539e873c242021a59bce0a124380f42bf11241438aa";
libraryHaskellDepends = [
base containers ghc-boot-th ghc-prim template-haskell transformers
transformers-compat
@@ -73209,10 +73862,9 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "descrilo";
- version = "0.1.0.3";
- sha256 = "82479f64aa13a8df7fafcf091ea34ca7044fad2e582489772fb1b46c3645a7a7";
+ version = "0.1.0.4";
+ sha256 = "17a392388b1e6f7206d720aca846c2da1a50a6cd1a0f5a97bba3d7be6c412142";
libraryHaskellDepends = [ base ];
- jailbreak = true;
description = "Loads a list of items with fields";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -74557,8 +75209,8 @@ self: {
}:
mkDerivation {
pname = "diagrams-graphviz";
- version = "1.3.0.1";
- sha256 = "1d2ec9533aaac6a429eac9750fd7e5fc7a21d18223010067ebeae60c0d95da05";
+ version = "1.3.1";
+ sha256 = "09ae6f6d08d3ed43f6f6bf711e3749f1979b2e2e6976cbd7da05bd2a8f0d6a04";
libraryHaskellDepends = [
base containers diagrams-lib fgl graphviz split
];
@@ -75564,6 +76216,7 @@ self: {
libraryHaskellDepends = [
base data-default-class diagrams-lib lens
];
+ jailbreak = true;
homepage = "https://github.com/timjb/rubiks-cube";
description = "Library for drawing the Rubik's Cube";
license = stdenv.lib.licenses.mit;
@@ -76453,8 +77106,8 @@ self: {
}:
mkDerivation {
pname = "digit";
- version = "0.2.7";
- sha256 = "527f2b342e14a09af8d1b327942aab5b104316f8d8793a21f3468620bf099641";
+ version = "0.2.8";
+ sha256 = "d0dd0056edc862542d8ae07cf5e8ffd48b62e3f9d08ca035dfc737885d6684dd";
libraryHaskellDepends = [
base lens parsec parsers semigroups template-haskell
];
@@ -76501,8 +77154,8 @@ self: {
({ mkDerivation, base, QuickCheck }:
mkDerivation {
pname = "digits";
- version = "0.3";
- sha256 = "311474db49718cdb9d5dfb91a472456ee9d90eeb34b3439c63d94734792508c6";
+ version = "0.3.1";
+ sha256 = "a8499c9745dcf8a4e6c48594f555e6c6276e8d91c457dcc562a370ccadcd6a2c";
libraryHaskellDepends = [ base QuickCheck ];
testHaskellDepends = [ base QuickCheck ];
description = "Converts integers to lists of digits and back";
@@ -78266,7 +78919,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "diversity" = callPackage
+ "diversity_0_8_0_0" = callPackage
({ mkDerivation, base, containers, data-ordlist, fasta
, math-functions, MonadRandom, optparse-applicative, parsec, pipes
, random-shuffle, scientific, split
@@ -78287,6 +78940,30 @@ self: {
homepage = "https://github.com/GregorySchwartz/diversity";
description = "Quantify the diversity of a population";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "diversity" = callPackage
+ ({ mkDerivation, base, containers, data-ordlist, fasta
+ , math-functions, MonadRandom, optparse-applicative, parsec, pipes
+ , random-shuffle, scientific, split
+ }:
+ mkDerivation {
+ pname = "diversity";
+ version = "0.8.0.1";
+ sha256 = "06ee80a100424346e725777467173198a574d1df354cfd0051b0ee2983c1feba";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base containers data-ordlist fasta math-functions MonadRandom
+ parsec random-shuffle scientific split
+ ];
+ executableHaskellDepends = [
+ base containers fasta optparse-applicative pipes
+ ];
+ homepage = "https://github.com/GregorySchwartz/diversity";
+ description = "Quantify the diversity of a population";
+ license = stdenv.lib.licenses.gpl3;
}) {};
"dixi_0_6_0_2" = callPackage
@@ -78578,12 +79255,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "dlist_0_8" = callPackage
+ ({ mkDerivation, base, Cabal, deepseq, QuickCheck }:
+ mkDerivation {
+ pname = "dlist";
+ version = "0.8";
+ sha256 = "1110fcbb197cb678452b74c7850c98b5be6c0a6bb97c33a606612d81963efd4f";
+ libraryHaskellDepends = [ base deepseq ];
+ testHaskellDepends = [ base Cabal QuickCheck ];
+ homepage = "https://github.com/spl/dlist";
+ description = "Difference lists";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"dlist-instances" = callPackage
({ mkDerivation, base, dlist, semigroups }:
mkDerivation {
pname = "dlist-instances";
version = "0.1";
sha256 = "2598aae775532829923d2a8f99dcaaa20e49efec31314e8460a761ee653b3264";
+ revision = "1";
+ editedCabalFile = "21ba4b861e244658892e61f3ca5ae4dc2aea78f46a3fcc2a8750784bf4ea6f2c";
libraryHaskellDepends = [ base dlist semigroups ];
homepage = "https://github.com/gregwebs/dlist-instances";
description = "Difference lists instances";
@@ -78689,6 +79382,30 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "dns_2_0_4" = callPackage
+ ({ mkDerivation, attoparsec, base, binary, blaze-builder
+ , bytestring, conduit, conduit-extra, containers, doctest, hspec
+ , iproute, mtl, network, random, resourcet, safe, word8
+ }:
+ mkDerivation {
+ pname = "dns";
+ version = "2.0.4";
+ sha256 = "2b4fc61f4ccb440aa2b8403bff1ba00a87782e46b4261d34e6c1a5a1f1c71d6d";
+ libraryHaskellDepends = [
+ attoparsec base binary blaze-builder bytestring conduit
+ conduit-extra containers iproute mtl network random resourcet safe
+ ];
+ testHaskellDepends = [
+ attoparsec base binary blaze-builder bytestring conduit
+ conduit-extra containers doctest hspec iproute mtl network random
+ resourcet safe word8
+ ];
+ testTarget = "spec";
+ description = "DNS library in Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"dnscache" = callPackage
({ mkDerivation, base, bytestring, containers, contstuff, dns
, iproute, time
@@ -79493,6 +80210,7 @@ self: {
revision = "1";
editedCabalFile = "7e6df1d4f39879e9b031c8ff5e2f6fd5be3729cc40f7515e117ac0b47ed3f675";
libraryHaskellDepends = [ base bytestring curl feed tagsoup xml ];
+ jailbreak = true;
homepage = "http://code.haskell.org/~dons/code/download-curl";
description = "High-level file download based on URLs";
license = stdenv.lib.licenses.bsd3;
@@ -80868,12 +81586,11 @@ self: {
}:
mkDerivation {
pname = "easyrender";
- version = "0.1.1.0";
- sha256 = "eb0ca0d7622c7aed65787e92eb2c627a9e7153aaa4afc9f9981f6d4b7c020ec4";
+ version = "0.1.1.1";
+ sha256 = "ad303ad4bc4f746564b32fe587a9c0290af2c2173a9370ec42a8b4dcdacbfe63";
libraryHaskellDepends = [
base bytestring containers mtl superdoc zlib
];
- jailbreak = true;
homepage = "http://www.mathstat.dal.ca/~selinger/easyrender/";
description = "User-friendly creation of EPS, PostScript, and PDF files";
license = stdenv.lib.licenses.gpl3;
@@ -82543,8 +83260,8 @@ self: {
}:
mkDerivation {
pname = "elm-export";
- version = "0.3.0.2";
- sha256 = "f89797336f6a8d2d54e1015fabc0ab3f45e8ef8a3b7d7419694dd8144fb5a646";
+ version = "0.4.0.1";
+ sha256 = "9aa94c4d0ed01a6f6344778eee2e87b6489fc9ddd1de87154acb2be67fb7b79e";
libraryHaskellDepends = [
base bytestring containers directory mtl text time
];
@@ -83190,6 +83907,8 @@ self: {
pname = "endo";
version = "0.3.0.1";
sha256 = "34048da71000312081715a95e35108e5526647232c857b3c8e13dbb69e364f6a";
+ revision = "1";
+ editedCabalFile = "7299a456be44c72431f9193f56bb9fb21e3f76746bd7affa433f2f0bede89eb7";
libraryHaskellDepends = [
base between data-default-class mtl transformers
];
@@ -83608,6 +84327,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "env-locale" = callPackage
+ ({ mkDerivation, base, old-locale, time }:
+ mkDerivation {
+ pname = "env-locale";
+ version = "1.0.0.1";
+ sha256 = "f2f1feb9e3141984bda8e779c1a501fd9746994a4e12a2ad4eb47042c247fcf1";
+ libraryHaskellDepends = [ base old-locale time ];
+ homepage = "https://github.com/Ongy/locale-hs";
+ description = "A (non-forking) interface to the current locale";
+ license = "LGPL";
+ }) {};
+
"env-parser" = callPackage
({ mkDerivation, aeson, attoparsec, base, base16-bytestring
, base64-bytestring, bytestring, containers, http-types, mtl
@@ -85637,6 +86368,8 @@ self: {
pname = "exceptions";
version = "0.8.2.1";
sha256 = "c435877ff2f04a1855e50c78bbcbf8c89f3dc42837e440956500599f6d851035";
+ revision = "1";
+ editedCabalFile = "0a3f64eb292941f2b9141a178b5d8ed5a9de82d2ed35b341b05c3e8e1b38c313";
libraryHaskellDepends = [
base mtl stm template-haskell transformers transformers-compat
];
@@ -86582,6 +87315,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "extra_1_4_12" = callPackage
+ ({ mkDerivation, base, clock, directory, filepath, process
+ , QuickCheck, time, unix
+ }:
+ mkDerivation {
+ pname = "extra";
+ version = "1.4.12";
+ sha256 = "205d0dbdf2d18325298170cd9d681995c267ae6fe029b5b934a8ea646aa393b2";
+ libraryHaskellDepends = [
+ base clock directory filepath process time unix
+ ];
+ testHaskellDepends = [
+ base clock directory filepath QuickCheck time unix
+ ];
+ jailbreak = true;
+ homepage = "https://github.com/ndmitchell/extra#readme";
+ description = "Extra functions I use";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"extract-dependencies_0_2_0_0" = callPackage
({ mkDerivation, async, base, Cabal, containers
, package-description-remote
@@ -87025,8 +87779,8 @@ self: {
}:
mkDerivation {
pname = "fast-digits";
- version = "0.2.0.0";
- sha256 = "b5e050775cf9cfffac1adc90ded981b5fbc56be903984aecacc138ac62e98c33";
+ version = "0.2.1.0";
+ sha256 = "ec84576e479202de8257c7c499b66e91bcf18444f7683475d74b575e166dd83b";
libraryHaskellDepends = [ base integer-gmp ];
testHaskellDepends = [
base digits QuickCheck smallcheck tasty tasty-quickcheck
@@ -87278,7 +88032,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "fasta" = callPackage
+ "fasta_0_10_2_0" = callPackage
({ mkDerivation, attoparsec, base, bytestring, containers, foldl
, lens, parsec, pipes, pipes-attoparsec, pipes-bytestring
, pipes-group, pipes-text, split, text
@@ -87294,17 +88048,18 @@ self: {
homepage = "https://github.com/GregorySchwartz/fasta";
description = "A simple, mindless parser for fasta files";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "fasta_0_10_3_0" = callPackage
+ "fasta" = callPackage
({ mkDerivation, attoparsec, base, bytestring, containers, foldl
, lens, parsec, pipes, pipes-attoparsec, pipes-bytestring
, pipes-group, pipes-text, split, text
}:
mkDerivation {
pname = "fasta";
- version = "0.10.3.0";
- sha256 = "31db040cf5c4ea1fb1aed11b327ffec9faf8f39344362d53472f57eeb8e20e40";
+ version = "0.10.4.0";
+ sha256 = "d37616f6107834ce47cc57163e9dddda055ef13b0400d74d6e77cbdd249f69da";
libraryHaskellDepends = [
attoparsec base bytestring containers foldl lens parsec pipes
pipes-attoparsec pipes-bytestring pipes-group pipes-text split text
@@ -87312,7 +88067,6 @@ self: {
homepage = "https://github.com/GregorySchwartz/fasta";
description = "A simple, mindless parser for fasta files";
license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fastbayes" = callPackage
@@ -88690,8 +89444,8 @@ self: {
}:
mkDerivation {
pname = "feed-gipeda";
- version = "0.1.0.1";
- sha256 = "18be33291fc74c0ab18c8897e97f3811cb4e1e1f8fd11e084a49554d3696aa52";
+ version = "0.1.0.2";
+ sha256 = "609d0214ca1bbe773bb61af6c9f8ab779b0afedd612fbb3cdb467ded032d5ebf";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -89102,7 +89856,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "fgl" = callPackage
+ "fgl_5_5_2_3" = callPackage
({ mkDerivation, array, base, containers, deepseq, hspec
, QuickCheck, transformers
}:
@@ -89116,14 +89870,44 @@ self: {
testHaskellDepends = [ base containers hspec QuickCheck ];
description = "Martin Erwig's Functional Graph Library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "fgl" = callPackage
+ ({ mkDerivation, array, base, containers, deepseq, hspec
+ , QuickCheck, transformers
+ }:
+ mkDerivation {
+ pname = "fgl";
+ version = "5.5.3.0";
+ sha256 = "d70cd8e2694311fae0b44fe0d1b342c95706ceffd3be66767e9027dfa5597e39";
+ libraryHaskellDepends = [
+ array base containers deepseq transformers
+ ];
+ testHaskellDepends = [ base containers hspec QuickCheck ];
+ description = "Martin Erwig's Functional Graph Library";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "fgl-arbitrary_0_2_0_1" = callPackage
+ ({ mkDerivation, base, containers, fgl, hspec, QuickCheck }:
+ mkDerivation {
+ pname = "fgl-arbitrary";
+ version = "0.2.0.1";
+ sha256 = "3e85922a7dde02ee0dac8f93eb233ccb16dfdd1a5a4ec8397fa1d9f7404a6104";
+ libraryHaskellDepends = [ base fgl QuickCheck ];
+ testHaskellDepends = [ base containers fgl hspec QuickCheck ];
+ description = "QuickCheck support for fgl";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fgl-arbitrary" = callPackage
({ mkDerivation, base, containers, fgl, hspec, QuickCheck }:
mkDerivation {
pname = "fgl-arbitrary";
- version = "0.2.0.1";
- sha256 = "3e85922a7dde02ee0dac8f93eb233ccb16dfdd1a5a4ec8397fa1d9f7404a6104";
+ version = "0.2.0.2";
+ sha256 = "501d77f1f5efd952aaf06d35fc95bfd3a9bc93906f78a363766ec74d14d50b8b";
libraryHaskellDepends = [ base fgl QuickCheck ];
testHaskellDepends = [ base containers fgl hspec QuickCheck ];
description = "QuickCheck support for fgl";
@@ -90081,8 +90865,8 @@ self: {
({ mkDerivation, base, cmdargs, leancheck, template-haskell }:
mkDerivation {
pname = "fitspec";
- version = "0.2.2";
- sha256 = "1ac0034895c4ef1797b641a439d300910d3920cf7f02c00bbab3dae16a965e3d";
+ version = "0.3.0";
+ sha256 = "5c8897924c870e577d7e28344376bac99165d11abb8ef3be037a20e357c69564";
libraryHaskellDepends = [
base cmdargs leancheck template-haskell
];
@@ -92011,6 +92795,7 @@ self: {
libraryHaskellDepends = [
base containers data-default-class lens linear
];
+ jailbreak = true;
description = "Simple force-directed layout";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -92400,6 +93185,32 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "fortran-src" = callPackage
+ ({ mkDerivation, alex, array, base, bytestring, containers, fgl
+ , GenericPretty, happy, hspec, mtl, pretty, text, uniplate
+ }:
+ mkDerivation {
+ pname = "fortran-src";
+ version = "0.1.0.0";
+ sha256 = "bfe476623599655d58d3a26c77ca17503c512eb1470fb1a39add1e8fd5f1120a";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ array base bytestring containers fgl GenericPretty mtl pretty text
+ uniplate
+ ];
+ libraryToolDepends = [ alex happy ];
+ executableHaskellDepends = [
+ array base bytestring containers fgl GenericPretty mtl pretty text
+ uniplate
+ ];
+ testHaskellDepends = [
+ array base bytestring containers fgl hspec mtl text uniplate
+ ];
+ description = "Parser and anlyses for Fortran standards 66, 77, 90";
+ license = stdenv.lib.licenses.asl20;
+ }) {};
+
"foscam-directory" = callPackage
({ mkDerivation, base, directory, doctest, filepath
, foscam-filename, lens, pretty, QuickCheck, template-haskell
@@ -95011,7 +95822,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "generic-deriving" = callPackage
+ "generic-deriving_1_10_5" = callPackage
({ mkDerivation, base, containers, ghc-prim, template-haskell }:
mkDerivation {
pname = "generic-deriving";
@@ -95023,6 +95834,21 @@ self: {
homepage = "https://github.com/dreixel/generic-deriving";
description = "Generic programming library for generalised deriving";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "generic-deriving" = callPackage
+ ({ mkDerivation, base, containers, ghc-prim, template-haskell }:
+ mkDerivation {
+ pname = "generic-deriving";
+ version = "1.10.6";
+ sha256 = "be129ff66c91e2e17c62e304c0f30e5e654dc7a1d9a71beaba3219a9f5d1c2fe";
+ libraryHaskellDepends = [
+ base containers ghc-prim template-haskell
+ ];
+ homepage = "https://github.com/dreixel/generic-deriving";
+ description = "Generic programming library for generalised deriving";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"generic-lucid-scaffold" = callPackage
@@ -95387,7 +96213,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "generics-sop" = callPackage
+ "generics-sop_0_2_1_0" = callPackage
({ mkDerivation, base, ghc-prim, template-haskell }:
mkDerivation {
pname = "generics-sop";
@@ -95397,16 +96223,27 @@ self: {
testHaskellDepends = [ base ];
description = "Generic Programming using True Sums of Products";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "generics-sop" = callPackage
+ ({ mkDerivation, base, ghc-prim, template-haskell }:
+ mkDerivation {
+ pname = "generics-sop";
+ version = "0.2.2.0";
+ sha256 = "3509e6fd5d9e1337691a88bb7941731f03cf93a42f12a6227dd1a5def9616220";
+ libraryHaskellDepends = [ base ghc-prim template-haskell ];
+ testHaskellDepends = [ base ];
+ description = "Generic Programming using True Sums of Products";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"generics-sop-lens" = callPackage
({ mkDerivation, base, generics-sop, lens }:
mkDerivation {
pname = "generics-sop-lens";
- version = "0.1.1.0";
- sha256 = "77dad1fc8dc9a9e7bd049a46ea4917b5d6e6b1d22a7194f67965126717cfd360";
- revision = "1";
- editedCabalFile = "fc41f76ff2763343ea54274f64907f4343abe3f195a4b271149a524023cfcea0";
+ version = "0.1.2.0";
+ sha256 = "bafd04f0238e19d73da60ae018c1c82cb3e4be49990c61a6049dec2dafff40f6";
libraryHaskellDepends = [ base generics-sop lens ];
homepage = "https://github.com/phadej/generics-sop-lens#readme";
description = "Lenses for types in generics-sop";
@@ -95624,6 +96461,66 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "genvalidity" = callPackage
+ ({ mkDerivation, base, hspec, QuickCheck, validity }:
+ mkDerivation {
+ pname = "genvalidity";
+ version = "0.2.0.0";
+ sha256 = "45312a8ba7603f99f16799f0c20e4bd613104e0a4340566ec3c9cf2ca7d315fe";
+ libraryHaskellDepends = [ base QuickCheck validity ];
+ testHaskellDepends = [ base hspec QuickCheck ];
+ homepage = "https://github.com/NorfairKing/validity#readme";
+ description = "Testing utilities for the validity library";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
+ "genvalidity-containers" = callPackage
+ ({ mkDerivation, base, containers, genvalidity, QuickCheck
+ , validity
+ }:
+ mkDerivation {
+ pname = "genvalidity-containers";
+ version = "0.1.0.1";
+ sha256 = "1193630423059f558d99e20f14e60daabb664539e25ca7c92ebca3f776dd94c2";
+ libraryHaskellDepends = [
+ base containers genvalidity QuickCheck validity
+ ];
+ homepage = "https://github.com/NorfairKing/validity#readme";
+ description = "GenValidity support for containers";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
+ "genvalidity-hspec" = callPackage
+ ({ mkDerivation, base, genvalidity, hspec, QuickCheck, validity }:
+ mkDerivation {
+ pname = "genvalidity-hspec";
+ version = "0.2.0.0";
+ sha256 = "58f2b372c3997ae2bd31da8cf5f23cb7a1bc21d3824a93a144151cd0928243a3";
+ libraryHaskellDepends = [
+ base genvalidity hspec QuickCheck validity
+ ];
+ homepage = "https://github.com/NorfairKing/validity#readme";
+ description = "Standard spec's for GenValidity instances";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
+ "genvalidity-text" = callPackage
+ ({ mkDerivation, base, genvalidity, hspec, QuickCheck, text
+ , validity
+ }:
+ mkDerivation {
+ pname = "genvalidity-text";
+ version = "0.1.0.0";
+ sha256 = "faca82b1d58fb2cd40575f0743c2579def715e697eebbaba7fc75c6b73b28c4e";
+ libraryHaskellDepends = [
+ base genvalidity QuickCheck text validity
+ ];
+ testHaskellDepends = [ base genvalidity hspec QuickCheck text ];
+ homepage = "https://github.com/NorfairKing/validity#readme";
+ description = "GenValidity support for Text";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"geo-resolver" = callPackage
({ mkDerivation, aeson, base, base64-bytestring, blaze-builder
, bytestring, http-conduit, http-types, HUnit, QuickCheck
@@ -95790,6 +96687,25 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "geolite-csv" = callPackage
+ ({ mkDerivation, base, colonnade, directory, HUnit, ip, pipes
+ , pipes-bytestring, pipes-text, siphon, test-framework
+ , test-framework-hunit, text
+ }:
+ mkDerivation {
+ pname = "geolite-csv";
+ version = "0.1.0";
+ sha256 = "c7c707f20c4f2f42f842bf18485a58555dc3dd62b8ef314cc54a10f003b2baa6";
+ libraryHaskellDepends = [ base colonnade ip pipes siphon text ];
+ testHaskellDepends = [
+ base colonnade directory HUnit pipes pipes-bytestring pipes-text
+ siphon test-framework test-framework-hunit text
+ ];
+ homepage = "https://github.com/andrewthad/colonnade";
+ description = "Initial project template from stack";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"geom2d" = callPackage
({ mkDerivation, base, ieee754, linear, QuickCheck }:
mkDerivation {
@@ -96860,7 +97776,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "ghc-typelits-extra" = callPackage
+ "ghc-typelits-extra_0_1_1" = callPackage
({ mkDerivation, base, ghc, ghc-tcplugins-extra
, ghc-typelits-natnormalise, tasty, tasty-hunit
}:
@@ -96875,6 +97791,26 @@ self: {
homepage = "http://www.clash-lang.org/";
description = "Additional type-level operations on GHC.TypeLits.Nat";
license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "ghc-typelits-extra" = callPackage
+ ({ mkDerivation, base, ghc, ghc-tcplugins-extra
+ , ghc-typelits-natnormalise, tasty, tasty-hunit, transformers
+ }:
+ mkDerivation {
+ pname = "ghc-typelits-extra";
+ version = "0.1.2";
+ sha256 = "cd054d68809ed73338469afcafacd3955f417edcce93c1ef69b3cd6104062019";
+ libraryHaskellDepends = [
+ base ghc ghc-tcplugins-extra transformers
+ ];
+ testHaskellDepends = [
+ base ghc-typelits-natnormalise tasty tasty-hunit
+ ];
+ homepage = "http://www.clash-lang.org/";
+ description = "Additional type-level operations on GHC.TypeLits.Nat";
+ license = stdenv.lib.licenses.bsd2;
}) {};
"ghc-typelits-natnormalise_0_3" = callPackage
@@ -96924,7 +97860,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "ghc-typelits-natnormalise" = callPackage
+ "ghc-typelits-natnormalise_0_4_1" = callPackage
({ mkDerivation, base, ghc, ghc-tcplugins-extra, tasty, tasty-hunit
}:
mkDerivation {
@@ -96936,6 +97872,36 @@ self: {
homepage = "http://www.clash-lang.org/";
description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat";
license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "ghc-typelits-natnormalise_0_4_2" = callPackage
+ ({ mkDerivation, base, ghc, ghc-tcplugins-extra, tasty, tasty-hunit
+ }:
+ mkDerivation {
+ pname = "ghc-typelits-natnormalise";
+ version = "0.4.2";
+ sha256 = "b9eb8337e9643c0706352d148ad160edffc01a87f8df784efde71e15f93797a8";
+ libraryHaskellDepends = [ base ghc ghc-tcplugins-extra ];
+ testHaskellDepends = [ base tasty tasty-hunit ];
+ homepage = "http://www.clash-lang.org/";
+ description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat";
+ license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "ghc-typelits-natnormalise" = callPackage
+ ({ mkDerivation, base, ghc, ghc-tcplugins-extra, tasty, tasty-hunit
+ }:
+ mkDerivation {
+ pname = "ghc-typelits-natnormalise";
+ version = "0.4.3";
+ sha256 = "7dc2b7d308b49780ee7eda9a2a88b7d0df9cf88a9fc3a2c0391a28322c136b67";
+ libraryHaskellDepends = [ base ghc ghc-tcplugins-extra ];
+ testHaskellDepends = [ base tasty tasty-hunit ];
+ homepage = "http://www.clash-lang.org/";
+ description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat";
+ license = stdenv.lib.licenses.bsd2;
}) {};
"ghc-vis" = callPackage
@@ -97013,8 +97979,8 @@ self: {
({ mkDerivation, base, doctest, hspec, parsec }:
mkDerivation {
pname = "ghci-history-parser";
- version = "0.1.0.1";
- sha256 = "e84ecff3405aa1ad8b4e148648b7d0775f887b46de5adfdca18547f92243d0d2";
+ version = "0.1.0.2";
+ sha256 = "0e6d39875a54a7744fedd73103301d188ec291d9da2f7abc6c85b87143b1f068";
libraryHaskellDepends = [ base parsec ];
testHaskellDepends = [ base doctest hspec parsec ];
description = "parse output of ghci \":history\" command";
@@ -97516,7 +98482,7 @@ self: {
}) {inherit (pkgs) atk;};
"gi-cairo" = callPackage
- ({ mkDerivation, base, bytestring, cairo-gobject, containers
+ ({ mkDerivation, base, bytestring, cairo, containers
, gobjectIntrospection, haskell-gi, haskell-gi-base, text
, transformers
}:
@@ -97528,17 +98494,21 @@ self: {
base bytestring containers haskell-gi haskell-gi-base text
transformers
];
- libraryPkgconfigDepends = [ cairo-gobject gobjectIntrospection ];
+ libraryPkgconfigDepends = [ cairo gobjectIntrospection ];
doHaddock = false;
preConfigure = "export HASKELL_GI_GIR_SEARCH_PATH=${gobjectIntrospection.dev}/share/gir-1.0";
+ preCompileBuildDriver = ''
+ PKG_CONFIG_PATH+=":${cairo}/lib/pkgconfig"
+ setupCompileFlags+=" $(pkg-config --libs cairo-gobject)"
+ '';
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Cairo bindings";
license = stdenv.lib.licenses.lgpl21;
hydraPlatforms = stdenv.lib.platforms.none;
- }) {cairo-gobject = null; inherit (pkgs) gobjectIntrospection;};
+ }) {inherit (pkgs) cairo; inherit (pkgs) gobjectIntrospection;};
"gi-cairo_1_0_6" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, cairo-gobject, containers
+ ({ mkDerivation, base, bytestring, Cabal, cairo, containers
, gobjectIntrospection, haskell-gi, haskell-gi-base, text
, transformers
}:
@@ -97550,14 +98520,18 @@ self: {
libraryHaskellDepends = [
base bytestring containers haskell-gi-base text transformers
];
- libraryPkgconfigDepends = [ cairo-gobject gobjectIntrospection ];
+ libraryPkgconfigDepends = [ cairo gobjectIntrospection ];
doHaddock = false;
preConfigure = "export HASKELL_GI_GIR_SEARCH_PATH=${gobjectIntrospection.dev}/share/gir-1.0";
+ preCompileBuildDriver = ''
+ PKG_CONFIG_PATH+=":${cairo}/lib/pkgconfig"
+ setupCompileFlags+=" $(pkg-config --libs cairo-gobject)"
+ '';
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Cairo bindings";
license = stdenv.lib.licenses.lgpl21;
hydraPlatforms = stdenv.lib.platforms.none;
- }) {cairo-gobject = null; inherit (pkgs) gobjectIntrospection;};
+ }) {inherit (pkgs) cairo; inherit (pkgs) gobjectIntrospection;};
"gi-gdk" = callPackage
({ mkDerivation, base, bytestring, containers, gdk3, gi-cairo
@@ -98002,7 +98976,7 @@ self: {
"gi-javascriptcore" = callPackage
({ mkDerivation, base, bytestring, containers, haskell-gi
- , haskell-gi-base, javascriptcoregtk, text, transformers
+ , haskell-gi-base, javascriptcoregtk, text, transformers, webkitgtk
}:
mkDerivation {
pname = "gi-javascriptcore";
@@ -98012,17 +98986,18 @@ self: {
base bytestring containers haskell-gi haskell-gi-base text
transformers
];
- libraryPkgconfigDepends = [ javascriptcoregtk ];
+ libraryPkgconfigDepends = [ javascriptcoregtk webkitgtk ];
doHaddock = false;
+ preConfigure = "export HASKELL_GI_GIR_SEARCH_PATH=${webkitgtk}/share/gir-1.0";
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "JavaScriptCore bindings";
license = stdenv.lib.licenses.lgpl21;
hydraPlatforms = [ "x86_64-darwin" ];
- }) {javascriptcoregtk = null;};
+ }) {javascriptcoregtk = null; inherit (pkgs) webkitgtk;};
"gi-javascriptcore_4_0_6" = callPackage
({ mkDerivation, base, bytestring, Cabal, containers, haskell-gi
- , haskell-gi-base, javascriptcoregtk, text, transformers
+ , haskell-gi-base, javascriptcoregtk, text, transformers, webkitgtk
}:
mkDerivation {
pname = "gi-javascriptcore";
@@ -98032,13 +99007,14 @@ self: {
libraryHaskellDepends = [
base bytestring containers haskell-gi-base text transformers
];
- libraryPkgconfigDepends = [ javascriptcoregtk ];
+ libraryPkgconfigDepends = [ javascriptcoregtk webkitgtk ];
doHaddock = false;
+ preConfigure = "export HASKELL_GI_GIR_SEARCH_PATH=${webkitgtk}/share/gir-1.0";
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "JavaScriptCore bindings";
license = stdenv.lib.licenses.lgpl21;
hydraPlatforms = stdenv.lib.platforms.none;
- }) {javascriptcoregtk = null;};
+ }) {javascriptcoregtk = null; inherit (pkgs) webkitgtk;};
"gi-notify" = callPackage
({ mkDerivation, base, bytestring, Cabal, containers, gi-gdkpixbuf
@@ -98313,6 +99289,26 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {webkit2gtk-web-extension = null;};
+ "giak" = callPackage
+ ({ mkDerivation, async, base, bytestring, Cabal, containers
+ , directory, extra, filemanip, filepath, mtl, process, semigroups
+ , stm, stm-chans, text, unix, wybor
+ }:
+ mkDerivation {
+ pname = "giak";
+ version = "0.1.0.1";
+ sha256 = "13cbbbec91cf23cc178843525c03cf5bba162842a8ddc4259ab3efdbe18b6073";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ async base bytestring Cabal containers directory extra filemanip
+ filepath mtl process semigroups stm stm-chans text unix wybor
+ ];
+ homepage = "http://github.com/nmattia/giak";
+ description = "Fuzzy finder for cabal executables";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"gimlh" = callPackage
({ mkDerivation, base, split }:
mkDerivation {
@@ -99306,8 +100302,8 @@ self: {
}:
mkDerivation {
pname = "gitHUD";
- version = "1.3.1";
- sha256 = "d770a57be1e746ed39e1c34ae6464ac4fd66599503a8b4e92f1b8a69cf986ccb";
+ version = "1.3.2";
+ sha256 = "1ae533abaa42c6fdca5eef94cc0e94ae6712cf1fc1336486912dedb863c4fb06";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base mtl parsec process unix ];
@@ -99664,6 +100660,7 @@ self: {
base bytestring directory filepath hslogger HTTP mtl network
network-uri syb url utf8-string
];
+ jailbreak = true;
homepage = "http://gitit.net";
description = "Wiki using happstack, git or darcs, and pandoc";
license = "GPL";
@@ -100834,8 +101831,8 @@ self: {
({ mkDerivation, base, bmp, bytestring, containers, GLUT, OpenGL }:
mkDerivation {
pname = "gloss-rendering";
- version = "1.10.2.1";
- sha256 = "850f3be265b9b350772530aa6a19cabbcd9b88490508d82cab8e79437dbf5ce3";
+ version = "1.10.3.1";
+ sha256 = "c39f51b8b026f717e9469716ec0afa17aa7804eb6794a3d0c3eb712b8d8404ba";
libraryHaskellDepends = [
base bmp bytestring containers GLUT OpenGL
];
@@ -101093,23 +102090,28 @@ self: {
}) {inherit (pkgs.gnome) gnome_vfs; gnome_vfs_module = null;};
"gnss-converters" = callPackage
- ({ mkDerivation, base, basic-prelude, binary-conduit, conduit
- , conduit-extra, lens, resourcet, rtcm, sbp, tasty, tasty-hunit
- , time
+ ({ mkDerivation, base, basic-prelude, binary-conduit, bytestring
+ , conduit, conduit-extra, extra, HUnit-approx, lens, resourcet
+ , rtcm, sbp, tasty, tasty-hunit, time, unordered-containers
}:
mkDerivation {
pname = "gnss-converters";
- version = "0.1.9";
- sha256 = "0bea171d430190d7caeb6551e208b86d5fc8b9af82733445bf1e4d6585471dce";
+ version = "0.1.11";
+ sha256 = "30b908f69abc9fceb6b0b510ef764b9ae26020b7e6d1ffeaf7f6582b401c9542";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base basic-prelude conduit-extra lens rtcm sbp time
+ base basic-prelude conduit-extra extra lens rtcm sbp time
+ unordered-containers
];
executableHaskellDepends = [
base basic-prelude binary-conduit conduit conduit-extra resourcet
];
- testHaskellDepends = [ base basic-prelude tasty tasty-hunit ];
+ testHaskellDepends = [
+ base basic-prelude binary-conduit bytestring conduit conduit-extra
+ HUnit-approx lens resourcet sbp tasty tasty-hunit
+ unordered-containers
+ ];
homepage = "http://github.com/swift-nav/gnss-converters";
description = "GNSS Converters";
license = stdenv.lib.licenses.bsd3;
@@ -103917,7 +104919,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "graphviz" = callPackage
+ "graphviz_2999_18_1_0" = callPackage
({ mkDerivation, base, bytestring, colour, containers, directory
, dlist, fgl, fgl-arbitrary, filepath, polyparse, process
, QuickCheck, temporary, text, transformers, wl-pprint-text
@@ -103937,6 +104939,51 @@ self: {
homepage = "http://projects.haskell.org/graphviz/";
description = "Bindings to Graphviz for graph visualisation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "graphviz" = callPackage
+ ({ mkDerivation, base, bytestring, colour, containers, directory
+ , dlist, fgl, fgl-arbitrary, filepath, polyparse, process
+ , QuickCheck, temporary, text, transformers, wl-pprint-text
+ }:
+ mkDerivation {
+ pname = "graphviz";
+ version = "2999.18.1.1";
+ sha256 = "059de2521e36fd6b43b387113d6617da5949c8638be829a31b2d62d87ed4fe61";
+ libraryHaskellDepends = [
+ base bytestring colour containers directory dlist fgl filepath
+ polyparse process temporary text transformers wl-pprint-text
+ ];
+ testHaskellDepends = [
+ base containers fgl fgl-arbitrary filepath QuickCheck text
+ ];
+ doCheck = false;
+ homepage = "http://projects.haskell.org/graphviz/";
+ description = "Bindings to Graphviz for graph visualisation";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "graphviz_2999_18_1_2" = callPackage
+ ({ mkDerivation, base, bytestring, colour, containers, directory
+ , dlist, fgl, fgl-arbitrary, filepath, polyparse, process
+ , QuickCheck, temporary, text, transformers, wl-pprint-text
+ }:
+ mkDerivation {
+ pname = "graphviz";
+ version = "2999.18.1.2";
+ sha256 = "b08c2026d3810c15f6ad49a07fd7b879978d958fa477b369b719ec00741c85fc";
+ libraryHaskellDepends = [
+ base bytestring colour containers directory dlist fgl filepath
+ polyparse process temporary text transformers wl-pprint-text
+ ];
+ testHaskellDepends = [
+ base containers fgl fgl-arbitrary filepath QuickCheck text
+ ];
+ homepage = "http://projects.haskell.org/graphviz/";
+ description = "Bindings to Graphviz for graph visualisation";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"grasp" = callPackage
@@ -109809,7 +110856,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "happstack-authenticate" = callPackage
+ "happstack-authenticate_2_3_4_2" = callPackage
({ mkDerivation, acid-state, aeson, authenticate, base
, base64-bytestring, boomerang, bytestring, containers
, data-default, email-validate, filepath, happstack-hsp
@@ -109839,6 +110886,36 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "happstack-authenticate" = callPackage
+ ({ mkDerivation, acid-state, aeson, authenticate, base
+ , base64-bytestring, boomerang, bytestring, containers
+ , data-default, email-validate, filepath, happstack-hsp
+ , happstack-jmacro, happstack-server, hsp, hsx-jmacro, hsx2hs
+ , http-conduit, http-types, ixset-typed, jmacro, jwt, lens
+ , mime-mail, mtl, pwstore-purehaskell, random, safecopy
+ , shakespeare, text, time, unordered-containers, userid, web-routes
+ , web-routes-boomerang, web-routes-happstack, web-routes-hsp
+ , web-routes-th
+ }:
+ mkDerivation {
+ pname = "happstack-authenticate";
+ version = "2.3.4.3";
+ sha256 = "6029d43f6cf78e68cd88c28a8c9aefacfc6062cc4f7e798a72302ac43abecc30";
+ libraryHaskellDepends = [
+ acid-state aeson authenticate base base64-bytestring boomerang
+ bytestring containers data-default email-validate filepath
+ happstack-hsp happstack-jmacro happstack-server hsp hsx-jmacro
+ hsx2hs http-conduit http-types ixset-typed jmacro jwt lens
+ mime-mail mtl pwstore-purehaskell random safecopy shakespeare text
+ time unordered-containers userid web-routes web-routes-boomerang
+ web-routes-happstack web-routes-hsp web-routes-th
+ ];
+ homepage = "http://www.happstack.com/";
+ description = "Happstack Authentication Library";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"happstack-clientsession" = callPackage
({ mkDerivation, base, bytestring, cereal, clientsession
, happstack-server, monad-control, mtl, safecopy, transformers-base
@@ -112164,8 +113241,8 @@ self: {
({ mkDerivation, base, bytestring, containers, glib, text }:
mkDerivation {
pname = "haskell-gi-base";
- version = "0.18";
- sha256 = "ebf2f2a9845ca90a50bdf1c0943d47fa55bade1d622d5f5e75ba98cd097ff94c";
+ version = "0.18.1";
+ sha256 = "ab6c31a6dca1bd0f7cbf4e51225dd18ef25185f70c2f33fd207968b44157b028";
libraryHaskellDepends = [ base bytestring containers text ];
libraryPkgconfigDepends = [ glib ];
homepage = "https://github.com/haskell-gi/haskell-gi-base";
@@ -112411,8 +113488,8 @@ self: {
}:
mkDerivation {
pname = "haskell-names";
- version = "0.6.0";
- sha256 = "8d45dabf15d4073a94f5d634538288dbac6ace1971b673cafc76ea92671bb26a";
+ version = "0.7.0";
+ sha256 = "c0582b2a51526e24483d71f1669bba2ef340ae7014babb3a9a5b59296fc5faf2";
libraryHaskellDepends = [
aeson base bytestring containers data-lens-light filepath
haskell-src-exts mtl transformers traverse-with-class uniplate
@@ -112421,7 +113498,6 @@ 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;
@@ -112621,7 +113697,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "haskell-packages" = callPackage
+ "haskell-packages_0_3" = callPackage
({ mkDerivation, aeson, base, bytestring, Cabal, containers
, deepseq, directory, filepath, haskell-src-exts, hse-cpp, mtl
, optparse-applicative, tagged, transformers, transformers-compat
@@ -112639,6 +113715,26 @@ 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-packages" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, Cabal, containers
+ , deepseq, directory, filepath, haskell-src-exts, hse-cpp, mtl
+ , optparse-applicative, tagged, transformers, transformers-compat
+ }:
+ mkDerivation {
+ pname = "haskell-packages";
+ version = "0.4";
+ sha256 = "2c9af5515ce210da304560d6a16b36fa056eefcb2ec609dc0b25c2002ba31021";
+ libraryHaskellDepends = [
+ aeson base bytestring Cabal containers deepseq directory filepath
+ haskell-src-exts hse-cpp mtl optparse-applicative tagged
+ transformers transformers-compat
+ ];
+ 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 = [ "x86_64-darwin" ];
}) {};
@@ -114855,7 +115951,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "hasql" = callPackage
+ "hasql_0_19_12" = callPackage
({ mkDerivation, aeson, attoparsec, base, base-prelude, bytestring
, bytestring-tree-builder, contravariant, contravariant-extras
, data-default-class, dlist, either, hashable, hashtables, loch-th
@@ -114883,6 +115979,36 @@ self: {
homepage = "https://github.com/nikita-volkov/hasql";
description = "A very efficient PostgreSQL driver and a flexible mapping API";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "hasql" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, base-prelude, bytestring
+ , bytestring-tree-builder, contravariant, contravariant-extras
+ , data-default-class, dlist, either, hashable, hashtables, loch-th
+ , mtl, placeholders, postgresql-binary, postgresql-libpq
+ , profunctors, QuickCheck, quickcheck-instances, rebase, scientific
+ , semigroups, tasty, tasty-hunit, tasty-quickcheck
+ , tasty-smallcheck, text, time, transformers, uuid, vector
+ }:
+ mkDerivation {
+ pname = "hasql";
+ version = "0.19.13";
+ sha256 = "f58a3b5b7cd8c674a1b0735b6d3e43ca5d932e66124446eed2270a749ab2b114";
+ libraryHaskellDepends = [
+ aeson attoparsec base base-prelude bytestring
+ bytestring-tree-builder contravariant contravariant-extras
+ data-default-class dlist either hashable hashtables loch-th mtl
+ placeholders postgresql-binary postgresql-libpq profunctors
+ scientific semigroups text time transformers uuid vector
+ ];
+ testHaskellDepends = [
+ data-default-class QuickCheck quickcheck-instances rebase tasty
+ tasty-hunit tasty-quickcheck tasty-smallcheck
+ ];
+ homepage = "https://github.com/nikita-volkov/hasql";
+ description = "A very efficient PostgreSQL driver and a flexible mapping API";
+ license = stdenv.lib.licenses.mit;
}) {};
"hasql-backend_0_2_1" = callPackage
@@ -116058,6 +117184,7 @@ self: {
base bytestring data-default-class hostname HTTP http-server mtl
url
];
+ jailbreak = true;
homepage = "http://github.com/achudnov/haxy";
description = "A simple HTTP proxy server library";
license = stdenv.lib.licenses.bsd3;
@@ -116546,6 +117673,7 @@ self: {
libraryHaskellDepends = [
base extensible-exceptions filepath hsyslog mtl unix
];
+ jailbreak = true;
homepage = "http://github.com/greydot/hdaemonize";
description = "Library to handle the details of writing daemons for UNIX";
license = stdenv.lib.licenses.bsd3;
@@ -117405,6 +118533,25 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "heckle" = callPackage
+ ({ mkDerivation, base, blaze-html, containers, directory, pandoc
+ , pandoc-types, process, split, tagsoup
+ }:
+ mkDerivation {
+ pname = "heckle";
+ version = "0.1.0.0";
+ sha256 = "5a7d9efbdf71d3b6da4da7329b8999d244844cc9469b91d61a000438bb07d65e";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base blaze-html containers directory pandoc pandoc-types process
+ split tagsoup
+ ];
+ jailbreak = true;
+ description = "Jekyll in Haskell";
+ license = stdenv.lib.licenses.asl20;
+ }) {};
+
"hedis_0_6_9" = callPackage
({ mkDerivation, attoparsec, base, BoundedChan, bytestring
, bytestring-lexing, HUnit, mtl, network, resource-pool
@@ -117511,6 +118658,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hedis-namespace" = callPackage
+ ({ mkDerivation, base, bytestring, hedis, mtl }:
+ mkDerivation {
+ pname = "hedis-namespace";
+ version = "0.1.0.0";
+ sha256 = "3937dec2f23486380417142ef1342413be5bb7507ea11d3c22b94e4e510ddae1";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base bytestring hedis mtl ];
+ executableHaskellDepends = [ base bytestring hedis mtl ];
+ testHaskellDepends = [ base ];
+ homepage = "https://github.com/githubuser/hedis-namespace#readme";
+ description = "Initial project template from stack";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"hedis-pile" = callPackage
({ mkDerivation, base, binary, bytestring, hedis, hedis-tags, HUnit
, lifted-base, string-conversions, test-framework
@@ -118834,7 +119997,10 @@ self: {
pname = "hflags";
version = "0.4";
sha256 = "a441ba0890c8c4cede8ff0c4179ae2878e4f294347db5abfe2dcd6398ee8ff9f";
+ revision = "1";
+ editedCabalFile = "92f936373a94c1e434e2478b624dd38ab4c66539dfc7d47afa6bf3279cf36c58";
libraryHaskellDepends = [ base containers template-haskell text ];
+ jailbreak = true;
homepage = "http://github.com/errge/hflags";
description = "Command line flag parser, very similar to Google's gflags";
license = "unknown";
@@ -118847,7 +120013,10 @@ self: {
pname = "hflags";
version = "0.4.1";
sha256 = "147d65cba2959b682e4a33378a80766a1011a78ed767a4d08ae463af6d428a0c";
+ revision = "1";
+ editedCabalFile = "f310a53519ee630e1fce25c0169e788530636a0f6bd78c49b95cf4fc82b83344";
libraryHaskellDepends = [ base containers template-haskell text ];
+ jailbreak = true;
homepage = "http://github.com/errge/hflags";
description = "Command line flag parser, very similar to Google's gflags";
license = stdenv.lib.licenses.asl20;
@@ -118860,6 +120029,8 @@ self: {
pname = "hflags";
version = "0.4.2";
sha256 = "2cd30d637f4011d9b614698ef7f7bf1f55c45900e6683d60c7b17af5750f2cc5";
+ revision = "1";
+ editedCabalFile = "4165343ab35bbf063b872c69a353f1bffb962ce75bd66d7c1478a8083c7a5acd";
libraryHaskellDepends = [ base containers template-haskell text ];
homepage = "http://github.com/errge/hflags";
description = "Command line flag parser, very similar to Google's gflags";
@@ -118962,33 +120133,41 @@ self: {
}) {};
"hfsevents_0_1_5" = callPackage
- ({ mkDerivation }:
+ ({ mkDerivation, base, bytestring, cereal, Cocoa, CoreServices, mtl
+ , text
+ }:
mkDerivation {
pname = "hfsevents";
version = "0.1.5";
sha256 = "b348be81f278bcbf384a59029a0135c4aef6b687f2a7168a66aeea54a494e942";
- isLibrary = false;
- isExecutable = false;
+ libraryHaskellDepends = [ base bytestring cereal mtl text ];
+ librarySystemDepends = [ Cocoa ];
+ libraryToolDepends = [ CoreServices ];
homepage = "http://github.com/luite/hfsevents";
description = "File/folder watching for OS X";
license = stdenv.lib.licenses.bsd3;
platforms = [ "x86_64-darwin" ];
hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
+ }) {inherit (pkgs.darwin.apple_sdk.frameworks) Cocoa;
+ inherit (pkgs.darwin.apple_sdk.frameworks) CoreServices;};
"hfsevents" = callPackage
- ({ mkDerivation }:
+ ({ mkDerivation, base, bytestring, cereal, Cocoa, CoreServices, mtl
+ , text
+ }:
mkDerivation {
pname = "hfsevents";
version = "0.1.6";
sha256 = "74c3f3f3a5e55fff320c352a2d481069ff915860a0ab970864c6a0e6b65d3f05";
- isLibrary = false;
- isExecutable = false;
+ libraryHaskellDepends = [ base bytestring cereal mtl text ];
+ librarySystemDepends = [ Cocoa ];
+ libraryToolDepends = [ CoreServices ];
homepage = "http://github.com/luite/hfsevents";
description = "File/folder watching for OS X";
license = stdenv.lib.licenses.bsd3;
platforms = [ "x86_64-darwin" ];
- }) {};
+ }) {inherit (pkgs.darwin.apple_sdk.frameworks) Cocoa;
+ inherit (pkgs.darwin.apple_sdk.frameworks) CoreServices;};
"hfusion" = callPackage
({ mkDerivation, base, containers, haskell-src, mtl, pretty, syb }:
@@ -119144,6 +120323,23 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "hgeos" = callPackage
+ ({ mkDerivation, base, doctest, geos_c, Glob }:
+ mkDerivation {
+ pname = "hgeos";
+ version = "0.1.0.0";
+ sha256 = "dbcec98beff9c4717cb47a79057429b3151f6253cd60d3adeb8b4005c4c5e15f";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base ];
+ librarySystemDepends = [ geos_c ];
+ executableHaskellDepends = [ base ];
+ testHaskellDepends = [ base doctest Glob ];
+ homepage = "https://github.com/rcook/hgeos#readme";
+ description = "Haskell bindings to GEOS C API";
+ license = stdenv.lib.licenses.mit;
+ }) {geos_c = null;};
+
"hgettext" = callPackage
({ mkDerivation, base, Cabal, containers, directory, filepath
, haskell-src-exts, process, setlocale, uniplate
@@ -120065,7 +121261,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "hindent" = callPackage
+ "hindent_4_6_3" = callPackage
({ mkDerivation, base, containers, data-default, descriptive
, directory, ghc-prim, haskell-src-exts, hspec, monad-loops, mtl
, text, transformers
@@ -120091,6 +121287,32 @@ self: {
homepage = "http://www.github.com/chrisdone/hindent";
description = "Extensible Haskell pretty printer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "hindent" = callPackage
+ ({ mkDerivation, base, containers, descriptive, directory, ghc-prim
+ , haskell-src-exts, hspec, monad-loops, mtl, text, transformers
+ }:
+ mkDerivation {
+ pname = "hindent";
+ version = "4.6.4";
+ sha256 = "26fc1498705b8a64b03eb5b699ba6229955273d91a49a01c3c2b58436c8e4dcf";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base containers haskell-src-exts monad-loops mtl text transformers
+ ];
+ executableHaskellDepends = [
+ base descriptive directory ghc-prim haskell-src-exts text
+ ];
+ testHaskellDepends = [
+ base directory haskell-src-exts hspec monad-loops mtl text
+ ];
+ doCheck = false;
+ homepage = "http://www.github.com/chrisdone/hindent";
+ description = "Extensible Haskell pretty printer";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"hindley-milner" = callPackage
@@ -121173,23 +122395,19 @@ self: {
}) {};
"hjsonpointer" = callPackage
- ({ mkDerivation, aeson, base, http-types, HUnit, QuickCheck
- , test-framework, test-framework-hunit, test-framework-quickcheck2
+ ({ mkDerivation, aeson, base, hspec, http-types, HUnit, QuickCheck
, text, unordered-containers, vector
}:
mkDerivation {
pname = "hjsonpointer";
- version = "0.3.0.1";
- sha256 = "336e55ff4951e87dd4bed587378c9809c67d5462a88b30c186a56d61aa452b41";
- isLibrary = true;
- isExecutable = true;
+ version = "0.3.0.2";
+ sha256 = "caf6f9df4af27b0dae0bc0c39be4eb623743f70602df251fd5e9fb1732795747";
libraryHaskellDepends = [
aeson base QuickCheck text unordered-containers vector
];
- executableHaskellDepends = [ aeson base ];
testHaskellDepends = [
- aeson base http-types HUnit test-framework test-framework-hunit
- test-framework-quickcheck2 text unordered-containers vector
+ aeson base hspec http-types HUnit QuickCheck text
+ unordered-containers vector
];
homepage = "https://github.com/seagreen/hjsonpointer";
description = "JSON Pointer library";
@@ -121199,23 +122417,24 @@ self: {
"hjsonschema" = callPackage
({ mkDerivation, aeson, async, base, bytestring, containers
, directory, file-embed, filepath, hjsonpointer, http-client
- , http-types, HUnit, pcre-heavy, QuickCheck, scientific, semigroups
- , tasty, tasty-hunit, tasty-quickcheck, text, unordered-containers
- , vector, wai-app-static, warp
+ , http-types, HUnit, pcre-heavy, profunctors, QuickCheck
+ , scientific, semigroups, tasty, tasty-hunit, tasty-quickcheck
+ , text, unordered-containers, vector, wai-app-static, warp
}:
mkDerivation {
pname = "hjsonschema";
- version = "0.10.0.3";
- sha256 = "ab44f4673a1e701c035a3002f509a7a20abd5958b17155861a2d37f8fdc11b51";
+ version = "1.0.0.0";
+ sha256 = "f2d1ad345ff76e3bc3d738ebc3179bdec64a97ff66f7ade29aaf416c13f38787";
libraryHaskellDepends = [
aeson base bytestring containers file-embed filepath hjsonpointer
- http-client http-types pcre-heavy QuickCheck scientific semigroups
- text unordered-containers vector
+ http-client http-types pcre-heavy profunctors QuickCheck scientific
+ semigroups text unordered-containers vector
];
testHaskellDepends = [
aeson async base bytestring directory filepath hjsonpointer HUnit
- QuickCheck semigroups tasty tasty-hunit tasty-quickcheck text
- unordered-containers vector wai-app-static warp
+ profunctors QuickCheck semigroups tasty tasty-hunit
+ tasty-quickcheck text unordered-containers vector wai-app-static
+ warp
];
homepage = "https://github.com/seagreen/hjsonschema";
description = "JSON Schema library";
@@ -123176,11 +124395,11 @@ self: {
({ mkDerivation, base, integer-gmp, mpfr }:
mkDerivation {
pname = "hmpfr";
- version = "0.3.3.5";
- sha256 = "c4f17c265406145d9beccca5c88390af5fa80844aa2ee76310139ec75dcdf801";
+ version = "0.4.0.2";
+ sha256 = "c6f0bfdc5ea4f19892e40d67169808445bdeff50dcdc0d2b40f621d1e1013f90";
libraryHaskellDepends = [ base integer-gmp ];
librarySystemDepends = [ mpfr ];
- homepage = "http://code.google.com/p/hmpfr/";
+ homepage = "https://github.com/michalkonecny/hmpfr";
description = "Haskell binding to the MPFR library";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = [ "x86_64-darwin" ];
@@ -124569,10 +125788,8 @@ self: {
}:
mkDerivation {
pname = "hoogle";
- version = "5.0";
- sha256 = "19fa34b6695956548f3dc1992e883bb7cf32459d260587dd5a06ef986684c50f";
- revision = "1";
- editedCabalFile = "aee369809a5bc7892a0c58189e4905dac0204a8c119a20bc8d26011c6d37af72";
+ version = "5.0.1";
+ sha256 = "7aea6d779e14574f78f4506949f96a020ac1f8273b84f418094197366cc3112e";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -125022,6 +126239,7 @@ self: {
homepage = "http://khumba.net/projects/hoppy";
description = "C++ FFI generator - Documentation";
license = stdenv.lib.licenses.agpl3;
+ maintainers = with stdenv.lib.maintainers; [ khumba ];
}) {};
"hoppy-generator" = callPackage
@@ -125039,6 +126257,7 @@ self: {
homepage = "http://khumba.net/projects/hoppy";
description = "C++ FFI generator - Code generator";
license = stdenv.lib.licenses.agpl3;
+ maintainers = with stdenv.lib.maintainers; [ khumba ];
}) {};
"hoppy-runtime" = callPackage
@@ -125052,6 +126271,7 @@ self: {
homepage = "http://khumba.net/projects/hoppy";
description = "C++ FFI generator - Runtime support";
license = stdenv.lib.licenses.asl20;
+ maintainers = with stdenv.lib.maintainers; [ khumba ];
}) {};
"hoppy-std" = callPackage
@@ -125067,6 +126287,7 @@ self: {
homepage = "http://khumba.net/projects/hoppy";
description = "C++ FFI generator - Standard library bindings";
license = stdenv.lib.licenses.asl20;
+ maintainers = with stdenv.lib.maintainers; [ khumba ];
}) {};
"hops" = callPackage
@@ -125839,8 +127060,8 @@ self: {
}:
mkDerivation {
pname = "hpio";
- version = "0.8.0.2";
- sha256 = "b7f3c775454faea34a3bef496741f5d15ff5fc8319981b61b799ec895a21dca5";
+ version = "0.8.0.3";
+ sha256 = "699fc04179a479e2b1560122166c6687cd7214d2fa7376c14210465625657974";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -125941,8 +127162,10 @@ self: {
}:
mkDerivation {
pname = "hpqtypes";
- version = "1.5.0";
- sha256 = "24c9d41d67f3df33fcf00d6eb03e9a9d0a6be8decf1488383696d1b0a44bb5ba";
+ version = "1.5.1";
+ sha256 = "82fb016dac6830ab8229f2b5e501ea36299c370cddbb7102b8c2837a25028f12";
+ revision = "1";
+ editedCabalFile = "aa5935930b36b798869a4071e1d390ee1f84f754652a16708e21abbdb3ce0989";
libraryHaskellDepends = [
aeson base bytestring containers data-default-class exceptions
lifted-base monad-control mtl resource-pool text text-show time
@@ -130184,6 +131407,18 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "hspec-stack-rerun" = callPackage
+ ({ mkDerivation, base, directory, hspec, safe, strict }:
+ mkDerivation {
+ pname = "hspec-stack-rerun";
+ version = "0.1.0.3";
+ sha256 = "0f6714da2beb48b5882a17fb45e83d778ce5a6b12f60a83c75ae3391fee16deb";
+ libraryHaskellDepends = [ base directory hspec safe strict ];
+ homepage = "https://github.com/mwotton/hspec-stack-rerun#readme";
+ description = "Simple project template from stack";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"hspec-structured-formatter" = callPackage
({ mkDerivation, base, hspec }:
mkDerivation {
@@ -131203,7 +132438,7 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
- "hsyslog" = callPackage
+ "hsyslog_2_0" = callPackage
({ mkDerivation, base, doctest }:
mkDerivation {
pname = "hsyslog";
@@ -131214,10 +132449,11 @@ self: {
homepage = "http://github.com/peti/hsyslog";
description = "FFI interface to syslog(3) from POSIX.1-2001";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
maintainers = with stdenv.lib.maintainers; [ peti ];
}) {};
- "hsyslog_4" = callPackage
+ "hsyslog" = callPackage
({ mkDerivation, base, bytestring, QuickCheck }:
mkDerivation {
pname = "hsyslog";
@@ -131228,7 +132464,6 @@ self: {
homepage = "http://github.com/peti/hsyslog";
description = "FFI interface to syslog(3) from POSIX.1-2001";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
maintainers = with stdenv.lib.maintainers; [ peti ];
}) {};
@@ -131244,7 +132479,6 @@ self: {
base bytestring hsyslog network text time unix
];
testHaskellDepends = [ base hspec time ];
- jailbreak = true;
homepage = "https://github.com/ThoughtLeadr/hsyslog-udp";
description = "Log to syslog over a network via UDP";
license = stdenv.lib.licenses.bsd3;
@@ -131359,13 +132593,12 @@ self: {
}:
mkDerivation {
pname = "htiled";
- version = "0.1.3.0";
- sha256 = "1141d497418c6f53c8e578be673073956108cf2617f8bf8af0c045a8f1f974da";
+ version = "0.1.4.0";
+ sha256 = "f78d4ff35328922613c93b4348738547bd55a3a196965a7e84e9e6289ba5aec1";
libraryHaskellDepends = [
base base64-bytestring bytestring containers filepath hxt split
zlib
];
- jailbreak = true;
description = "Import from the Tiled map editor";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -132822,7 +134055,7 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "http-client_0_5_0" = callPackage
+ "http-client_0_5_1" = callPackage
({ mkDerivation, array, async, base, base64-bytestring
, blaze-builder, bytestring, case-insensitive, containers, cookie
, deepseq, directory, exceptions, filepath, ghc-prim, hspec
@@ -132831,10 +134064,8 @@ self: {
}:
mkDerivation {
pname = "http-client";
- version = "0.5.0";
- sha256 = "5915ab9377690d4cb497440d7294e5e14265f2fe74d79b7e484a3883a383ca9a";
- revision = "1";
- editedCabalFile = "308e6f73c0a374472ec5221299fafbfc48888ac9d1e853416b01d4697756c3fe";
+ version = "0.5.1";
+ sha256 = "7406a258594989546a9706179b1ee76708b7258394a6cff280167cf26ce1d1f0";
libraryHaskellDepends = [
array base base64-bytestring blaze-builder bytestring
case-insensitive containers cookie deepseq exceptions filepath
@@ -132996,8 +134227,8 @@ self: {
}:
mkDerivation {
pname = "http-client-session";
- version = "0.1.1";
- sha256 = "41d9210795f0a0bdb984ca462d8d1e214679dda1b1a606dbce69ee52189162ca";
+ version = "0.1.2";
+ sha256 = "9cb4f452fa5465f6247dae835e6097c6d46f177804cb6121d61f4706ad3c9e65";
libraryHaskellDepends = [
base-prelude bytestring either http-client mtl-prelude
];
@@ -133710,7 +134941,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "http-media" = callPackage
+ "http-media_0_6_3" = callPackage
({ mkDerivation, base, bytestring, case-insensitive, containers
, QuickCheck, test-framework, test-framework-quickcheck2
}:
@@ -133729,6 +134960,27 @@ self: {
homepage = "https://github.com/zmthy/http-media";
description = "Processing HTTP Content-Type and Accept headers";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "http-media" = callPackage
+ ({ mkDerivation, base, bytestring, case-insensitive, containers
+ , QuickCheck, test-framework, test-framework-quickcheck2
+ }:
+ mkDerivation {
+ pname = "http-media";
+ version = "0.6.4";
+ sha256 = "ef762cf50854250e4247b744decbebe4d3d188dbc19bfd90aa344ed3c61cc9d3";
+ libraryHaskellDepends = [
+ base bytestring case-insensitive containers
+ ];
+ testHaskellDepends = [
+ base bytestring case-insensitive containers QuickCheck
+ test-framework test-framework-quickcheck2
+ ];
+ homepage = "https://github.com/zmthy/http-media";
+ description = "Processing HTTP Content-Type and Accept headers";
+ license = stdenv.lib.licenses.mit;
}) {};
"http-monad" = callPackage
@@ -134230,7 +135482,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "http2" = callPackage
+ "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
@@ -134251,6 +135503,30 @@ self: {
];
description = "HTTP/2.0 library including frames and HPACK";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "http2" = 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.1";
+ sha256 = "0f69321514c5de49a0a796dcf40decc5781bcb4d53618f4e977be4eb05a88055";
+ libraryHaskellDepends = [
+ array base bytestring bytestring-builder case-insensitive
+ containers psqueues stm
+ ];
+ 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;
}) {};
"httpd-shed" = callPackage
@@ -134519,7 +135795,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "human-readable-duration" = callPackage
+ "human-readable-duration_0_2_0_1" = callPackage
({ mkDerivation, base, doctest, time }:
mkDerivation {
pname = "human-readable-duration";
@@ -134530,6 +135806,20 @@ self: {
homepage = "http://github.com/yogsototh/human-readable-duration#readme";
description = "Provide duration helper";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "human-readable-duration" = callPackage
+ ({ mkDerivation, base, doctest, Glob }:
+ mkDerivation {
+ pname = "human-readable-duration";
+ version = "0.2.0.3";
+ sha256 = "93f3a91a2994588728ae757dcca5104e18a570b3591773aa7f03c524c97599da";
+ libraryHaskellDepends = [ base ];
+ testHaskellDepends = [ base doctest Glob ];
+ homepage = "http://github.com/yogsototh/human-readable-duration#readme";
+ description = "Provide duration helper";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"hums" = callPackage
@@ -134790,8 +136080,8 @@ self: {
}:
mkDerivation {
pname = "husk-scheme";
- version = "3.19.2";
- sha256 = "85bc2b974142778edbc354ef620fa0991b891aa5a0aaa36c1dd4ed8bd501fa63";
+ version = "3.19.3";
+ sha256 = "04817e7375296f24e9c28a93ec43d3b18e1717d45aeaa653cd46dc3be08d642d";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -134934,7 +136224,7 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "hw-bits" = callPackage
+ "hw-bits_0_0_0_6" = callPackage
({ mkDerivation, base, bytestring, criterion, hspec, hw-prim, mmap
, parsec, QuickCheck, resourcet, vector
}:
@@ -134952,6 +136242,29 @@ self: {
homepage = "http://github.com/haskell-works/hw-bits#readme";
description = "Conduits for tokenizing streams";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "hw-bits" = callPackage
+ ({ mkDerivation, base, bytestring, criterion, hspec, hw-prim, mmap
+ , parsec, QuickCheck, resourcet, vector
+ }:
+ mkDerivation {
+ pname = "hw-bits";
+ version = "0.0.0.7";
+ sha256 = "16e58787b6a39fb6602926480be7eb5486f2e652668e0fb70b0ec1467b755926";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base bytestring hw-prim parsec vector ];
+ executableHaskellDepends = [
+ base criterion mmap resourcet vector
+ ];
+ testHaskellDepends = [
+ base bytestring hspec hw-prim QuickCheck vector
+ ];
+ homepage = "http://github.com/haskell-works/hw-bits#readme";
+ description = "Conduits for tokenizing streams";
+ license = stdenv.lib.licenses.bsd3;
hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ];
}) {};
@@ -135099,13 +136412,15 @@ self: {
}:
mkDerivation {
pname = "hw-prim";
- version = "0.0.3.1";
- sha256 = "95ff89991fa2e1b0f4cb4a2d7a4bac15cf5a30224facd4b92292d8884600aff5";
+ version = "0.0.3.2";
+ sha256 = "c96ca6011d55419105bba7eebcae2d5afc627bdbcb4536469ba0b7a9f553c764";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base bytestring random vector ];
executableHaskellDepends = [ base ];
- testHaskellDepends = [ base hspec QuickCheck ];
+ testHaskellDepends = [
+ base bytestring hspec QuickCheck random vector
+ ];
homepage = "http://github.com/haskell-works/hw-prim#readme";
description = "Primitive functions and data types";
license = stdenv.lib.licenses.bsd3;
@@ -135771,6 +137086,7 @@ self: {
libraryHaskellDepends = [
base hxt hxt-charproperties hxt-unicode tagsoup
];
+ jailbreak = true;
homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html";
description = "TagSoup parser for HXT";
license = "unknown";
@@ -138644,10 +139960,8 @@ self: {
}:
mkDerivation {
pname = "imm";
- version = "1.0.0.0";
- sha256 = "05bca52253f0f6ea4fc52e07f5920012e75f20cd5e3127c7ffac5647a1512af5";
- revision = "3";
- editedCabalFile = "63bff92fa6fd212e3ba6f81b4d2e74fe47e02e86b06e8b1b1cd19588331ce5e4";
+ version = "1.0.1.0";
+ sha256 = "287a4815b43de90e89b27a356215e57d97c03ba4f929965b1a8ca5c4fe35658b";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -138821,6 +140135,7 @@ self: {
version = "0.2.1";
sha256 = "11d98bcb69c30abe29d229f2807e16381de2302a7473c53d2823b8cead0b40b5";
libraryHaskellDepends = [ base data-default-class ];
+ jailbreak = true;
homepage = "http://github.com/duairc/implicit-params";
description = "Named and unnamed implicit parameters with defaults";
license = stdenv.lib.licenses.bsd3;
@@ -139207,10 +140522,9 @@ self: {
({ mkDerivation, base, bifunctors, indexed, mtl, pointed }:
mkDerivation {
pname = "indexed-extras";
- version = "0.1.1";
- sha256 = "3901759ad35d8b2333ae18142d88f3b92954b05db733f8ccac255256b5981f56";
+ version = "0.2";
+ sha256 = "b01fe384c942d57a62a6416f3a312e8436ce54a664421311b104f8f8a6982b9f";
libraryHaskellDepends = [ base bifunctors indexed mtl pointed ];
- jailbreak = true;
homepage = "https://github.com/reinerp/indexed-extras";
description = "Indexed functors, monads and comonads that require extensions to Haskell98";
license = stdenv.lib.licenses.bsd3;
@@ -139585,6 +140899,21 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "ini-qq" = callPackage
+ ({ mkDerivation, base, HUnit, ini, raw-strings-qq, template-haskell
+ , text
+ }:
+ mkDerivation {
+ pname = "ini-qq";
+ version = "0.1.0.0";
+ sha256 = "8c5e9da0f3307de0e3c291dc108fbbcac832fae7bb974f64961813dca4e8faeb";
+ libraryHaskellDepends = [ base ini template-haskell text ];
+ testHaskellDepends = [ base HUnit ini raw-strings-qq text ];
+ homepage = "https://github.com/kseo/ini-qq#readme";
+ description = "Quasiquoter for INI";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"inilist" = callPackage
({ mkDerivation, base, bifunctors, containers, deepseq, HUnit, safe
, tasty, tasty-hunit, testpack, trifecta
@@ -140416,6 +141745,8 @@ self: {
pname = "interruptible";
version = "0.1.1.1";
sha256 = "d3ef92f178d03041edc7845dd3c3ac90a3e5c6b74b5ca1bca65246ac90af1e5c";
+ revision = "2";
+ editedCabalFile = "995d15d4358b5c31e289ac2840132c938c2635ae359e3624af7157e71667ce80";
libraryHaskellDepends = [
base either lifted-base monad-control transformers
];
@@ -140596,7 +141927,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "invariant" = callPackage
+ "invariant_0_3_1" = callPackage
({ mkDerivation, array, base, bifunctors, containers, contravariant
, ghc-prim, hspec, profunctors, QuickCheck, semigroups, StateVar
, stm, tagged, template-haskell, transformers, transformers-compat
@@ -140615,6 +141946,28 @@ self: {
homepage = "https://github.com/nfrisby/invariant-functors";
description = "Haskell 98 invariant functors";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "invariant" = callPackage
+ ({ mkDerivation, array, base, bifunctors, comonad, containers
+ , contravariant, ghc-prim, hspec, profunctors, QuickCheck
+ , semigroups, StateVar, stm, tagged, template-haskell, transformers
+ , transformers-compat, unordered-containers
+ }:
+ mkDerivation {
+ pname = "invariant";
+ version = "0.4";
+ sha256 = "dccf2790eb545d167623c0133aa0838d714004bfd158e3c9dfaca38497aef316";
+ libraryHaskellDepends = [
+ array base bifunctors comonad containers contravariant ghc-prim
+ profunctors semigroups StateVar stm tagged template-haskell
+ transformers transformers-compat unordered-containers
+ ];
+ testHaskellDepends = [ base hspec QuickCheck ];
+ homepage = "https://github.com/nfrisby/invariant-functors";
+ description = "Haskell 98 invariant functors";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"invertible" = callPackage
@@ -140980,19 +142333,19 @@ self: {
"ip" = callPackage
({ mkDerivation, aeson, attoparsec, base, bytestring, doctest
- , hashable, primitive, QuickCheck, test-framework
- , test-framework-quickcheck2, text, vector
+ , hashable, HUnit, primitive, QuickCheck, test-framework
+ , test-framework-hunit, test-framework-quickcheck2, text, vector
}:
mkDerivation {
pname = "ip";
- version = "0.8.1";
- sha256 = "0614467bf2db28cb5d47692906852f887bebd786643e1a5490bd23cf8a36d6bd";
+ version = "0.8.4";
+ sha256 = "8c0d0de5b927310848f3c17702637ed2ea15bffab5a82b6df61d5df88b74c1b6";
libraryHaskellDepends = [
aeson attoparsec base bytestring hashable primitive text vector
];
testHaskellDepends = [
- base bytestring doctest QuickCheck test-framework
- test-framework-quickcheck2 text
+ base bytestring doctest HUnit QuickCheck test-framework
+ test-framework-hunit test-framework-quickcheck2 text
];
homepage = "https://github.com/andrewthad/haskell-ip#readme";
description = "Library for IP and MAC addresses";
@@ -141447,8 +142800,8 @@ self: {
}:
mkDerivation {
pname = "irc-client";
- version = "0.4.2.0";
- sha256 = "94c8ea0d5e4d663cc78a0d9b25f283f870780a703e78229c8064d34ec23ce4fa";
+ version = "0.4.2.1";
+ sha256 = "2fe59527a1403a1ad960d1f7021871c85818ca3fe50f593505efb7ccbafa1308";
libraryHaskellDepends = [
base bytestring conduit irc-conduit irc-ctcp old-locale stm
stm-conduit text time transformers
@@ -143561,8 +144914,8 @@ self: {
({ mkDerivation, base, HTTP }:
mkDerivation {
pname = "js-jquery";
- version = "3.0.0";
- sha256 = "ad576481282ac48923303bc8bad50baee424425a1021ccfb61215aac8d0bd026";
+ version = "3.1.0";
+ sha256 = "a8db825d7740f18db4c3bad92db18e840913e1444f2d43e409dc5df691a7d3a2";
libraryHaskellDepends = [ base ];
testHaskellDepends = [ base HTTP ];
doCheck = false;
@@ -143704,8 +145057,8 @@ self: {
}:
mkDerivation {
pname = "json-api";
- version = "0.1.0.2";
- sha256 = "48d7b0256fe2b98ef762d9e74262c322cc896169a0d4ab0421c6abf281c609de";
+ version = "0.1.0.4";
+ sha256 = "b846d72168ec304c2b8fdc726c4b46a3439609a045d17c6ac9b64b58ca59107b";
libraryHaskellDepends = [
aeson base containers data-default lens-aeson text
unordered-containers url
@@ -144392,6 +145745,27 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "json-rpc-generic" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, containers, dlist
+ , QuickCheck, quickcheck-simple, scientific, text, transformers
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "json-rpc-generic";
+ version = "0.1.0.0";
+ sha256 = "20aee2bf91cd7e9b630282e34adb0b5ba6ae2f881aa5d3f4bd1b41536c49faa1";
+ libraryHaskellDepends = [
+ aeson base bytestring containers dlist scientific text transformers
+ unordered-containers vector
+ ];
+ testHaskellDepends = [
+ aeson base QuickCheck quickcheck-simple text
+ ];
+ homepage = "http://github.com/khibino/haskell-json-rpc-generic";
+ description = "Generic encoder and decode for JSON-RPC";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"json-rpc-server" = callPackage
({ mkDerivation, aeson, base, bytestring, deepseq, HUnit, mtl
, test-framework, test-framework-hunit, text, unordered-containers
@@ -144673,13 +146047,12 @@ self: {
}:
mkDerivation {
pname = "json-sop";
- version = "0.2.0.0";
- sha256 = "2657ff212fa92b5a1cc1e36e85bee87807f7f33efb2c0d52f2967e001487ee02";
+ version = "0.2.0.1";
+ sha256 = "ca02139ca3a5041225f684080067c5ec8c5e0ce3421a5eea9d273db377d005c9";
libraryHaskellDepends = [
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;
hydraPlatforms = [ "x86_64-darwin" ];
@@ -145596,6 +146969,31 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "kawhi" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, exceptions, http-client
+ , http-conduit, http-types, mtl, safe, scientific, smallcheck
+ , tasty, tasty-hunit, tasty-quickcheck, tasty-smallcheck, text
+ }:
+ mkDerivation {
+ pname = "kawhi";
+ version = "0.0.1";
+ sha256 = "bb7bb30129c065032d217834d9f991df63ddfa55ee14e4c45ef5ddf141839d6f";
+ revision = "1";
+ editedCabalFile = "624bf276517215fb85d51f9252dce93acfde800feaa6439d054f6037bc2f3cb3";
+ libraryHaskellDepends = [
+ aeson base bytestring exceptions http-client http-conduit
+ http-types mtl safe scientific text
+ ];
+ testHaskellDepends = [
+ aeson base bytestring exceptions http-client http-types mtl
+ scientific smallcheck tasty tasty-hunit tasty-quickcheck
+ tasty-smallcheck text
+ ];
+ homepage = "https://github.com/hamsterdam/kawhi";
+ description = "stats.NBA.com library";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"kazura-queue" = callPackage
({ mkDerivation, async, atomic-primops, base, containers, deepseq
, doctest, exceptions, free, hspec, hspec-expectations, HUnit, mtl
@@ -145711,6 +147109,34 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "keenser" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, bytestring, containers
+ , fast-logger, hedis, hostname, lifted-base, monad-control
+ , monad-logger, old-locale, random, scientific, stm, text, thyme
+ , time, transformers, transformers-base, unix, unordered-containers
+ , vector-space
+ }:
+ mkDerivation {
+ pname = "keenser";
+ version = "0.1.0.0";
+ sha256 = "947e825cb31c93077fd90d978d5d04dfbb3fa2def8a634fbf71a7b8c4422919d";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson attoparsec base bytestring containers hedis hostname
+ lifted-base monad-control monad-logger old-locale random scientific
+ stm text thyme time transformers transformers-base unix
+ unordered-containers vector-space
+ ];
+ executableHaskellDepends = [
+ aeson base bytestring fast-logger hedis monad-logger text unix
+ ];
+ testHaskellDepends = [ base ];
+ homepage = "https://github.com/jamesdabbs/keenser#readme";
+ description = "Initial project template from stack";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"keera-callbacks" = callPackage
({ mkDerivation, base, mtl }:
mkDerivation {
@@ -146923,7 +148349,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "kraken" = callPackage
+ "kraken_0_0_2" = callPackage
({ mkDerivation, aeson, base, bytestring, http-client
, http-client-tls, mtl
}:
@@ -146938,6 +148364,22 @@ self: {
];
description = "Kraken.io API client";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "kraken" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, http-client
+ , http-client-tls, mtl
+ }:
+ mkDerivation {
+ pname = "kraken";
+ version = "0.0.3";
+ sha256 = "4001e1c545155434985f7ca93b5d1bcc6a465c83c58d4bb41a60bbfe521b1e9d";
+ libraryHaskellDepends = [
+ aeson base bytestring http-client http-client-tls mtl
+ ];
+ description = "Kraken.io API client";
+ license = stdenv.lib.licenses.mit;
}) {};
"krpc" = callPackage
@@ -148052,7 +149494,7 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
- "lambdacube-gl" = callPackage
+ "lambdacube-gl_0_5_0_5" = callPackage
({ mkDerivation, base, bytestring, containers, JuicyPixels
, lambdacube-ir, mtl, OpenGLRaw, vector, vector-algorithms
}:
@@ -148068,6 +149510,25 @@ self: {
homepage = "http://lambdacube3d.com";
description = "OpenGL 3.3 Core Profile backend for LambdaCube 3D";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "lambdacube-gl" = callPackage
+ ({ mkDerivation, base, bytestring, containers, JuicyPixels
+ , lambdacube-ir, mtl, OpenGLRaw, vector, vector-algorithms
+ }:
+ mkDerivation {
+ pname = "lambdacube-gl";
+ version = "0.5.1.1";
+ sha256 = "44fcd8abfd86607a65702caac4894114632590473bc1701f8e082966b79c63c3";
+ libraryHaskellDepends = [
+ base bytestring containers JuicyPixels lambdacube-ir mtl OpenGLRaw
+ vector vector-algorithms
+ ];
+ jailbreak = true;
+ homepage = "http://lambdacube3d.com";
+ description = "OpenGL 3.3 Core Profile backend for LambdaCube 3D";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"lambdacube-ir" = callPackage
@@ -148649,13 +150110,13 @@ self: {
}) {};
"language-dart" = callPackage
- ({ mkDerivation, base, hspec, pretty }:
+ ({ mkDerivation, base, hspec, pretty, raw-strings-qq }:
mkDerivation {
pname = "language-dart";
- version = "0.1.0.0";
- sha256 = "da3d2463be605a48b21af178dbf74d00c90da9b909821a7f54db77f5a82b3cbb";
+ version = "0.2.0.0";
+ sha256 = "41b144aa3af001345cf5b2b2a249f332608d8fb7915b97f93c078dc0b4b4e9c5";
libraryHaskellDepends = [ base pretty ];
- testHaskellDepends = [ base hspec ];
+ testHaskellDepends = [ base hspec raw-strings-qq ];
homepage = "https://github.com/kseo/language-dart#readme";
description = "Manipulating Dart source: abstract syntax and pretty-printer";
license = stdenv.lib.licenses.bsd3;
@@ -148780,6 +150241,7 @@ self: {
mtl parsec QuickCheck test-framework test-framework-hunit
test-framework-quickcheck2 uniplate wl-pprint
];
+ jailbreak = true;
doCheck = false;
homepage = "http://github.com/jswebtools/language-ecmascript";
description = "JavaScript parser and pretty-printer library";
@@ -149473,6 +150935,51 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "language-puppet_1_3" = callPackage
+ ({ mkDerivation, aeson, ansi-wl-pprint, attoparsec, base
+ , base16-bytestring, bytestring, case-insensitive, containers
+ , cryptonite, directory, either, exceptions, filecache, formatting
+ , Glob, hashable, hruby, hslogger, hspec, hspec-megaparsec
+ , http-api-data, http-client, HUnit, lens, lens-aeson, megaparsec
+ , memory, mtl, operational, optparse-applicative, parallel-io
+ , parsec, pcre-utils, process, random, regex-pcre-builtin
+ , scientific, semigroups, servant, servant-client, split, stm
+ , strict-base-types, temporary, text, time, transformers, unix
+ , unordered-containers, vector, yaml
+ }:
+ mkDerivation {
+ pname = "language-puppet";
+ version = "1.3";
+ sha256 = "59a06ac062a1825425fabaaf7ec2e5305e4fb2627db4d91cfa2cc996d37728d6";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson ansi-wl-pprint attoparsec base base16-bytestring bytestring
+ case-insensitive containers cryptonite directory either exceptions
+ filecache formatting hashable hruby hslogger hspec http-api-data
+ http-client lens lens-aeson megaparsec memory mtl operational
+ parsec pcre-utils process random regex-pcre-builtin scientific
+ semigroups servant servant-client split stm strict-base-types text
+ time transformers unix unordered-containers vector yaml
+ ];
+ executableHaskellDepends = [
+ aeson base bytestring containers Glob hslogger http-client lens
+ megaparsec mtl optparse-applicative parallel-io regex-pcre-builtin
+ servant-client strict-base-types text transformers
+ unordered-containers vector yaml
+ ];
+ testHaskellDepends = [
+ ansi-wl-pprint base Glob hslogger hspec hspec-megaparsec HUnit lens
+ megaparsec mtl scientific strict-base-types temporary text
+ transformers unix unordered-containers vector
+ ];
+ jailbreak = true;
+ homepage = "http://lpuppet.banquise.net/";
+ description = "Tools to parse and evaluate the Puppet DSL";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"language-python" = callPackage
({ mkDerivation, alex, array, base, containers, happy, monads-tf
, pretty, transformers, utf8-string
@@ -149754,8 +151261,8 @@ self: {
({ mkDerivation, base, parsec, wl-pprint }:
mkDerivation {
pname = "language-webidl";
- version = "0.1.1.1";
- sha256 = "b2d096f8f44ee131e7bb06df246fa163b5da6a6eac0a3e385642fb14d5c19d18";
+ version = "0.1.2.0";
+ sha256 = "50be4849f64d6bfa799fafd77b89480e7342d4daf30684179dc88b8891cdce4c";
libraryHaskellDepends = [ base parsec wl-pprint ];
description = "Parser and Pretty Printer for WebIDL";
license = stdenv.lib.licenses.mit;
@@ -150423,8 +151930,8 @@ self: {
({ mkDerivation, base, template-haskell }:
mkDerivation {
pname = "leancheck";
- version = "0.4.1";
- sha256 = "7fb4316f341ade6abb56afe9f4978be204f0f7da42c324e474953b7ac0380793";
+ version = "0.5.0";
+ sha256 = "191b704dd7bb74e6ee23aecad3a9f267867908f5594b809755273950d6d516b8";
libraryHaskellDepends = [ base template-haskell ];
testHaskellDepends = [ base template-haskell ];
homepage = "https://github.com/rudymatela/leancheck#readme";
@@ -150450,8 +151957,8 @@ self: {
({ mkDerivation, base, QuickCheck, time }:
mkDerivation {
pname = "leapseconds-announced";
- version = "2015.0.0.1";
- sha256 = "15fabb848809ffd47010161bc7cd3f301862b63f93f3c7c5e228b3809d84134d";
+ version = "2017";
+ sha256 = "7fdbc929cfcb87f1daa0d2a278aeb58264ee82bf96ece918013b5b942a477dab";
libraryHaskellDepends = [ base time ];
testHaskellDepends = [ base QuickCheck time ];
homepage = "https://github.com/bjornbm/leapseconds-announced";
@@ -151214,12 +152721,11 @@ self: {
({ mkDerivation, base, fclabels, generics-sop, transformers }:
mkDerivation {
pname = "lens-sop";
- version = "0.2.0.0";
- sha256 = "36f5a59ee68921496502c5586cd968ca2524cbb4be718763892c0daf26c7280a";
+ version = "0.2.0.1";
+ sha256 = "13a335a49acfef59ab8d39845a5bb174826c342c1705a96caa0c7d1fba6d7966";
libraryHaskellDepends = [
base fclabels generics-sop transformers
];
- jailbreak = true;
description = "Computing lenses generically using generics-sop";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = [ "x86_64-darwin" ];
@@ -151524,10 +153030,9 @@ self: {
({ mkDerivation, base, bindings-levmar, hmatrix, vector }:
mkDerivation {
pname = "levmar";
- version = "1.2.1.5";
- sha256 = "727ec5ebd523997b471685c7aed6f1a91120707e3b273734d23a6fc6a35d5525";
+ version = "1.2.1.6";
+ sha256 = "90e6560a6d3e94ea6e0517079b4f00559725c120047ea98bb7500624e6a2747e";
libraryHaskellDepends = [ base bindings-levmar hmatrix vector ];
- jailbreak = true;
homepage = "https://github.com/basvandijk/levmar";
description = "An implementation of the Levenberg-Marquardt algorithm";
license = stdenv.lib.licenses.bsd3;
@@ -152646,12 +154151,32 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "lifted-protolude" = callPackage
+ ({ mkDerivation, async, base, bytestring, containers, deepseq
+ , exceptions, ghc-prim, lifted-async, lifted-base, mtl, safe, stm
+ , text, transformers
+ }:
+ mkDerivation {
+ pname = "lifted-protolude";
+ version = "0.1.6";
+ sha256 = "ad5cbb992e07d92bfc71cb566ac2472d4996a925b17bb92c1da3c7d97cdf31eb";
+ libraryHaskellDepends = [
+ async base bytestring containers deepseq exceptions ghc-prim
+ lifted-async lifted-base mtl safe stm text transformers
+ ];
+ homepage = "https://github.com/parsonsmat/lifted-protolude";
+ description = "A sensible set of defaults for writing lifted custom Preludes";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"lifted-threads" = callPackage
({ mkDerivation, base, monad-control, threads, transformers-base }:
mkDerivation {
pname = "lifted-threads";
version = "1.0";
sha256 = "7f7dd54c54b252f3f3884a18282364a2b785ace96e8922b1d013fd62573800eb";
+ revision = "1";
+ editedCabalFile = "9ca26a82d283f9c00a7de537198cd0ce1a05e6e802e0e7f82663c45242a9e973";
libraryHaskellDepends = [
base monad-control threads transformers-base
];
@@ -154284,8 +155809,8 @@ self: {
}:
mkDerivation {
pname = "list-tries";
- version = "0.6.2";
- sha256 = "604e0c634672d91688f859da9345a2f60a680f77471df4528cb6931ca3b8ea9e";
+ version = "0.6.3";
+ sha256 = "f5462fb3989c2687b4678aa427d61b0c2aa1793307a9f6e61c19aaecb2e19c35";
libraryHaskellDepends = [ base binary containers dlist ];
testHaskellDepends = [
base binary ChasingBottoms HUnit QuickCheck template-haskell
@@ -154998,8 +156523,8 @@ self: {
pname = "lock-file";
version = "0.5.0.2";
sha256 = "274ecb94d0af66fed7b624fca402381d7f262f510ac7c4271037153efda49ad0";
- revision = "1";
- editedCabalFile = "ef22bf7dfd46708eebcc8a895a0a265e6bbf1d05a7ebfdf0f9ee6513d838df8e";
+ revision = "3";
+ editedCabalFile = "565e73c14184f1760473a10e35d2a04f354dbec33abcf185d217754ad63709b6";
libraryHaskellDepends = [
base data-default-class directory exceptions tagged-exception-core
transformers
@@ -155066,8 +156591,8 @@ self: {
}:
mkDerivation {
pname = "log";
- version = "0.5.0";
- sha256 = "d73310d807d3caecec03911c06d0e7a374956ed1030910c6c477bac6af3ccdf5";
+ version = "0.5.2";
+ sha256 = "a105254ee5121e87cea0fb168909a14edbc1506bc62fef51e3bbba2e7d60c2b3";
libraryHaskellDepends = [
aeson aeson-pretty base base64-bytestring bloodhound bytestring
cond deepseq exceptions hpqtypes http-client lifted-base
@@ -155319,6 +156844,27 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "logentries" = callPackage
+ ({ mkDerivation, base, bytestring, data-default, fast-logger, hspec
+ , network, stm, uuid-types, wai, wai-extra
+ }:
+ mkDerivation {
+ pname = "logentries";
+ version = "0.1.0.1";
+ sha256 = "229f47a750e4a741bea48563ccf70cd59641f5f761beff66f168108dbdc15572";
+ libraryHaskellDepends = [
+ base bytestring data-default fast-logger network stm uuid-types wai
+ wai-extra
+ ];
+ testHaskellDepends = [
+ base bytestring fast-logger hspec uuid-types
+ ];
+ jailbreak = true;
+ homepage = "https://github.com/toddmohney/logentries#README.md";
+ description = "Request logger middleware for Logentries";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"logfloat_0_12_1" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -156072,7 +157618,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "ltext" = callPackage
+ "ltext_0_0_2_1" = callPackage
({ mkDerivation, aeson, base, containers, data-default, deepseq
, directory, hspec, mtl, mtl-compat, optparse-applicative, parsec
, pretty, template-haskell, text, transformers, yaml
@@ -156096,6 +157642,36 @@ self: {
jailbreak = true;
description = "Higher-order file applicator";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "ltext" = callPackage
+ ({ mkDerivation, attoparsec, base, directory, exceptions, extra
+ , HFuse, mtl, optparse-applicative, pretty, QuickCheck
+ , quickcheck-combinators, tasty, tasty-quickcheck, text
+ , transformers, unordered-containers
+ }:
+ mkDerivation {
+ pname = "ltext";
+ version = "0.1.2";
+ sha256 = "24722147121bfe34e42e92badcf4b30a2f176608e7b72cf7c0a49d1e49498ebd";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ attoparsec base directory exceptions extra HFuse mtl pretty
+ QuickCheck quickcheck-combinators text transformers
+ unordered-containers
+ ];
+ executableHaskellDepends = [
+ attoparsec base directory exceptions extra mtl optparse-applicative
+ pretty QuickCheck quickcheck-combinators text transformers
+ unordered-containers
+ ];
+ testHaskellDepends = [
+ base QuickCheck quickcheck-combinators tasty tasty-quickcheck text
+ ];
+ description = "Higher-order file applicator";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"ltiv1p1" = callPackage
@@ -157738,6 +159314,20 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "makefile" = callPackage
+ ({ mkDerivation, attoparsec, base, bytestring, doctest, Glob }:
+ mkDerivation {
+ pname = "makefile";
+ version = "0.1.0.3";
+ sha256 = "2ad77fc1cc390225ecb7155f6df87b3be5bdba5803629ba687f98711a8114e4a";
+ libraryHaskellDepends = [ attoparsec base bytestring ];
+ testHaskellDepends = [ attoparsec base bytestring doctest Glob ];
+ doCheck = false;
+ homepage = "http://github.com/nmattia/mask";
+ description = "Simple Makefile parser";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"managed_1_0_0" = callPackage
({ mkDerivation, base, transformers }:
mkDerivation {
@@ -158405,7 +159995,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "mandrill" = callPackage
+ "mandrill_0_5_2_1" = callPackage
({ mkDerivation, aeson, base, base64-bytestring, blaze-html
, bytestring, containers, email-validate, http-client
, http-client-tls, http-types, lens, mtl, old-locale, QuickCheck
@@ -158427,6 +160017,31 @@ self: {
];
description = "Library for interfacing with the Mandrill JSON API";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "mandrill" = callPackage
+ ({ mkDerivation, aeson, base, base64-bytestring, blaze-html
+ , bytestring, containers, email-validate, http-client
+ , http-client-tls, http-types, lens, mtl, old-locale, QuickCheck
+ , raw-strings-qq, tasty, tasty-hunit, tasty-quickcheck, text, time
+ , unordered-containers
+ }:
+ mkDerivation {
+ pname = "mandrill";
+ version = "0.5.2.2";
+ sha256 = "99031db2a5406c4fe2f3523af6220d793d57f3e75d106e75bfa1bdac9eb77582";
+ libraryHaskellDepends = [
+ aeson base base64-bytestring blaze-html bytestring containers
+ email-validate http-client http-client-tls http-types lens mtl
+ old-locale QuickCheck text time unordered-containers
+ ];
+ testHaskellDepends = [
+ aeson base bytestring QuickCheck raw-strings-qq tasty tasty-hunit
+ tasty-quickcheck text
+ ];
+ description = "Library for interfacing with the Mandrill JSON API";
+ license = stdenv.lib.licenses.mit;
}) {};
"mandulia" = callPackage
@@ -158901,10 +160516,9 @@ self: {
({ mkDerivation, base, containers, random, transformers }:
mkDerivation {
pname = "markov-chain";
- version = "0.0.3.3";
- sha256 = "a8d32b259b4d5508c4c2fce44013c2d095f808fe5af072144ccabc669c962ef9";
+ version = "0.0.3.4";
+ sha256 = "6e51b800101a28593be28ce7ef1b21b7cc7a177a821fb99ecd8a28c69b7b92cd";
libraryHaskellDepends = [ base containers random transformers ];
- jailbreak = true;
homepage = "http://code.haskell.org/~thielema/markov-chain/";
description = "Markov Chains for generating random sequences with a user definable behaviour";
license = "GPL";
@@ -159198,7 +160812,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "math-functions" = callPackage
+ "math-functions_0_1_7_0" = callPackage
({ mkDerivation, base, deepseq, erf, HUnit, primitive, QuickCheck
, test-framework, test-framework-hunit, test-framework-quickcheck2
, vector, vector-th-unbox
@@ -159221,6 +160835,30 @@ self: {
homepage = "https://github.com/bos/math-functions";
description = "Special functions and Chebyshev polynomials";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "math-functions" = callPackage
+ ({ mkDerivation, base, deepseq, erf, HUnit, primitive, QuickCheck
+ , test-framework, test-framework-hunit, test-framework-quickcheck2
+ , vector, vector-th-unbox
+ }:
+ mkDerivation {
+ pname = "math-functions";
+ version = "0.2.0.1";
+ sha256 = "ac165116d981d879b4ea4f387d40140515d75823d8d60295514c41dbf4cac641";
+ libraryHaskellDepends = [
+ base deepseq primitive vector vector-th-unbox
+ ];
+ testHaskellDepends = [
+ base deepseq erf HUnit primitive QuickCheck test-framework
+ test-framework-hunit test-framework-quickcheck2 vector
+ vector-th-unbox
+ ];
+ doCheck = false;
+ homepage = "https://github.com/bos/math-functions";
+ description = "Special functions and Chebyshev polynomials";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"mathblog" = callPackage
@@ -159672,6 +161310,26 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "mcm" = callPackage
+ ({ mkDerivation, base, blaze-html, bytestring, containers
+ , directory, filepath, hostname, MissingH, polyparse, process, text
+ , unix
+ }:
+ mkDerivation {
+ pname = "mcm";
+ version = "0.6.4.10";
+ sha256 = "daa13513fd3b7d0c6469977020b61a659ec43fc1dab891b01ba34f39ebf8d364";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base blaze-html bytestring containers directory filepath hostname
+ MissingH polyparse process text unix
+ ];
+ homepage = "http://interfaces.org.uk/mcm";
+ description = "Machine Configuration Manager";
+ license = stdenv.lib.licenses.gpl3;
+ }) {};
+
"mcmaster-gloss-examples" = callPackage
({ mkDerivation, base, gloss }:
mkDerivation {
@@ -160028,16 +161686,17 @@ self: {
}) {};
"megaparsec" = callPackage
- ({ mkDerivation, base, bytestring, containers, exceptions, HUnit
- , mtl, QuickCheck, scientific, test-framework, test-framework-hunit
- , test-framework-quickcheck2, text, transformers
+ ({ mkDerivation, base, bytestring, containers, deepseq, exceptions
+ , HUnit, mtl, QuickCheck, scientific, test-framework
+ , test-framework-hunit, test-framework-quickcheck2, text
+ , transformers
}:
mkDerivation {
pname = "megaparsec";
- version = "5.0.0";
- sha256 = "6ed6448cfd5f37017296b5ce170e037d11855c9d52e7ef01103313514fbead70";
+ version = "5.0.1";
+ sha256 = "8bd9c4f4f1d92cf45577ceabd13f58e0a980848142fba1036fa37bcab4aa3b25";
libraryHaskellDepends = [
- base bytestring containers exceptions mtl scientific text
+ base bytestring containers deepseq exceptions mtl scientific text
transformers
];
testHaskellDepends = [
@@ -160165,7 +161824,6 @@ self: {
testHaskellDepends = [
base binary blaze-builder bytestring network
];
- jailbreak = true;
homepage = "https://github.com/dterei/memcache-hs";
description = "A memcached client library";
license = stdenv.lib.licenses.bsd3;
@@ -161359,7 +163017,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "microlens-mtl" = callPackage
+ "microlens-mtl_0_1_8_0" = callPackage
({ mkDerivation, base, microlens, mtl, transformers
, transformers-compat
}:
@@ -161373,6 +163031,23 @@ self: {
homepage = "http://github.com/aelve/microlens";
description = "microlens support for Reader/Writer/State from mtl";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "microlens-mtl" = callPackage
+ ({ mkDerivation, base, microlens, mtl, transformers
+ , transformers-compat
+ }:
+ mkDerivation {
+ pname = "microlens-mtl";
+ version = "0.1.9.0";
+ sha256 = "cf6dfd8c069eed3361952e8db75a065ab94072c430ed2a43a7a7383344726ac8";
+ libraryHaskellDepends = [
+ base microlens mtl transformers transformers-compat
+ ];
+ homepage = "http://github.com/aelve/microlens";
+ description = "microlens support for Reader/Writer/State from mtl";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"microlens-platform_0_1_7_0" = callPackage
@@ -161489,7 +163164,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "microlens-platform" = callPackage
+ "microlens-platform_0_3_2_0" = callPackage
({ mkDerivation, base, hashable, microlens, microlens-ghc
, microlens-mtl, microlens-th, text, unordered-containers, vector
}:
@@ -161501,6 +163176,25 @@ self: {
base hashable microlens microlens-ghc microlens-mtl microlens-th
text unordered-containers vector
];
+ jailbreak = true;
+ homepage = "http://github.com/aelve/microlens";
+ description = "Feature-complete microlens";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "microlens-platform" = callPackage
+ ({ mkDerivation, base, hashable, microlens, microlens-ghc
+ , microlens-mtl, microlens-th, text, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "microlens-platform";
+ version = "0.3.3.0";
+ sha256 = "174c87afcb0d3004e52b4283773aa16d2a6f0a3b819b362a36f75d7e72433ca8";
+ libraryHaskellDepends = [
+ base hashable microlens microlens-ghc microlens-mtl microlens-th
+ text unordered-containers vector
+ ];
homepage = "http://github.com/aelve/microlens";
description = "Feature-complete microlens";
license = stdenv.lib.licenses.bsd3;
@@ -161835,8 +163529,8 @@ self: {
}:
mkDerivation {
pname = "mighttpd2";
- version = "3.3.2";
- sha256 = "3d9dc5ef52d5b62cdbccb234ce29edc1a6c37184333715b88ee152770135a47e";
+ version = "3.3.3";
+ sha256 = "f716ab686c9edb2d549f03b069c3b630dd5c147eff6ab1317781450c47a8f7b4";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -161852,6 +163546,7 @@ self: {
warp
];
testHaskellDepends = [ base hspec http-client ];
+ jailbreak = true;
homepage = "http://www.mew.org/~kazu/proj/mighttpd/";
description = "High performance web server on WAI/warp";
license = stdenv.lib.licenses.bsd3;
@@ -162525,6 +164220,27 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {};
+ "mios" = callPackage
+ ({ mkDerivation, base, bytestring, containers, ghc-prim, primitive
+ , vector
+ }:
+ mkDerivation {
+ pname = "mios";
+ version = "1.2.1";
+ sha256 = "a64ee6a6ccaa12204eec897cc2bef9122ffe92ec924920d6814f95f5a31e6280";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring containers ghc-prim primitive vector
+ ];
+ executableHaskellDepends = [
+ base bytestring containers ghc-prim primitive vector
+ ];
+ homepage = "https://github.com/shnarazk/mios";
+ description = "A Minisat-based SAT solver in Haskell";
+ license = stdenv.lib.licenses.gpl3;
+ }) {};
+
"mirror-tweet" = callPackage
({ mkDerivation, authenticate-oauth, base, bytestring, conduit
, lens, monad-logger, text, transformers, twitter-conduit
@@ -162943,8 +164659,8 @@ self: {
}:
mkDerivation {
pname = "modify-fasta";
- version = "0.8.2.0";
- sha256 = "8d5f8148b969147edef5483e72edd419f2184a0e43da2bdf201e09cf2d42877a";
+ version = "0.8.2.1";
+ sha256 = "5af7cddb753353ac1e16e15e5962e6a6c46eeb6a1d1ae38a8f014e20b04e61a0";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -163218,15 +164934,15 @@ self: {
}) {};
"monad-abort-fd" = callPackage
- ({ mkDerivation, base, data-default, monad-control, mtl
- , transformers, transformers-abort, transformers-base
+ ({ mkDerivation, base, monad-control, mtl, transformers
+ , transformers-abort, transformers-base
}:
mkDerivation {
pname = "monad-abort-fd";
- version = "0.4";
- sha256 = "f98fe481b4dd57e1fdb5a30899b53eb0183265fcb02212151faa3263f04dde06";
+ version = "0.5";
+ sha256 = "677915c0c44d2e0ed478ff0637a5c9c291762e61619a3133f8331bfc855ed8fb";
libraryHaskellDepends = [
- base data-default monad-control mtl transformers transformers-abort
+ base monad-control mtl transformers transformers-abort
transformers-base
];
homepage = "https://github.com/mvv/monad-abort-fd";
@@ -163740,6 +165456,25 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "monad-lgbt" = callPackage
+ ({ mkDerivation, base, containers, deepseq, hspec, logict, mtl
+ , QuickCheck
+ }:
+ mkDerivation {
+ pname = "monad-lgbt";
+ version = "0.0.1";
+ sha256 = "259b2c08e8690873202f06eb8ef66ec51a0104bf13bc24670885c4db773bb2f1";
+ libraryHaskellDepends = [
+ base containers deepseq hspec logict mtl QuickCheck
+ ];
+ testHaskellDepends = [
+ base containers deepseq hspec logict mtl QuickCheck
+ ];
+ homepage = "https://github.com/mgajda/monad-lgbt#readme";
+ description = "Monad transformers for combining local and global state";
+ license = stdenv.lib.licenses.bsd2;
+ }) {};
+
"monad-log" = callPackage
({ mkDerivation, aeson, base, bytestring, exceptions, fast-logger
, lifted-base, monad-control, template-haskell, text, text-show
@@ -164033,27 +165768,43 @@ self: {
}:
mkDerivation {
pname = "monad-logger-prefix";
- version = "0.1.1";
- sha256 = "80974cef0fb2393a085653014c3448d804f5083694bc8aa901f74541e2afb754";
+ version = "0.1.4";
+ sha256 = "3723db1545702f800a3fa5663f4120b9778ce089c50bddf4c0263ff8ca46d39a";
libraryHaskellDepends = [
base exceptions monad-control monad-logger mtl resourcet text
transformers transformers-base
];
testHaskellDepends = [ base doctest Glob hspec QuickCheck ];
- jailbreak = true;
homepage = "https://github.com/sellerlabs/monad-logger-prefix#readme";
description = "Add prefixes to your monad-logger output";
license = stdenv.lib.licenses.asl20;
}) {};
+ "monad-logger-syslog_0_1_1_1" = callPackage
+ ({ mkDerivation, base, bytestring, fast-logger, hsyslog
+ , monad-logger, text, transformers
+ }:
+ mkDerivation {
+ pname = "monad-logger-syslog";
+ version = "0.1.1.1";
+ sha256 = "6e1bc3833c3768c354ea269b95a8c566036ba606b769dacda1b9653b4b22b541";
+ libraryHaskellDepends = [
+ base bytestring fast-logger hsyslog monad-logger text transformers
+ ];
+ homepage = "https://github.com/fpco/monad-logger-syslog";
+ description = "syslog output for monad-logger";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"monad-logger-syslog" = callPackage
({ mkDerivation, base, bytestring, fast-logger, hsyslog
, monad-logger, text, transformers
}:
mkDerivation {
pname = "monad-logger-syslog";
- version = "0.1.1.1";
- sha256 = "6e1bc3833c3768c354ea269b95a8c566036ba606b769dacda1b9653b4b22b541";
+ version = "0.1.2.0";
+ sha256 = "8b7d6598cbe4046aaeb7f86e526f259be4dde43967bf8a15f8ce3ea9f33221c2";
libraryHaskellDepends = [
base bytestring fast-logger hsyslog monad-logger text transformers
];
@@ -164628,6 +166379,8 @@ self: {
pname = "monad-time";
version = "0.2";
sha256 = "a9b901ca94b4c71d5f374a472506db92d26b13af523ceafe1e3302e8bae8b05d";
+ revision = "1";
+ editedCabalFile = "a3a67f4b7fd08b82054dcf1d0cda06afcafa60644ea837ac8135a1c2cbe1a9ec";
libraryHaskellDepends = [ base mtl time ];
testHaskellDepends = [ base mtl time ];
homepage = "https://github.com/scrive/monad-time";
@@ -165293,8 +167046,8 @@ self: {
}:
mkDerivation {
pname = "mongoDB";
- version = "2.1.0.1";
- sha256 = "db9909feb0ba4fc2c6a554b1f97f546dc27acc57dcfc6a46854a17cace08686f";
+ version = "2.1.0.2";
+ sha256 = "476489da2b14e55c7c3a17bce0e3eb6283eb72a0f4dfa823ba7708a13924ce2c";
libraryHaskellDepends = [
array base base16-bytestring base64-bytestring binary bson
bytestring containers cryptohash data-default-class hashtables
@@ -165630,8 +167383,8 @@ self: {
}:
mkDerivation {
pname = "mono-traversable";
- version = "1.0.0";
- sha256 = "53ba4d590601f8b1ab376b9eb4b72e451ef131860022f91466b04610ec82e1c8";
+ version = "1.0.0.1";
+ sha256 = "001d1fba5e3da63c46784a621d1430937e9537b38c0a74876e489ff4d7d3828a";
libraryHaskellDepends = [
base bytestring containers hashable split text transformers
unordered-containers vector vector-algorithms
@@ -165753,7 +167506,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "monoid-extras" = callPackage
+ "monoid-extras_0_4_1_2" = callPackage
({ mkDerivation, base, groups, semigroupoids, semigroups }:
mkDerivation {
pname = "monoid-extras";
@@ -165762,6 +167515,18 @@ self: {
libraryHaskellDepends = [ base groups semigroupoids semigroups ];
description = "Various extra monoid-related definitions and utilities";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "monoid-extras" = callPackage
+ ({ mkDerivation, base, groups, semigroupoids, semigroups }:
+ mkDerivation {
+ pname = "monoid-extras";
+ version = "0.4.2";
+ sha256 = "13ff4e055c9656a3e599567cbc4a46ef8617c05534de46909a4239696e34281f";
+ libraryHaskellDepends = [ base groups semigroupoids semigroups ];
+ description = "Various extra monoid-related definitions and utilities";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"monoid-owns" = callPackage
@@ -166233,8 +167998,8 @@ self: {
}:
mkDerivation {
pname = "morph";
- version = "0.1.0.0";
- sha256 = "573ca63c508fd54740fa4bc26523990238e306f048e5f01ec9b3a9b317c9629f";
+ version = "0.1.0.1";
+ sha256 = "8ac454d889af2ebe0ef92011e85c9b005be07262a642e3435dac6951c38363f6";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -168785,6 +170550,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "namespace" = callPackage
+ ({ mkDerivation, base, containers }:
+ mkDerivation {
+ pname = "namespace";
+ version = "0.1.0.0";
+ sha256 = "5bb87af21ac3ac6fe6fee9ecf657b7c10a60b3b308e7ab7a933e80a52a743213";
+ libraryHaskellDepends = [ base containers ];
+ testHaskellDepends = [ base ];
+ homepage = "https://github.com/xu-hao/namespace";
+ description = "A Generic Haskell library for managing namespaces";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"nano-cryptr" = callPackage
({ mkDerivation, base, bytestring }:
mkDerivation {
@@ -168945,19 +170723,15 @@ self: {
"nanovg" = callPackage
({ mkDerivation, base, bytestring, containers, freeglut, GLEW
- , hspec, inline-c, linear, mesa, QuickCheck, text, vector
+ , hspec, inline-c, mesa, QuickCheck, text, vector
}:
mkDerivation {
pname = "nanovg";
- version = "0.3.0.0";
- sha256 = "66225623b3841f35f68c177ab01c81c2ba47b1713b384df7c6f04124dca018b3";
- libraryHaskellDepends = [
- base bytestring containers linear text vector
- ];
+ version = "0.4.0.0";
+ sha256 = "910addcdcf0691facf8a599fb800f0bdaf93cd06ba3bf76bdf3e6d0080833e91";
+ libraryHaskellDepends = [ base bytestring containers text vector ];
librarySystemDepends = [ freeglut GLEW mesa ];
- testHaskellDepends = [
- base containers hspec inline-c linear QuickCheck
- ];
+ testHaskellDepends = [ base containers hspec inline-c QuickCheck ];
homepage = "https://github.com/cocreature/nanovg-hs";
description = "Haskell bindings for nanovg";
license = stdenv.lib.licenses.isc;
@@ -169492,7 +171266,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "neat-interpolation" = callPackage
+ "neat-interpolation_0_3_2" = callPackage
({ mkDerivation, base, base-prelude, HTF, parsec, template-haskell
, text
}:
@@ -169507,6 +171281,24 @@ self: {
homepage = "https://github.com/nikita-volkov/neat-interpolation";
description = "A quasiquoter for neat and simple multiline text interpolation";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "neat-interpolation" = callPackage
+ ({ mkDerivation, base, base-prelude, HTF, parsec, template-haskell
+ , text
+ }:
+ mkDerivation {
+ pname = "neat-interpolation";
+ version = "0.3.2.1";
+ sha256 = "5530e43ca4de09b972d173e522f9dc96265f3afe0df695a25f0141be816fa014";
+ libraryHaskellDepends = [
+ base base-prelude parsec template-haskell text
+ ];
+ testHaskellDepends = [ base-prelude HTF ];
+ homepage = "https://github.com/nikita-volkov/neat-interpolation";
+ description = "A quasiquoter for neat and simple multiline text interpolation";
+ license = stdenv.lib.licenses.mit;
}) {};
"needle" = callPackage
@@ -169769,6 +171561,23 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "nested-sequence" = callPackage
+ ({ mkDerivation, base, QuickCheck, test-framework
+ , test-framework-quickcheck2
+ }:
+ mkDerivation {
+ pname = "nested-sequence";
+ version = "0.2";
+ sha256 = "6cd980c6f15d6a664d8d8b1255a5472bf524e9bce956811b39ef61617a7b5e53";
+ libraryHaskellDepends = [ base ];
+ testHaskellDepends = [
+ base QuickCheck test-framework test-framework-quickcheck2
+ ];
+ homepage = "http://code.haskell.org/~bkomuves/";
+ description = "List-like data structures with O(log(n)) random access";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"nested-sets" = callPackage
({ mkDerivation, base, containers, hspec }:
mkDerivation {
@@ -169877,21 +171686,20 @@ self: {
}) {};
"netlink" = callPackage
- ({ mkDerivation, base, bytestring, c2hs, cereal, containers
- , monad-loops, unix
+ ({ mkDerivation, base, bytestring, cereal, containers, monad-loops
+ , pretty-hex, unix
}:
mkDerivation {
pname = "netlink";
- version = "0.1";
- sha256 = "9653369535aac39f759d20ab34e49397b6d9d218e3a108de437394596bf75170";
- revision = "1";
- editedCabalFile = "a95c52a24e2db0fb3670350b3205c62d9e30bd8a596c34885cb65a3b73452294";
+ version = "1.0.0.4";
+ sha256 = "94061ae1809a11d564ae3a45972c3a49dfbb01054a937cc4d5a2805963260a6d";
+ isLibrary = true;
+ isExecutable = true;
libraryHaskellDepends = [
- base bytestring cereal containers monad-loops unix
+ base bytestring cereal containers monad-loops pretty-hex unix
];
- libraryToolDepends = [ c2hs ];
- jailbreak = true;
- homepage = "http://netlink-hs.googlecode.com/";
+ executableHaskellDepends = [ base ];
+ homepage = "https://github.com/Ongy/netlink-hs";
description = "Netlink communication for Haskell";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -169932,6 +171740,7 @@ self: {
unordered-containers vector vector-th-unbox
];
testHaskellDepends = [ base bytestring hspec HUnit vector ];
+ doCheck = false;
homepage = "https://github.com/nh2/haskell-netpbm";
description = "Loading PBM, PGM, PPM image files";
license = stdenv.lib.licenses.mit;
@@ -171999,8 +173808,9 @@ self: {
pname = "nist-beacon";
version = "0.2.0.0";
sha256 = "fe967f892da92b9aae0cfd10be38166b0e5f915760f734df15b1bada95d9722c";
+ revision = "1";
+ editedCabalFile = "38a4516610bdf1d86e1204cc66297d74cd53bf6f12434d34d3c28eb016de0f22";
libraryHaskellDepends = [ base bytestring http-conduit xml ];
- jailbreak = true;
homepage = "https://github.com/bstamour/haskell-nist-beacon";
description = "Haskell interface to the nist random beacon";
license = stdenv.lib.licenses.bsd3;
@@ -172067,36 +173877,25 @@ self: {
}) {inherit (pkgs) nix;};
"nixfromnpm" = callPackage
- ({ mkDerivation, aeson, base, bytestring, classy-prelude
- , containers, data-default, directory, error-list, filepath, github
- , hnix, hspec, hspec-expectations, http-client-streams, io-streams
- , MissingH, mtl, network-uri, optparse-applicative, parsec, shelly
- , system-filepath, text, text-render, unordered-containers
+ ({ mkDerivation, aeson, ansi-terminal, base, bytestring
+ , classy-prelude, containers, curl, data-default, data-fix
+ , directory, hnix, lifted-base, MissingH, monad-control, mtl
+ , network-uri, optparse-applicative, parsec, semver-range, SHA
+ , shelly, system-filepath, temporary, text, text-render
+ , transformers, unix, unordered-containers
}:
mkDerivation {
pname = "nixfromnpm";
- version = "0.2.1";
- sha256 = "c623621b04e5d924e7d2565c3ce618c6604a25b2755fa4e273b8fad8f62c2db8";
- isLibrary = true;
+ version = "0.10.1";
+ sha256 = "bed09b87072dc2cc58eae01e463d2c8244e5d32aba21039daaa9e0e1af984afe";
+ isLibrary = false;
isExecutable = true;
- libraryHaskellDepends = [
- aeson base bytestring classy-prelude containers data-default
- directory error-list filepath hnix MissingH mtl network-uri
- optparse-applicative parsec shelly system-filepath text text-render
- unordered-containers
- ];
executableHaskellDepends = [
- aeson base bytestring classy-prelude containers data-default
- directory error-list filepath hnix MissingH mtl network-uri
- optparse-applicative parsec shelly system-filepath text text-render
- unordered-containers
- ];
- testHaskellDepends = [
- aeson base bytestring classy-prelude containers data-default
- directory error-list filepath github hnix hspec hspec-expectations
- http-client-streams io-streams MissingH mtl network-uri
- optparse-applicative parsec shelly system-filepath text text-render
- unordered-containers
+ aeson ansi-terminal base bytestring classy-prelude containers curl
+ data-default data-fix directory hnix lifted-base MissingH
+ monad-control mtl network-uri optparse-applicative parsec
+ semver-range SHA shelly system-filepath temporary text text-render
+ transformers unix unordered-containers
];
jailbreak = true;
description = "Generate nix expressions from npm packages";
@@ -173413,8 +175212,8 @@ self: {
}:
mkDerivation {
pname = "octane";
- version = "0.13.2";
- sha256 = "661df67cee1c5719207e2c92aebde1d7da52333dd5b0227f87e2619a234d5729";
+ version = "0.13.3";
+ sha256 = "c3755604afc8b1757bdc94383d04d757ae6cd525f41b55ba9a210e1d74f6a9fb";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -173524,7 +175323,7 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
- "oeis" = callPackage
+ "oeis_0_3_6" = callPackage
({ mkDerivation, base, HTTP, HUnit, network, network-uri
, test-framework, test-framework-hunit
}:
@@ -173539,6 +175338,23 @@ self: {
jailbreak = true;
description = "Interface to the Online Encyclopedia of Integer Sequences (OEIS)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "oeis" = callPackage
+ ({ mkDerivation, base, HTTP, HUnit, network, network-uri
+ , test-framework, test-framework-hunit
+ }:
+ mkDerivation {
+ pname = "oeis";
+ version = "0.3.7";
+ sha256 = "5d898a04d6117eca1250083cb8783d159302e9b5eb084878f5771916204861cf";
+ libraryHaskellDepends = [ base HTTP network network-uri ];
+ testHaskellDepends = [
+ base HUnit test-framework test-framework-hunit
+ ];
+ description = "Interface to the Online Encyclopedia of Integer Sequences (OEIS)";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"off-simple" = callPackage
@@ -173554,7 +175370,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "ofx" = callPackage
+ "ofx_0_4_0_4" = callPackage
({ mkDerivation, base, parsec, pretty, time }:
mkDerivation {
pname = "ofx";
@@ -173564,6 +175380,22 @@ self: {
homepage = "http://www.github.com/massysett/ofx";
description = "Parser for OFX data";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "ofx" = callPackage
+ ({ mkDerivation, base, parsec, pretty, time }:
+ mkDerivation {
+ pname = "ofx";
+ version = "0.4.2.0";
+ sha256 = "0e22e2269f099603832f666814235051fadf92cbdec3dfacf7d1e8231ccd95f1";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base parsec pretty time ];
+ executableHaskellDepends = [ base parsec pretty time ];
+ homepage = "http://www.github.com/massysett/ofx";
+ description = "Parser for OFX data";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"ohloh-hs" = callPackage
@@ -175977,6 +177809,8 @@ self: {
pname = "overloaded-records";
version = "0.4.1.0";
sha256 = "f97b08e420bfc9d435a77ec391fec1da305000faaaf0c01ad84217de003b5a76";
+ revision = "1";
+ editedCabalFile = "0aa55c702c1bbd15c4ddeb7efd21c2024e628ea266ae601673c2cf9bb5e25f24";
libraryHaskellDepends = [
base data-default-class template-haskell
];
@@ -175984,6 +177818,7 @@ self: {
base data-default-class HUnit template-haskell test-framework
test-framework-hunit
];
+ jailbreak = true;
homepage = "https://github.com/trskop/overloaded-records";
description = "Overloaded Records based on current GHC proposal";
license = stdenv.lib.licenses.bsd3;
@@ -176449,6 +178284,19 @@ self: {
license = "unknown";
}) {};
+ "pagination" = callPackage
+ ({ mkDerivation, base, deepseq, exceptions, hspec, QuickCheck }:
+ mkDerivation {
+ pname = "pagination";
+ version = "0.1.0";
+ sha256 = "1d4312ec808e0a39f15b0f78e84b298b1ad6c608aa9a43b2476e94e5c51c771d";
+ libraryHaskellDepends = [ base deepseq exceptions ];
+ testHaskellDepends = [ base exceptions hspec QuickCheck ];
+ homepage = "https://github.com/mrkkrp/pagination";
+ description = "Framework-agnostic pagination boilerplate";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"pagure-hook-receiver" = callPackage
({ mkDerivation, base, containers, scotty, shelly, text
, transformers, unix
@@ -177088,6 +178936,54 @@ self: {
maintainers = with stdenv.lib.maintainers; [ peti ];
}) {};
+ "pandoc_1_17_2" = callPackage
+ ({ mkDerivation, aeson, ansi-terminal, array, base
+ , base64-bytestring, binary, blaze-html, blaze-markup, bytestring
+ , cmark, containers, data-default, deepseq, Diff, directory
+ , executable-path, extensible-exceptions, filemanip, filepath
+ , ghc-prim, haddock-library, highlighting-kate, hslua, HTTP
+ , http-client, http-client-tls, http-types, HUnit, JuicyPixels, mtl
+ , network, network-uri, old-time, pandoc-types, parsec, process
+ , QuickCheck, random, scientific, SHA, syb, tagsoup, temporary
+ , test-framework, test-framework-hunit, test-framework-quickcheck2
+ , texmath, text, time, unordered-containers, vector, xml, yaml
+ , zip-archive, zlib
+ }:
+ mkDerivation {
+ pname = "pandoc";
+ version = "1.17.2";
+ sha256 = "81727d054dfb26de816ea59ed541ebaf60d66d440012c12ec02f9c2b02fee8ec";
+ configureFlags = [ "-fhttps" "-f-trypandoc" ];
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson array base base64-bytestring binary blaze-html blaze-markup
+ bytestring cmark containers data-default deepseq directory
+ extensible-exceptions filemanip filepath ghc-prim haddock-library
+ highlighting-kate hslua HTTP http-client http-client-tls http-types
+ JuicyPixels mtl network network-uri old-time pandoc-types parsec
+ process random scientific SHA syb tagsoup temporary texmath text
+ time unordered-containers vector xml yaml zip-archive zlib
+ ];
+ executableHaskellDepends = [
+ aeson base bytestring containers directory extensible-exceptions
+ filepath highlighting-kate HTTP network network-uri pandoc-types
+ text yaml
+ ];
+ testHaskellDepends = [
+ ansi-terminal base bytestring containers Diff directory
+ executable-path filepath highlighting-kate HUnit pandoc-types
+ 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;
+ maintainers = with stdenv.lib.maintainers; [ peti ];
+ }) {};
+
"pandoc-citeproc_0_6" = callPackage
({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring
, containers, data-default, directory, filepath, hs-bibutils, mtl
@@ -177389,6 +179285,41 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "pandoc-citeproc_0_10_1" = callPackage
+ ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring
+ , containers, data-default, directory, filepath, hs-bibutils, mtl
+ , old-locale, pandoc, pandoc-types, parsec, process, rfc5051
+ , setenv, split, syb, tagsoup, temporary, text, time
+ , unordered-containers, vector, xml-conduit, yaml
+ }:
+ mkDerivation {
+ pname = "pandoc-citeproc";
+ version = "0.10.1";
+ sha256 = "ebc3eb3ff95e97ebd46c0918a65db2da021de2a70d02dc85ca5b344ea5c21205";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base bytestring containers data-default directory filepath
+ hs-bibutils mtl old-locale pandoc pandoc-types parsec rfc5051
+ setenv split syb tagsoup text time unordered-containers vector
+ xml-conduit yaml
+ ];
+ executableHaskellDepends = [
+ aeson aeson-pretty attoparsec base bytestring filepath pandoc
+ pandoc-types syb text yaml
+ ];
+ testHaskellDepends = [
+ 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";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"pandoc-citeproc-preamble" = callPackage
({ mkDerivation, base, directory, filepath, pandoc-types, process
}:
@@ -177414,8 +179345,8 @@ self: {
}:
mkDerivation {
pname = "pandoc-crossref";
- version = "0.2.1.3";
- sha256 = "d14b78972c48a722b7e53d12fb601e4379d5384f9a58c8ce46ab42b058125471";
+ version = "0.2.2.1";
+ sha256 = "85da5dff663b578367ed75dcd71d8273a9cd92e8ae4a907ff0b83694d8417abd";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -177982,8 +179913,8 @@ self: {
({ mkDerivation, base, template-haskell, type-level }:
mkDerivation {
pname = "parameterized-data";
- version = "0.1.5";
- sha256 = "013322381cff9c560857fd9812ae282ba1c57412082f6479ceeed7b7aeba8efd";
+ version = "0.1.6";
+ sha256 = "0024e19cfffeb33cd25c6055ac3127dbd58e96f3237640b6fa788cd29a824f3b";
libraryHaskellDepends = [ base template-haskell type-level ];
homepage = "http://code.haskell.org/parameterized-data";
description = "Parameterized data library implementing lightweight dependent types";
@@ -179051,7 +180982,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "path-io" = callPackage
+ "path-io_1_1_0" = callPackage
({ mkDerivation, base, directory, exceptions, filepath, hspec, path
, temporary, time, transformers
}:
@@ -179066,6 +180997,25 @@ self: {
homepage = "https://github.com/mrkkrp/path-io";
description = "Interface to ‘directory’ package for users of ‘path’";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "path-io" = callPackage
+ ({ mkDerivation, base, containers, directory, exceptions, filepath
+ , hspec, path, temporary, time, transformers, unix-compat
+ }:
+ mkDerivation {
+ pname = "path-io";
+ version = "1.2.0";
+ sha256 = "cb8bfb9fca81eb0f0f9b81761cc5a6edc61204e2c630f7277173147cf149336f";
+ libraryHaskellDepends = [
+ base containers directory exceptions filepath path temporary time
+ transformers unix-compat
+ ];
+ testHaskellDepends = [ base exceptions hspec path unix-compat ];
+ homepage = "https://github.com/mrkkrp/path-io";
+ description = "Interface to ‘directory’ package for users of ‘path’";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"path-pieces_0_1_4" = callPackage
@@ -180206,6 +182156,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "periodic" = callPackage
+ ({ mkDerivation, base, cereal, hedis, hspec, text, time }:
+ mkDerivation {
+ pname = "periodic";
+ version = "0.1.0.0";
+ sha256 = "1973c062977b6babdfca47f172356657296142c711a834d1123c9414df1bab84";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base cereal hedis text time ];
+ executableHaskellDepends = [ base cereal hedis text time ];
+ testHaskellDepends = [ base cereal hedis hspec text time ];
+ homepage = "https://github.com/positiondev/periodic";
+ description = "A reliable at-least-once periodic job scheduler backed by redis";
+ license = stdenv.lib.licenses.isc;
+ }) {};
+
"perm" = callPackage
({ mkDerivation, base, catch-fd, HUnit, mtl, test-framework
, test-framework-hunit, transformers
@@ -182363,8 +184329,8 @@ self: {
}:
mkDerivation {
pname = "persistent-template";
- version = "2.5.1.3";
- sha256 = "c0070245e0b569ceef15e55be816a069cf2d26774c9613368d915e6ecb396f2a";
+ version = "2.5.1.4";
+ sha256 = "bd2fb5aadbee3770c562a472e87dd812f30fea05334e6e19b223f322ebced072";
libraryHaskellDepends = [
aeson aeson-compat base bytestring containers ghc-prim
http-api-data monad-control monad-logger path-pieces persistent
@@ -182851,8 +184817,8 @@ self: {
}:
mkDerivation {
pname = "phoityne-vscode";
- version = "0.0.6.0";
- sha256 = "dac6445fa1e6e4f25c31078ccdaefacbb31b22fb35612dac97f831a6893b1170";
+ version = "0.0.7.0";
+ sha256 = "6b209e6f85bf062d2443531661f4da5253450635f77a6f4f177768d11272651d";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -183228,8 +185194,8 @@ self: {
}:
mkDerivation {
pname = "pinboard";
- version = "0.9.5";
- sha256 = "2a050c949bde8de92aed1e0e356f871153becce19dc08786c0f6f0530c30d71c";
+ version = "0.9.6";
+ sha256 = "1b999ac66e530a840b425a4656b8499eccf1928bb25dd059a09b9e14863347db";
libraryHaskellDepends = [
aeson base bytestring containers either http-client http-client-tls
http-types mtl network old-locale profunctors random text time
@@ -183245,6 +185211,32 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "pinboard_0_9_7" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, containers, either, hspec
+ , http-client, http-client-tls, http-types, mtl, network
+ , profunctors, QuickCheck, random, semigroups, text, time
+ , transformers, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "pinboard";
+ version = "0.9.7";
+ sha256 = "429f35da8a6c860ac2c20cfd87fe3dd01f53dbf7cfc44a24ba2f059e6d4fe681";
+ libraryHaskellDepends = [
+ aeson base bytestring containers either http-client http-client-tls
+ http-types mtl network profunctors random text time transformers
+ unordered-containers vector
+ ];
+ testHaskellDepends = [
+ aeson base bytestring containers hspec mtl QuickCheck semigroups
+ text time transformers unordered-containers
+ ];
+ jailbreak = true;
+ homepage = "https://github.com/jonschoning/pinboard";
+ description = "Access to the Pinboard API";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"pinch_0_2_0_0" = callPackage
({ mkDerivation, array, base, bytestring, containers, deepseq
, ghc-prim, hashable, hspec, hspec-discover, QuickCheck, text
@@ -183299,8 +185291,8 @@ self: {
}:
mkDerivation {
pname = "pinch";
- version = "0.3.0.0";
- sha256 = "aaa451f65bde78d3e9cfc2621ed78b7dab31cb7234619c5c37cc2976e1fc3d15";
+ version = "0.3.0.1";
+ sha256 = "985fb2c392ceedff92d46af9086b1b6cdcde88f65920e5afb1cbf7a4c52e8b53";
libraryHaskellDepends = [
array base bytestring containers deepseq ghc-prim hashable text
unordered-containers vector
@@ -183350,7 +185342,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "pinchot" = callPackage
+ "pinchot_0_18_0_2" = callPackage
({ mkDerivation, base, containers, Earley, lens, ListLike
, semigroups, template-haskell, transformers
}:
@@ -183365,6 +185357,24 @@ self: {
homepage = "http://www.github.com/massysett/pinchot";
description = "Write grammars, not parsers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "pinchot" = callPackage
+ ({ mkDerivation, base, containers, Earley, lens, ListLike
+ , semigroups, template-haskell, transformers
+ }:
+ mkDerivation {
+ pname = "pinchot";
+ version = "0.18.2.0";
+ sha256 = "a32dfa0aff4761bca3c9d99755814a3acc2962197dff5b07b565c77e90bb4ed6";
+ libraryHaskellDepends = [
+ base containers Earley lens ListLike semigroups template-haskell
+ transformers
+ ];
+ homepage = "http://www.github.com/massysett/pinchot";
+ description = "Write grammars, not parsers";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"pipe-enumerator" = callPackage
@@ -184016,7 +186026,7 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
- "pipes-cliff" = callPackage
+ "pipes-cliff_0_10_0_4" = callPackage
({ mkDerivation, async, base, bytestring, pipes, pipes-safe
, process, stm
}:
@@ -184030,6 +186040,23 @@ self: {
homepage = "http://www.github.com/massysett/pipes-cliff";
description = "Streaming to and from subprocesses using Pipes";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "pipes-cliff" = callPackage
+ ({ mkDerivation, async, base, bytestring, pipes, pipes-safe
+ , process, stm, unix
+ }:
+ mkDerivation {
+ pname = "pipes-cliff";
+ version = "0.12.0.0";
+ sha256 = "4fc4ce908899d20ed1ea8964cfe38bc547476d6901934cbb82e35e4ada5417c5";
+ libraryHaskellDepends = [
+ async base bytestring pipes pipes-safe process stm unix
+ ];
+ homepage = "http://www.github.com/massysett/pipes-cliff";
+ description = "Streaming to and from subprocesses using Pipes";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"pipes-concurrency_2_0_2" = callPackage
@@ -185122,6 +187149,28 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "pixelated-avatar-generator" = callPackage
+ ({ mkDerivation, base, bytestring, hspec, JuicyPixels, pureMD5
+ , QuickCheck, split
+ }:
+ mkDerivation {
+ pname = "pixelated-avatar-generator";
+ version = "0.1.1";
+ sha256 = "0900c62aa1ffc80ef2293f52fd20d25da75cb801e059c5afff6e8b60d2ae841f";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring JuicyPixels pureMD5 split
+ ];
+ executableHaskellDepends = [ base ];
+ testHaskellDepends = [
+ base bytestring hspec JuicyPixels QuickCheck
+ ];
+ homepage = "https://github.com/ExcaliburZero/pixelated-avatar-generator";
+ description = "A library and application for generating pixelated avatars";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"pkcs1" = callPackage
({ mkDerivation, base, bytestring, random }:
mkDerivation {
@@ -187325,30 +189374,30 @@ self: {
"postgresql-query" = callPackage
({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring
- , containers, data-default, either, exceptions, file-embed
+ , containers, data-default, derive, either, exceptions, file-embed
, haskell-src-meta, hreader, hset, inflections, monad-control
, monad-logger, mtl, postgresql-simple, QuickCheck
, quickcheck-assertions, quickcheck-instances, resource-pool
, semigroups, tasty, tasty-hunit, tasty-quickcheck, tasty-th
, template-haskell, text, th-lift, th-lift-instances, time
- , transformers, transformers-base, transformers-compat
+ , transformers, transformers-base, transformers-compat, type-fun
}:
mkDerivation {
pname = "postgresql-query";
- version = "2.3.0";
- sha256 = "bd3aaf1bcb3d424090962ace0b973f0b65aeee21aab44c9a1cb8c622936479d7";
+ version = "3.0.1";
+ sha256 = "2e9ff10732967eabc091a0f7d45a3b9777a20ae23ab3fffb8827bae646fcc1a4";
libraryHaskellDepends = [
aeson attoparsec base blaze-builder bytestring containers
data-default either exceptions file-embed haskell-src-meta hreader
hset inflections monad-control monad-logger mtl postgresql-simple
resource-pool semigroups template-haskell text th-lift
th-lift-instances time transformers transformers-base
- transformers-compat
+ transformers-compat type-fun
];
testHaskellDepends = [
- attoparsec base inflections QuickCheck quickcheck-assertions
- quickcheck-instances tasty tasty-hunit tasty-quickcheck tasty-th
- text time
+ attoparsec base derive inflections postgresql-simple QuickCheck
+ quickcheck-assertions quickcheck-instances tasty tasty-hunit
+ tasty-quickcheck tasty-th text time
];
homepage = "https://bitbucket.org/s9gf4ult/postgresql-query";
description = "Sql interpolating quasiquote plus some kind of primitive ORM using it";
@@ -190247,6 +192296,7 @@ self: {
attoparsec base bytestring containers data-default-class
lens-family parsec pretty text transformers void
];
+ jailbreak = true;
homepage = "https://github.com/google/proto-lens";
description = "A lens-based implementation of protocol buffers in Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -190285,6 +192335,7 @@ self: {
base HUnit lens-family proto-lens-protoc test-framework
test-framework-hunit
];
+ jailbreak = true;
homepage = "https://github.com/google/proto-lens";
description = "Utilities functions to proto-lens";
license = stdenv.lib.licenses.bsd3;
@@ -190324,6 +192375,7 @@ self: {
base bytestring containers data-default-class filepath
haskell-src-exts lens-family proto-lens text
];
+ jailbreak = true;
description = "Protocol buffer compiler for the proto-lens library";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -191114,8 +193166,8 @@ self: {
({ mkDerivation, base, filepath, hspec, template-haskell }:
mkDerivation {
pname = "publicsuffix";
- version = "0.20160701";
- sha256 = "18d7de6712ead0b01d8c3267e277267ac1817ef5788c0a012d9f4ddff96aeb7a";
+ version = "0.20160716";
+ sha256 = "19d7fd9990954284073323d9d22a892f1b600761e5353e9a0473d46591956956";
libraryHaskellDepends = [ base filepath template-haskell ];
testHaskellDepends = [ base hspec ];
homepage = "https://github.com/wereHamster/publicsuffix-haskell/";
@@ -191880,6 +193932,54 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "purescript_0_9_2" = callPackage
+ ({ mkDerivation, aeson, aeson-better-errors, ansi-terminal
+ , ansi-wl-pprint, base, base-compat, bower-json, boxes, bytestring
+ , clock, containers, directory, dlist, edit-distance, file-embed
+ , 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
+ , protolude, regex-tdfa, safe, semigroups, silently, sourcemap
+ , spdx, split, stm, syb, text, time, transformers
+ , transformers-base, transformers-compat, unordered-containers
+ , utf8-string, vector, wai, wai-websockets, warp, websockets
+ }:
+ mkDerivation {
+ pname = "purescript";
+ version = "0.9.2";
+ sha256 = "08a09bb101a900bf5ec3954cddfbfac11e81550d1ec92221559922f0e5b1acb3";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson aeson-better-errors ansi-terminal base base-compat bower-json
+ boxes bytestring clock containers directory dlist edit-distance
+ filepath fsnotify Glob haskeline http-types language-javascript
+ lifted-base monad-control monad-logger mtl parallel parsec
+ pattern-arrows pipes pipes-http process protolude regex-tdfa safe
+ semigroups sourcemap spdx split stm syb text time transformers
+ transformers-base transformers-compat unordered-containers
+ utf8-string vector
+ ];
+ executableHaskellDepends = [
+ aeson ansi-terminal ansi-wl-pprint base base-compat boxes
+ bytestring containers directory file-embed filepath Glob haskeline
+ http-types monad-logger mtl network optparse-applicative parsec
+ process protolude split stm text time transformers
+ transformers-compat utf8-string wai wai-websockets warp websockets
+ ];
+ testHaskellDepends = [
+ aeson aeson-better-errors base base-compat boxes bytestring
+ containers directory filepath Glob haskeline hspec hspec-discover
+ HUnit mtl optparse-applicative parsec process protolude silently
+ stm text time transformers transformers-compat utf8-string vector
+ ];
+ 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, containers, directory, filepath
, generic-deriving, lens, mtl, text, transformers
@@ -192468,6 +194568,81 @@ self: {
}) {qtc_core = null; qtc_gui = null; qtc_network = null;
qtc_opengl = null; qtc_script = null; qtc_tools = null;};
+ "qtah-cpp-qt5" = callPackage
+ ({ mkDerivation, base, qtah-generator }:
+ mkDerivation {
+ pname = "qtah-cpp-qt5";
+ version = "0.1.0";
+ sha256 = "3fb79a7dbccdf84dfbde714be8f2a18cd57fdacd17463b2c72d392f8985107a8";
+ libraryHaskellDepends = [ base qtah-generator ];
+ homepage = "http://khumba.net/projects/qtah";
+ description = "Qt bindings for Haskell - C++ library";
+ license = stdenv.lib.licenses.lgpl3;
+ maintainers = with stdenv.lib.maintainers; [ khumba ];
+ }) {};
+
+ "qtah-examples" = callPackage
+ ({ mkDerivation, base, binary, bytestring, hoppy-runtime, qtah-qt5
+ }:
+ mkDerivation {
+ pname = "qtah-examples";
+ version = "0.1.0";
+ sha256 = "12c9a78193e5e2986e734487c94e95be5fc638204b051839a257fb60c2cddd2a";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base binary bytestring hoppy-runtime qtah-qt5
+ ];
+ jailbreak = true;
+ homepage = "http://khumba.net/projects/qtah";
+ description = "Example programs for Qtah Qt bindings";
+ license = stdenv.lib.licenses.lgpl3;
+ maintainers = with stdenv.lib.maintainers; [ khumba ];
+ }) {};
+
+ "qtah-generator" = callPackage
+ ({ mkDerivation, base, containers, directory, filepath, haskell-src
+ , hoppy-generator, hoppy-std, mtl, process
+ }:
+ mkDerivation {
+ pname = "qtah-generator";
+ version = "0.1.1";
+ sha256 = "10cf7128d9cd923fa677433222720770762b1c72fcd74b26d3174e9d7a7c028f";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base ];
+ executableHaskellDepends = [
+ base containers directory filepath haskell-src hoppy-generator
+ hoppy-std mtl process
+ ];
+ doHaddock = false;
+ homepage = "http://khumba.net/projects/qtah";
+ description = "Generator for Qtah Qt bindings";
+ license = stdenv.lib.licenses.lgpl3;
+ maintainers = with stdenv.lib.maintainers; [ khumba ];
+ }) {};
+
+ "qtah-qt5" = callPackage
+ ({ mkDerivation, base, binary, bytestring, hoppy-runtime, HUnit
+ , qtah, qtah-cpp-qt5, qtah-generator
+ }:
+ mkDerivation {
+ pname = "qtah-qt5";
+ version = "0.1.0";
+ sha256 = "9dd81185388e8f769e38e02eda9ea5a8b9d8f1c26e3dd15825b08d72385962e7";
+ libraryHaskellDepends = [
+ base binary bytestring hoppy-runtime qtah-cpp-qt5 qtah-generator
+ ];
+ librarySystemDepends = [ qtah ];
+ testHaskellDepends = [ base hoppy-runtime HUnit ];
+ testSystemDepends = [ qtah ];
+ jailbreak = true;
+ homepage = "http://khumba.net/projects/qtah";
+ description = "Qt bindings for Haskell";
+ license = stdenv.lib.licenses.lgpl3;
+ maintainers = with stdenv.lib.maintainers; [ khumba ];
+ }) {qtah = null;};
+
"quadratic-irrational" = callPackage
({ mkDerivation, arithmoi, base, containers, directory, doctest
, filepath, mtl, numbers, QuickCheck, tasty, tasty-quickcheck
@@ -192789,8 +194964,8 @@ self: {
({ mkDerivation, base, QuickCheck, unfoldable-restricted }:
mkDerivation {
pname = "quickcheck-combinators";
- version = "0.0.0";
- sha256 = "42fe67cfbab7c215b00e843b773fcee84e28f4ffdae5f43affa21331dcdcb2b5";
+ version = "0.0.1";
+ sha256 = "bc334ff44f93e580e13cbe07c4ccf5924bf22df943934987f769ebec6800ec8d";
libraryHaskellDepends = [ base QuickCheck unfoldable-restricted ];
description = "Simple type-level combinators for augmenting QuickCheck instances";
license = stdenv.lib.licenses.bsd3;
@@ -192879,8 +195054,8 @@ self: {
pname = "quickcheck-io";
version = "0.1.1";
sha256 = "a23a6e011aafd211c2521ddb9f61ffb5d256837148b5f5c35a152bdb37d6039b";
- revision = "1";
- editedCabalFile = "fbefc480103a2c6661d5e735f53aa387ae2c8b2e482ffab87955be34b9a69be6";
+ revision = "2";
+ editedCabalFile = "32b51923eb3a2d9be6436ce14847ec8f1fc8793c8cbf8e0af3581c38a4408409";
libraryHaskellDepends = [ base HUnit QuickCheck ];
jailbreak = true;
description = "Use HUnit assertions as QuickCheck properties";
@@ -192888,12 +195063,27 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "quickcheck-io_0_1_2" = callPackage
+ ({ mkDerivation, base, HUnit, QuickCheck }:
+ mkDerivation {
+ pname = "quickcheck-io";
+ version = "0.1.2";
+ sha256 = "50275e5253dcf0c838e340fa19eb841804deb634aeedbf33f0b46a97b89bc1cd";
+ revision = "1";
+ editedCabalFile = "e0ffcf52d48037f25073c440a0b0f880b4a22e132915a1910c259e8cf8bd1fc3";
+ libraryHaskellDepends = [ base HUnit QuickCheck ];
+ homepage = "https://github.com/hspec/quickcheck-io#readme";
+ description = "Use HUnit assertions as QuickCheck properties";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"quickcheck-io" = callPackage
({ mkDerivation, base, HUnit, QuickCheck }:
mkDerivation {
pname = "quickcheck-io";
- version = "0.1.2";
- sha256 = "50275e5253dcf0c838e340fa19eb841804deb634aeedbf33f0b46a97b89bc1cd";
+ version = "0.1.3";
+ sha256 = "d798584e26c51e4cbb0dadd1097cf14472c917240d09fc3d9a2b74961673c8b4";
libraryHaskellDepends = [ base HUnit QuickCheck ];
homepage = "https://github.com/hspec/quickcheck-io#readme";
description = "Use HUnit assertions as QuickCheck properties";
@@ -193237,6 +195427,26 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "quipper" = callPackage
+ ({ mkDerivation, base, containers, directory, easyrender, mtl
+ , process, random, template-haskell, unix
+ }:
+ mkDerivation {
+ pname = "quipper";
+ version = "0.7";
+ sha256 = "38d86bce23509ff81a0e2964d9c04107c4cbb8ecf799abfed216cc2192dcc47c";
+ revision = "1";
+ editedCabalFile = "ed852a0a36ec59cf0c95e5cec2d0bc82e19a0576f75236ee986f7a221a721c7b";
+ libraryHaskellDepends = [
+ base containers directory easyrender mtl process random
+ template-haskell unix
+ ];
+ jailbreak = true;
+ homepage = "http://www.mathstat.dal.ca/~selinger/quipper/";
+ description = "An embedded, scalable functional programming language for quantum computing";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"quiver" = callPackage
({ mkDerivation, base, mmorph, transformers }:
mkDerivation {
@@ -193321,11 +195531,10 @@ self: {
({ mkDerivation, base, dlist, hspec, QuickCheck, quiver }:
mkDerivation {
pname = "quiver-groups";
- version = "0.1.0.0";
- sha256 = "a2edef17cf3e860afda832181de10055cbc953f3f3bfe3f30227341497fe9104";
+ version = "0.1.0.1";
+ sha256 = "19a29e6c2011a5fb996d831c594ec6d6d133c3fdb4ad74763e1251d7f1f39255";
libraryHaskellDepends = [ base dlist quiver ];
testHaskellDepends = [ base hspec QuickCheck quiver ];
- jailbreak = true;
description = "Group and chunk values within a Quiver";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -193684,7 +195893,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "rainbow" = callPackage
+ "rainbow_0_28_0_2" = callPackage
({ mkDerivation, base, bytestring, microlens, microlens-th, process
, QuickCheck, text
}:
@@ -193701,6 +195910,26 @@ self: {
homepage = "https://www.github.com/massysett/rainbow";
description = "Print text to terminal with colors and effects";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "rainbow" = callPackage
+ ({ mkDerivation, base, bytestring, lens-simple, process, QuickCheck
+ , text
+ }:
+ mkDerivation {
+ pname = "rainbow";
+ version = "0.28.0.4";
+ sha256 = "829296f88be520a9a6c6de715ffa2bb926cecc0135b23f602cc4377bac4e8831";
+ libraryHaskellDepends = [
+ base bytestring lens-simple process text
+ ];
+ testHaskellDepends = [
+ base bytestring lens-simple process QuickCheck text
+ ];
+ homepage = "https://www.github.com/massysett/rainbow";
+ description = "Print text to terminal with colors and effects";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"rainbow-tests" = callPackage
@@ -193763,7 +195992,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "rainbox" = callPackage
+ "rainbox_0_18_0_8" = callPackage
({ mkDerivation, base, bytestring, containers, microlens-th
, QuickCheck, rainbow, tasty, tasty-quickcheck, text
}:
@@ -193781,6 +196010,27 @@ self: {
homepage = "http://www.github.com/massysett/rainbox";
description = "Two-dimensional box pretty printing, with colors";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "rainbox" = callPackage
+ ({ mkDerivation, base, bytestring, containers, lens-simple
+ , QuickCheck, rainbow, tasty, tasty-quickcheck, text
+ }:
+ mkDerivation {
+ pname = "rainbox";
+ version = "0.18.0.10";
+ sha256 = "d692e95565b4ce4454536493ae4d6ba256eecf5e88e0495d156008ea76ba1b05";
+ libraryHaskellDepends = [
+ base bytestring containers lens-simple rainbow text
+ ];
+ testHaskellDepends = [
+ base bytestring containers lens-simple QuickCheck rainbow tasty
+ tasty-quickcheck text
+ ];
+ homepage = "http://www.github.com/massysett/rainbox";
+ description = "Two-dimensional box pretty printing, with colors";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"rake" = callPackage
@@ -194360,13 +196610,13 @@ self: {
({ mkDerivation, async, base, containers, foreign-store, stm }:
mkDerivation {
pname = "rapid";
- version = "0.1.1";
- sha256 = "f1df04a5820b77896475df4de1e3f10ecee871f8e4227809727855b8d0404825";
+ version = "0.1.2";
+ sha256 = "f65a4fc1560266c9e51c6efe19d2797ef4af51850b23a458167c087da4079035";
libraryHaskellDepends = [
async base containers foreign-store stm
];
homepage = "http://hub.darcs.net/esz/rapid";
- description = "GHCi background threads, hot reloading and reload-surviving values";
+ description = "Rapid prototyping with GHCi: hot reloading of running components and reload-surviving values";
license = stdenv.lib.licenses.asl20;
}) {};
@@ -194572,8 +196822,8 @@ self: {
}:
mkDerivation {
pname = "ratel";
- version = "0.2.0";
- sha256 = "426ce15b19dc132b19cc511c74e0a18e0c6caa0b56aa6e1056bda09e1bd2fd96";
+ version = "0.3.0";
+ sha256 = "08e96d4ad35c562fd4bb651303ee527d0d2e83d45ea026060fec45e3aed6a3e7";
libraryHaskellDepends = [
aeson base bytestring case-insensitive containers http-client
http-client-tls http-types text uuid
@@ -194584,7 +196834,7 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "ratel-wai" = callPackage
+ "ratel-wai_0_1_2" = callPackage
({ mkDerivation, base, bytestring, case-insensitive, containers
, http-client, ratel, wai
}:
@@ -194599,6 +196849,23 @@ self: {
homepage = "https://github.com/tfausak/ratel-wai#readme";
description = "Notify Honeybadger about exceptions via a WAI middleware";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "ratel-wai" = callPackage
+ ({ mkDerivation, base, bytestring, case-insensitive, containers
+ , http-client, ratel, wai
+ }:
+ mkDerivation {
+ pname = "ratel-wai";
+ version = "0.2.0";
+ sha256 = "2714c211ee6252bad68a4f5828c5b196fe4e5fff9dfed778c9bf15918ac35911";
+ libraryHaskellDepends = [
+ base bytestring case-insensitive containers http-client ratel wai
+ ];
+ homepage = "https://github.com/tfausak/ratel-wai#readme";
+ description = "Notify Honeybadger about exceptions via a WAI middleware";
+ license = stdenv.lib.licenses.mit;
}) {};
"ratio-int" = callPackage
@@ -195349,8 +197616,8 @@ self: {
}:
mkDerivation {
pname = "rebase";
- version = "0.5.3";
- sha256 = "f5737cb4408b0bf1f19736fa8387d6e92f73d23c49f2455b530232f8f17b64fc";
+ version = "0.5.4";
+ sha256 = "86fda65310e4b7b83575ed8717780e6295116ff220621ee383b71fa98e09e2f2";
libraryHaskellDepends = [
base base-prelude bifunctors bytestring containers contravariant
contravariant-extras deepseq dlist either fail hashable mtl
@@ -195485,7 +197752,10 @@ self: {
pname = "records";
version = "0.1.1.6";
sha256 = "c9ccd6d264867b3ad1a3405136e7fdeddbb269fddeaa3abd3120ebc7f1c2f8db";
+ revision = "1";
+ editedCabalFile = "3bbff6cb24271374eb00769bbf9313dfe54e1e08b8e5104df9e2e4f7df88cd07";
libraryHaskellDepends = [ base kinds type-functions ];
+ jailbreak = true;
homepage = "http://darcs.wolfgang.jeltsch.info/haskell/records";
description = "A flexible record system";
license = stdenv.lib.licenses.bsd3;
@@ -195975,11 +198245,9 @@ self: {
({ mkDerivation, base, stm, transformers }:
mkDerivation {
pname = "ref-tf";
- version = "0.4";
- sha256 = "45301b1779ff25f39d04f875ddb6895dbb27cf6f7846a2e1c9c35f126cbb3d11";
+ version = "0.4.0.1";
+ sha256 = "fcb522c5dca437fbd0c0132c56664a71c48fe2c06b150fcfa77d3bad5ce4be0e";
libraryHaskellDepends = [ base stm transformers ];
- jailbreak = true;
- homepage = "http://www.cs.drexel.edu/~mainland/";
description = "A type class for monads with references using type families";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -196289,6 +198557,8 @@ self: {
pname = "reflex-dom";
version = "0.3";
sha256 = "a52bacd0ebdbb559a64fc3c7abfb34d8264c3c84243b8bc126c256e505b58d3a";
+ revision = "1";
+ editedCabalFile = "908cf399bc1af34e18674cad421c0046b667ee8172254fce6e59dae83ce96a6a";
libraryHaskellDepends = [
aeson base bifunctors bytestring containers data-default
dependent-map dependent-sum dependent-sum-template directory
@@ -196308,8 +198578,8 @@ self: {
}:
mkDerivation {
pname = "reflex-dom-colonnade";
- version = "0.3";
- sha256 = "9bf95b9933ee86f7efda769825577dd089c007b9521adfde1bdc87126c732168";
+ version = "0.4";
+ sha256 = "e57ddd52875bcc2835c264dbada1e19e523ac716b66bc1e198cb9949912812e3";
libraryHaskellDepends = [
base colonnade containers contravariant reflex reflex-dom
semigroups vector
@@ -197339,8 +199609,8 @@ self: {
}:
mkDerivation {
pname = "rei";
- version = "0.3.5.1";
- sha256 = "f173c5574f8d81b9451add7f84c032f17283747e1b531cecaca4f9e470b5ad8f";
+ version = "0.3.7";
+ sha256 = "97577658fa9d9801ae3dda8ef3b75e8f59bae547b6dc7e91003381fc639d3e0c";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -197489,7 +199759,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "relational-query" = callPackage
+ "relational-query_0_8_2_3" = callPackage
({ mkDerivation, array, base, bytestring, containers, dlist
, names-th, persistable-record, quickcheck-simple, sql-words
, template-haskell, text, th-reify-compat, time, time-locale-compat
@@ -197510,6 +199780,30 @@ self: {
homepage = "http://khibino.github.io/haskell-relational-record/";
description = "Typeful, Modular, Relational, algebraic query engine";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "relational-query" = callPackage
+ ({ mkDerivation, array, base, bytestring, containers, dlist
+ , names-th, persistable-record, quickcheck-simple, sql-words
+ , template-haskell, text, th-reify-compat, time, time-locale-compat
+ , transformers
+ }:
+ mkDerivation {
+ pname = "relational-query";
+ version = "0.8.3.0";
+ sha256 = "8935e9b1f9dfbc7f7c34737db669ebfcbe352beac00ddc45a8b67420f93001ee";
+ libraryHaskellDepends = [
+ array base bytestring containers dlist names-th persistable-record
+ sql-words template-haskell text th-reify-compat time
+ time-locale-compat transformers
+ ];
+ testHaskellDepends = [
+ base containers quickcheck-simple transformers
+ ];
+ homepage = "http://khibino.github.io/haskell-relational-record/";
+ description = "Typeful, Modular, Relational, algebraic query engine";
+ license = stdenv.lib.licenses.bsd3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
@@ -197809,6 +200103,7 @@ self: {
aeson base data-default-class natural-transformation remote-json
scotty text transformers warp
];
+ jailbreak = true;
description = "Web server wrapper for remote-json";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = [ "x86_64-darwin" ];
@@ -197875,10 +200170,9 @@ self: {
({ mkDerivation, base, containers, hashable, transformers }:
mkDerivation {
pname = "renderable";
- version = "0.2.0.0";
- sha256 = "8ba7f9e6f0cb9aa0b9b7e38b0280b41191d3f0303c94f44d40d60a6fca0c18f3";
+ version = "0.2.0.1";
+ sha256 = "d1ea5a8d2da8913700c326c3e757c8c4c8a87f1353125bbc9ea372729e04b6c5";
libraryHaskellDepends = [ base containers hashable transformers ];
- jailbreak = true;
homepage = "https://github.com/schell/renderable";
description = "An API for managing renderable resources";
license = stdenv.lib.licenses.mit;
@@ -198412,6 +200706,33 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "replicant" = callPackage
+ ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, attoparsec
+ , base, bytestring, containers, either, exceptions, fast-logger
+ , hedis, hedis-namespace, lens, lens-aeson, lifted-base
+ , monad-control, monad-logger, mtl, network, resourcet, stm, text
+ , transformers, transformers-base, websockets, wreq, wuss
+ }:
+ mkDerivation {
+ pname = "replicant";
+ version = "0.1.0.0";
+ sha256 = "6d694916312054b6525b0fc01c8fe449420fc3d8c8b327bacd77d2fcc0770644";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson aeson-pretty ansi-terminal attoparsec base bytestring
+ containers either exceptions fast-logger hedis hedis-namespace lens
+ lens-aeson lifted-base monad-control monad-logger mtl network
+ resourcet stm text transformers transformers-base websockets wreq
+ wuss
+ ];
+ executableHaskellDepends = [ base bytestring hedis-namespace mtl ];
+ testHaskellDepends = [ base ];
+ homepage = "https://github.com/jamesdabbs/replicant#readme";
+ description = "Initial project template from stack";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"repline" = callPackage
({ mkDerivation, base, containers, haskeline, mtl, process }:
mkDerivation {
@@ -200513,7 +202834,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "rethinkdb" = callPackage
+ "rethinkdb_2_2_0_5" = callPackage
({ mkDerivation, aeson, base, base64-bytestring, binary, bytestring
, containers, data-default, doctest, mtl, network, scientific, text
, time, unordered-containers, utf8-string, vector
@@ -200528,6 +202849,29 @@ self: {
utf8-string vector
];
testHaskellDepends = [ base doctest ];
+ jailbreak = true;
+ doCheck = false;
+ homepage = "http://github.com/atnnn/haskell-rethinkdb";
+ description = "A driver for RethinkDB 2.2";
+ license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "rethinkdb" = callPackage
+ ({ mkDerivation, aeson, base, base64-bytestring, binary, bytestring
+ , containers, data-default, doctest, mtl, network, scientific, text
+ , time, unordered-containers, utf8-string, vector
+ }:
+ mkDerivation {
+ pname = "rethinkdb";
+ version = "2.2.0.6";
+ sha256 = "5afb37a760a893be64812955f1d5e4a6a45a139806bd1da9e4117af29b4c0e5e";
+ libraryHaskellDepends = [
+ aeson base base64-bytestring binary bytestring containers
+ data-default mtl network scientific text time unordered-containers
+ utf8-string vector
+ ];
+ testHaskellDepends = [ base doctest ];
doCheck = false;
homepage = "http://github.com/atnnn/haskell-rethinkdb";
description = "A driver for RethinkDB 2.2";
@@ -200890,7 +203234,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "retry" = callPackage
+ "retry_0_7_4" = callPackage
({ mkDerivation, base, data-default-class, exceptions, ghc-prim
, hspec, HUnit, mtl, QuickCheck, random, stm, time, transformers
}:
@@ -200909,6 +203253,27 @@ self: {
homepage = "http://github.com/Soostone/retry";
description = "Retry combinators for monadic actions that may fail";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "retry" = callPackage
+ ({ mkDerivation, base, data-default-class, exceptions, ghc-prim
+ , hspec, HUnit, mtl, QuickCheck, random, stm, time, transformers
+ }:
+ mkDerivation {
+ pname = "retry";
+ version = "0.7.4.1";
+ sha256 = "d2791b0ea317655c3d5a5d9d1d443eeb66a31953e0a66ac7a510050c54d83fab";
+ libraryHaskellDepends = [
+ base data-default-class exceptions ghc-prim random transformers
+ ];
+ testHaskellDepends = [
+ base data-default-class exceptions ghc-prim hspec HUnit mtl
+ QuickCheck random stm time transformers
+ ];
+ homepage = "http://github.com/Soostone/retry";
+ description = "Retry combinators for monadic actions that may fail";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"retryer" = callPackage
@@ -201305,14 +203670,14 @@ self: {
}) {};
"ring-buffer" = callPackage
- ({ mkDerivation, base, mtl, primitive, QuickCheck, vector }:
+ ({ mkDerivation, base, exceptions, mtl, primitive, QuickCheck
+ , vector
+ }:
mkDerivation {
pname = "ring-buffer";
- version = "0.2.0";
- sha256 = "4b4d074fbc35267d32fe1124f8346bd5c7e39f9286514b428cb0fc0198d39428";
- revision = "1";
- editedCabalFile = "0fa00f983efef18739d3671c34e272f4a37d379de9b20d466447ab0149e8a958";
- libraryHaskellDepends = [ base mtl primitive vector ];
+ version = "0.3";
+ sha256 = "f7d142f4b3aedb3a18e8a63d1dcbc0be06b64fece4f73d43261cf82067b25b82";
+ libraryHaskellDepends = [ base exceptions mtl primitive vector ];
testHaskellDepends = [ base QuickCheck vector ];
homepage = "http://github.com/bgamari/ring-buffer";
description = "A concurrent, mutable ring-buffer";
@@ -202774,8 +205139,8 @@ self: {
}:
mkDerivation {
pname = "safe-exceptions";
- version = "0.1.1.0";
- sha256 = "88d978f360eef53b553d7f4520598498187f02ae843517bd1d8eac95b1e972c2";
+ version = "0.1.3.0";
+ sha256 = "1acc605f83e2954f01a502095bec89f064a510cfc52a2a08369e4e60542c13e5";
libraryHaskellDepends = [ base deepseq exceptions transformers ];
testHaskellDepends = [ base hspec void ];
homepage = "https://github.com/fpco/safe-exceptions#readme";
@@ -204682,7 +207047,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "scientific" = callPackage
+ "scientific_0_3_4_8" = callPackage
({ mkDerivation, base, binary, bytestring, containers, deepseq
, ghc-prim, hashable, integer-gmp, QuickCheck, smallcheck, tasty
, tasty-ant-xml, tasty-hunit, tasty-quickcheck, tasty-smallcheck
@@ -204703,6 +207068,30 @@ self: {
homepage = "https://github.com/basvandijk/scientific";
description = "Numbers represented using scientific notation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "scientific" = callPackage
+ ({ mkDerivation, base, binary, bytestring, containers, deepseq
+ , ghc-prim, hashable, integer-gmp, QuickCheck, smallcheck, tasty
+ , tasty-ant-xml, tasty-hunit, tasty-quickcheck, tasty-smallcheck
+ , text, vector
+ }:
+ mkDerivation {
+ pname = "scientific";
+ version = "0.3.4.9";
+ sha256 = "108330662b0af9a04d7da55864211ce12008efe36614d897ba635e80670918a8";
+ libraryHaskellDepends = [
+ base binary bytestring containers deepseq ghc-prim hashable
+ integer-gmp text vector
+ ];
+ testHaskellDepends = [
+ base binary bytestring QuickCheck smallcheck tasty tasty-ant-xml
+ tasty-hunit tasty-quickcheck tasty-smallcheck text
+ ];
+ homepage = "https://github.com/basvandijk/scientific";
+ description = "Numbers represented using scientific notation";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"scion" = callPackage
@@ -205410,7 +207799,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) SDL2;};
- "sdl2" = callPackage
+ "sdl2_2_1_1" = callPackage
({ mkDerivation, base, bytestring, exceptions, linear, SDL2
, StateVar, text, transformers, vector
}:
@@ -205426,6 +207815,24 @@ self: {
jailbreak = true;
description = "Both high- and low-level bindings to the SDL library (version 2.0.3).";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) SDL2;};
+
+ "sdl2" = callPackage
+ ({ mkDerivation, base, bytestring, exceptions, linear, SDL2
+ , StateVar, text, transformers, vector
+ }:
+ mkDerivation {
+ pname = "sdl2";
+ version = "2.1.2.1";
+ sha256 = "a30a40495313cc40efd88d72f89e17c18354090fa1764e8217b8ee4d9884d439";
+ libraryHaskellDepends = [
+ base bytestring exceptions linear StateVar text transformers vector
+ ];
+ librarySystemDepends = [ SDL2 ];
+ libraryPkgconfigDepends = [ SDL2 ];
+ description = "Both high- and low-level bindings to the SDL library (version 2.0.2).";
+ license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs) SDL2;};
"sdl2-cairo" = callPackage
@@ -205615,6 +208022,22 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "secd" = callPackage
+ ({ mkDerivation, base, haskeline, mtl, parsec }:
+ mkDerivation {
+ pname = "secd";
+ version = "0.1.0.0";
+ sha256 = "7b82d863d881d283301f73217de976db47bdf932c7ec6844a460db02ec40a09e";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base mtl parsec ];
+ executableHaskellDepends = [ base haskeline ];
+ testHaskellDepends = [ base ];
+ homepage = "http://github.com/kseo/secd#readme";
+ description = "A Haskell implementation of the SECD abstract machine";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"secdh" = callPackage
({ mkDerivation, base, containers }:
mkDerivation {
@@ -206075,6 +208498,21 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "semibounded-lattices" = callPackage
+ ({ mkDerivation, base, containers, lattices, semibounded-lattice }:
+ mkDerivation {
+ pname = "semibounded-lattices";
+ version = "0.1.0.0";
+ sha256 = "433329bceb9eb326cc4f1fdb6a78970cbd278b72d051382baab1a043dddfbce4";
+ libraryHaskellDepends = [ base containers lattices ];
+ testHaskellDepends = [ base semibounded-lattice ];
+ jailbreak = true;
+ homepage = "https://github.com/xu-hao/semibounded-lattices#readme";
+ description = "A Haskell implementation of semibounded lattices";
+ license = stdenv.lib.licenses.bsd3;
+ broken = true;
+ }) {semibounded-lattice = null;};
+
"semigroupoid-extras_4_0" = callPackage
({ mkDerivation, base, semigroupoids }:
mkDerivation {
@@ -207202,6 +209640,33 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "servant_0_8" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring
+ , bytestring-conversion, case-insensitive, directory, doctest
+ , filemanip, filepath, hspec, http-api-data, http-media, http-types
+ , mmorph, mtl, network-uri, QuickCheck, quickcheck-instances
+ , string-conversions, text, url, vault
+ }:
+ mkDerivation {
+ pname = "servant";
+ version = "0.8";
+ sha256 = "185f989c0cca574bb8142fe627f0b5824004aa1ccf125a580c3aeba953d80d55";
+ libraryHaskellDepends = [
+ aeson attoparsec base base-compat bytestring bytestring-conversion
+ case-insensitive http-api-data http-media http-types mmorph mtl
+ network-uri string-conversions text vault
+ ];
+ testHaskellDepends = [
+ aeson attoparsec base base-compat bytestring directory doctest
+ filemanip filepath hspec QuickCheck quickcheck-instances
+ string-conversions text url
+ ];
+ homepage = "http://haskell-servant.readthedocs.org/";
+ description = "A family of combinators for defining webservices APIs";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"servant-JuicyPixels_0_1_0_0" = callPackage
({ mkDerivation, base, bytestring, http-media, JuicyPixels, servant
, servant-server, wai, warp
@@ -207295,19 +209760,23 @@ self: {
}) {};
"servant-aeson-specs" = callPackage
- ({ mkDerivation, aeson, base, bytestring, doctest, hspec
- , hspec-core, QuickCheck, servant, temporary
+ ({ mkDerivation, aeson, aeson-pretty, base, bytestring, directory
+ , doctest, filepath, hspec, hspec-core, mockery, QuickCheck
+ , quickcheck-instances, random, servant, silently
+ , string-conversions, temporary, text
}:
mkDerivation {
pname = "servant-aeson-specs";
- version = "0.1";
- sha256 = "ccea599ef6f218d860685db00a38de2ee87602af840b62c0004b0b18643e80a0";
+ version = "0.2";
+ sha256 = "3d965c6da5ee92762325dc28fb4e51138f0e9efef4251c87ae90de182b878c0f";
libraryHaskellDepends = [
- aeson base bytestring hspec QuickCheck servant
+ aeson aeson-pretty base bytestring directory filepath hspec
+ QuickCheck random servant
];
testHaskellDepends = [
- aeson base bytestring doctest hspec hspec-core QuickCheck servant
- temporary
+ aeson aeson-pretty base bytestring directory doctest filepath hspec
+ hspec-core mockery QuickCheck quickcheck-instances random servant
+ silently string-conversions temporary text
];
jailbreak = true;
homepage = "https://github.com/plow-technologies/servant-aeson-specs#readme";
@@ -207374,6 +209843,8 @@ self: {
pname = "servant-blaze";
version = "0.7.1";
sha256 = "90ed1c7a22b83bee344ef3896203f3699b7633bf986ffa064752c3596c072646";
+ revision = "1";
+ editedCabalFile = "90e239eb13bad18f9a41521580ff97f95550db33b0404f0a3ba04593fa6dee88";
libraryHaskellDepends = [ base blaze-html http-media servant ];
homepage = "http://haskell-servant.readthedocs.org/";
description = "Blaze-html support for servant";
@@ -207386,6 +209857,8 @@ self: {
pname = "servant-cassava";
version = "0.7.1";
sha256 = "385bf6187f86c0fb9ba39578eb132118d2ada5dd17f1d0abd6235e4e9113623d";
+ revision = "2";
+ editedCabalFile = "1bbf4a02f60f2b0d01fa94b6570ff75c1391562f13ea1a1418bd2a1227e9e37a";
libraryHaskellDepends = [ base cassava http-media servant vector ];
homepage = "http://haskell-servant.readthedocs.org/";
description = "Servant CSV content-type for cassava";
@@ -207630,6 +210103,36 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "servant-client_0_8" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, base64-bytestring
+ , bytestring, deepseq, exceptions, hspec, http-api-data
+ , http-client, http-client-tls, http-media, http-types, HUnit
+ , network, network-uri, QuickCheck, safe, servant, servant-server
+ , string-conversions, text, transformers, transformers-compat, wai
+ , warp
+ }:
+ mkDerivation {
+ pname = "servant-client";
+ version = "0.8";
+ sha256 = "b1099f2024e6c700f1310b25ef7f62f497a886c6859bb3172282750c6d062c2e";
+ libraryHaskellDepends = [
+ aeson attoparsec base base64-bytestring bytestring exceptions
+ http-api-data http-client http-client-tls http-media http-types
+ network-uri safe servant string-conversions text transformers
+ transformers-compat
+ ];
+ testHaskellDepends = [
+ aeson base bytestring deepseq hspec http-client http-media
+ http-types HUnit network QuickCheck servant servant-server text
+ transformers transformers-compat wai warp
+ ];
+ jailbreak = true;
+ homepage = "http://haskell-servant.readthedocs.org/";
+ description = "automatical derivation of querying functions for servant webservices";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"servant-csharp" = callPackage
({ mkDerivation, aeson, base, bytestring, directory, filepath
, heredocs, http-types, lens, mtl, servant, servant-foreign
@@ -207885,6 +210388,37 @@ self: {
hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ];
}) {};
+ "servant-docs_0_8" = callPackage
+ ({ mkDerivation, aeson, aeson-pretty, base, bytestring
+ , bytestring-conversion, case-insensitive, control-monad-omega
+ , hashable, hspec, http-media, http-types, lens, servant
+ , string-conversions, text, unordered-containers
+ }:
+ mkDerivation {
+ pname = "servant-docs";
+ version = "0.8";
+ sha256 = "51a5caf554e495f48147af44a98c19b48a4da89869c0586c5be9b19b120395e3";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson aeson-pretty base bytestring bytestring-conversion
+ case-insensitive control-monad-omega hashable http-media http-types
+ lens servant string-conversions text unordered-containers
+ ];
+ executableHaskellDepends = [
+ aeson base bytestring-conversion lens servant string-conversions
+ text
+ ];
+ testHaskellDepends = [
+ aeson base hspec lens servant string-conversions
+ ];
+ jailbreak = true;
+ homepage = "http://haskell-servant.readthedocs.org/";
+ description = "generate API docs for your servant webservice";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"servant-ede" = callPackage
({ mkDerivation, aeson, base, bytestring, ede, either, filepath
, http-media, http-types, semigroups, servant, servant-server, text
@@ -207969,6 +210503,20 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "servant-foreign_0_8" = callPackage
+ ({ mkDerivation, base, hspec, http-types, lens, servant, text }:
+ mkDerivation {
+ pname = "servant-foreign";
+ version = "0.8";
+ sha256 = "eeec69a6d32e671b95665939bfaeeb4228af7fe05b0ba669ea1ecd70f9f653f0";
+ libraryHaskellDepends = [ base http-types lens servant text ];
+ testHaskellDepends = [ base hspec ];
+ jailbreak = true;
+ description = "Helpers for generating clients for servant APIs in any programming language";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"servant-github" = callPackage
({ mkDerivation, aeson, base, hspec, http-api-data, http-client
, http-link-header, QuickCheck, servant, servant-client, text
@@ -208171,12 +210719,37 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "servant-js_0_8" = callPackage
+ ({ mkDerivation, base, base-compat, charset, hspec
+ , hspec-expectations, language-ecmascript, lens, servant
+ , servant-foreign, text
+ }:
+ mkDerivation {
+ pname = "servant-js";
+ version = "0.8";
+ sha256 = "dbbfe65d21e04c8d6a7b28a326e6d4e1f17a4ca2ac497e66c234dfd7abab531d";
+ libraryHaskellDepends = [
+ base base-compat charset lens servant servant-foreign text
+ ];
+ testHaskellDepends = [
+ base base-compat hspec hspec-expectations language-ecmascript lens
+ servant text
+ ];
+ jailbreak = true;
+ homepage = "http://haskell-servant.readthedocs.org/";
+ description = "Automatically derive javascript functions to query servant webservices";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"servant-lucid" = callPackage
({ mkDerivation, base, http-media, lucid, servant }:
mkDerivation {
pname = "servant-lucid";
version = "0.7.1";
sha256 = "ec26ba7d159b09be10beacf6242f6ae1bd111e9c738bfbf3cf2f560f48e0fe40";
+ revision = "1";
+ editedCabalFile = "1fd84dbff6493df7e55bb6f4f6bc194f48ad7e9f63b404669139b1dd231d1cc2";
libraryHaskellDepends = [ base http-media lucid servant ];
homepage = "http://haskell-servant.readthedocs.org/";
description = "Servant support for lucid";
@@ -208210,6 +210783,35 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "servant-mock_0_8" = 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.8";
+ sha256 = "60c61f210a7e976f21337a93c19a08c349c346ae25a3b25e5100c4b9503fae83";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring http-types QuickCheck servant servant-server
+ transformers wai
+ ];
+ executableHaskellDepends = [
+ aeson base QuickCheck servant-server warp
+ ];
+ testHaskellDepends = [
+ aeson base bytestring-conversion hspec hspec-wai QuickCheck servant
+ servant-server wai
+ ];
+ jailbreak = true;
+ homepage = "http://github.com/haskell-servant/servant";
+ description = "Derive a mock server for free from your servant API types";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"servant-pandoc_0_4_1_1" = callPackage
({ mkDerivation, base, bytestring, http-media, lens, pandoc-types
, servant-docs, text, unordered-containers
@@ -208353,8 +210955,8 @@ self: {
}:
mkDerivation {
pname = "servant-router";
- version = "0.8.0";
- sha256 = "6d7362d8b7b8928b847ead37d081fc6d5dbfb6e3df1464e24c682b4e1cba2a93";
+ version = "0.8.1";
+ sha256 = "fe94b7f998f96f29ca148dd89c5367ddacf6c925692660162a0f2c5e9696cbec";
libraryHaskellDepends = [
base bytestring http-api-data http-types mtl network-uri servant
text
@@ -208688,6 +211290,43 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "servant-server_0_8" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, base-compat
+ , base64-bytestring, bytestring, bytestring-conversion, containers
+ , directory, doctest, exceptions, filemanip, filepath, hspec
+ , hspec-wai, http-api-data, http-types, mtl, network, network-uri
+ , parsec, QuickCheck, safe, servant, should-not-typecheck, split
+ , string-conversions, system-filepath, temporary, text
+ , transformers, transformers-compat, wai, wai-app-static, wai-extra
+ , warp, word8
+ }:
+ mkDerivation {
+ pname = "servant-server";
+ version = "0.8";
+ sha256 = "31bc2044922d385dacac0c17cd0d56d99a8614efd972e85474b3ad81d5a1069e";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson attoparsec base base-compat base64-bytestring bytestring
+ containers filepath http-api-data http-types mtl network
+ network-uri safe servant split string-conversions system-filepath
+ text transformers transformers-compat wai wai-app-static warp word8
+ ];
+ executableHaskellDepends = [ aeson base servant text wai warp ];
+ testHaskellDepends = [
+ aeson base base-compat base64-bytestring 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
+ ];
+ jailbreak = true;
+ homepage = "http://haskell-servant.readthedocs.org/";
+ description = "A family of combinators for defining webservices APIs and serving them";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"servant-subscriber" = callPackage
({ mkDerivation, aeson, aeson-compat, async, attoparsec, base
, base-compat, blaze-builder, blaze-html, blaze-markup, bytestring
@@ -208731,8 +211370,8 @@ self: {
pname = "servant-swagger";
version = "0.1.1";
sha256 = "d89df7e8ee82978f6db32c2f278591df26bcdd6ef4282dff53933d3417d53a6c";
- revision = "1";
- editedCabalFile = "4982e79b812758d953cf852474e97882f826f194b09ba66eed74ec52fceb6f8e";
+ revision = "2";
+ editedCabalFile = "a6657e0ef2ea025a6b82b19949765fe92301e1d90be3330153789bee8e7959fe";
libraryHaskellDepends = [
aeson base bytestring http-media lens servant swagger2 text
unordered-containers
@@ -208740,6 +211379,7 @@ self: {
testHaskellDepends = [
aeson aeson-qq base hspec lens servant swagger2 text time
];
+ jailbreak = true;
homepage = "https://github.com/dmjio/servant-swagger";
description = "Generate Swagger specification for your servant API";
license = stdenv.lib.licenses.bsd3;
@@ -208805,6 +211445,8 @@ self: {
pname = "servant-swagger";
version = "1.1";
sha256 = "cf3aed6fd51e7078e27c0ee745f2718c43058047dd0996256a920675dee9f311";
+ revision = "1";
+ editedCabalFile = "71194662078eb9978c49774cc45f0489bd699ea657af03fafe3996be58ac3e06";
libraryHaskellDepends = [
aeson base bytestring hspec http-media insert-ordered-containers
lens QuickCheck servant swagger2 text unordered-containers
@@ -208829,6 +211471,8 @@ self: {
pname = "servant-swagger-ui";
version = "0.1.0.2.1.4";
sha256 = "88fee2a597f8810a7da56c15210e4019b407456e4a127fad5e9b08b2a8f41ff1";
+ revision = "1";
+ editedCabalFile = "d2fb00b812c0d2087ca43e38c0a5629940c3e6313b968faf05db36d4c89ff7ef";
libraryHaskellDepends = [
base blaze-markup bytestring directory file-embed filepath
http-media servant servant-blaze servant-server servant-swagger
@@ -208853,8 +211497,8 @@ self: {
pname = "servant-yaml";
version = "0.1.0.0";
sha256 = "c917d9b046b06a9c4386f743a78142c27cf7f0ec1ad8562770ab9828f2ee3204";
- revision = "7";
- editedCabalFile = "9a296b06cf199ab8e8ff19172601c239c77d885196a258ee5f4eaac4ebe34e66";
+ revision = "8";
+ editedCabalFile = "134f4bb4d23eb291360e897c9f83e74f22de17918452b6de79b2044c97197c6b";
libraryHaskellDepends = [
base bytestring http-media servant yaml
];
@@ -209579,6 +212223,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "sfnt2woff" = callPackage
+ ({ mkDerivation, base, bytestring, filepath, optparse-applicative
+ , parsec, zlib
+ }:
+ mkDerivation {
+ pname = "sfnt2woff";
+ version = "0.1.0.0";
+ sha256 = "2b016d713c089de54fbdcfa9e4f6817afada937b9ae2de0fc9ea507c72ea7924";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base bytestring ];
+ librarySystemDepends = [ zlib ];
+ executableHaskellDepends = [
+ base bytestring filepath optparse-applicative parsec
+ ];
+ testHaskellDepends = [ base ];
+ homepage = "https://github.com/kseo/sfnt2woff#readme";
+ description = "A command line tool to convert TrueType/OpenType fonts to WOFF format";
+ license = stdenv.lib.licenses.bsd3;
+ }) {inherit (pkgs) zlib;};
+
"sgd" = callPackage
({ mkDerivation, base, binary, bytestring, containers, deepseq
, filepath, lazy-io, logfloat, monad-par, mtl, primitive, random
@@ -210846,8 +213511,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "sharc-timbre";
- version = "0.1";
- sha256 = "cbdedf5c24664d362be1b4a285c4c0021c17126e9a9562c17f23eb174249184d";
+ version = "0.2";
+ sha256 = "4a5f16ee586d056ff9be7d148ec044f2c004ca67e5d7941a23ea5259929e9fb3";
libraryHaskellDepends = [ base ];
homepage = "https://github.com/anton-k/sharc";
description = "Sandell Harmonic Archive. A collection of stable phases for all instruments in the orchestra.";
@@ -211122,6 +213787,7 @@ self: {
base bytestring feed HTTP mime-types network-uri shellmate tagsoup
text xml
];
+ jailbreak = true;
homepage = "https://github.com/valderman/shellmate";
description = "Extra functionality for shellmate";
license = stdenv.lib.licenses.bsd3;
@@ -212542,13 +215208,12 @@ self: {
}:
mkDerivation {
pname = "simple-sql-parser";
- version = "0.4.1";
- sha256 = "18fd27a8b274ab74a4949a1738498c0903e9e74645f40b113324263b1753e543";
+ version = "0.4.2";
+ sha256 = "ba720de50c82b47a90a1774e7b50365483801cfcb19e664cd184e04003ec7b04";
libraryHaskellDepends = [ base mtl parsec pretty ];
testHaskellDepends = [
base HUnit mtl parsec pretty test-framework test-framework-hunit
];
- jailbreak = true;
homepage = "http://jakewheat.github.io/simple-sql-parser/";
description = "A parser for SQL queries";
license = stdenv.lib.licenses.bsd3;
@@ -212815,10 +215480,9 @@ self: {
({ mkDerivation, base, containers }:
mkDerivation {
pname = "simtreelo";
- version = "0.1.1.0";
- sha256 = "820e7189bb824c3480bb5492ddaf04a3b8200fea747084ab35e15ad46815f8c8";
+ version = "0.1.1.1";
+ sha256 = "0c990c2e520069d07030f63fc861c1a8c2e287bf2fc2ae4ebf24504d89cd1b64";
libraryHaskellDepends = [ base containers ];
- jailbreak = true;
description = "Loader for data organized in a tree";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -213029,6 +215693,29 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "siphon" = callPackage
+ ({ mkDerivation, attoparsec, base, bytestring, colonnade
+ , contravariant, either, HUnit, pipes, QuickCheck, test-framework
+ , test-framework-hunit, test-framework-quickcheck2, text, vector
+ }:
+ mkDerivation {
+ pname = "siphon";
+ version = "0.1";
+ sha256 = "9035f961ddc57cf6f552b38a943aa9d57368dbfa7c5e5928150b3eae9140f4a6";
+ libraryHaskellDepends = [
+ attoparsec base bytestring colonnade contravariant pipes text
+ vector
+ ];
+ testHaskellDepends = [
+ base bytestring colonnade contravariant either HUnit pipes
+ QuickCheck test-framework test-framework-hunit
+ test-framework-quickcheck2 text
+ ];
+ homepage = "https://github.com/andrewthad/colonnade#readme";
+ description = "Generic types and functions for columnar encoding and decoding";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"sirkel" = callPackage
({ mkDerivation, base, binary, bytestring, containers, hashtables
, haskell98, random, remote, SHA, transformers
@@ -214047,6 +216734,26 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "smerdyakov" = callPackage
+ ({ mkDerivation, base, doctest, exceptions, free, Glob, hspec, mtl
+ , process, QuickCheck, text, transformers, yaml
+ }:
+ mkDerivation {
+ pname = "smerdyakov";
+ version = "0.0.0.0";
+ sha256 = "32b6b8bfeebc8915784f9ee0c3df3299fd1b09bf0c70985d0407740c28eea709";
+ libraryHaskellDepends = [
+ base exceptions free mtl process text transformers
+ ];
+ testHaskellDepends = [
+ base doctest exceptions free Glob hspec mtl process QuickCheck text
+ transformers yaml
+ ];
+ jailbreak = true;
+ homepage = "http://github.com/jkarni/smerdyakov#README.md";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"smoothie_0_1_3" = callPackage
({ mkDerivation, base, linear, vector }:
mkDerivation {
@@ -214140,8 +216847,8 @@ self: {
}:
mkDerivation {
pname = "smsaero";
- version = "0.6";
- sha256 = "d800313950e5d9278850387c9b3795f1864a4796d25b1bc1143f3e14ffabd72f";
+ version = "0.6.1";
+ sha256 = "95d9bd63df306b6ed2ebee3a31c91484bcc29fa72cab77e89f55746bd03bf102";
libraryHaskellDepends = [
aeson base containers http-api-data http-client servant
servant-client servant-docs text time
@@ -216681,22 +219388,47 @@ self: {
}) {};
"solga" = callPackage
- ({ mkDerivation, aeson, base, bytestring, containers, http-types
- , resourcet, text, wai, wai-extra
+ ({ mkDerivation, aeson, base, bytestring, containers, hashable
+ , hspec, hspec-wai, hspec-wai-json, http-types, QuickCheck
+ , resourcet, safe-exceptions, scientific, text
+ , unordered-containers, vector, wai, wai-extra
}:
mkDerivation {
pname = "solga";
- version = "0.1.0.0";
- sha256 = "08eaf70e9e6c36c3b42dd60809d326e714040adfba75e43db8926562669bfd21";
+ version = "0.1.0.1";
+ sha256 = "4949717429b3698d619bca644fedb340b8f0eaac50e3e9b0b55007d9eb1db8ba";
libraryHaskellDepends = [
- aeson base bytestring containers http-types resourcet text wai
- wai-extra
+ aeson base bytestring containers http-types resourcet
+ safe-exceptions text wai wai-extra
+ ];
+ testHaskellDepends = [
+ aeson base bytestring hashable hspec hspec-wai hspec-wai-json
+ http-types QuickCheck scientific text unordered-containers vector
+ wai wai-extra
];
homepage = "https://github.com/chpatrick/solga";
description = "Simple typesafe web routing";
license = stdenv.lib.licenses.mit;
}) {};
+ "solga-swagger" = callPackage
+ ({ mkDerivation, base, bytestring, dlist, http-types
+ , insert-ordered-containers, lens, mtl, solga, swagger2, text
+ , unordered-containers
+ }:
+ mkDerivation {
+ pname = "solga-swagger";
+ version = "0.1.0.1";
+ sha256 = "ceac56b2de41102e739301b5edf60af546e6178f139313681cb46bfb693f765f";
+ libraryHaskellDepends = [
+ base bytestring dlist http-types insert-ordered-containers lens mtl
+ solga swagger2 text unordered-containers
+ ];
+ homepage = "https://github.com/chpatrick/solga";
+ description = "Swagger generation for Solga";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"solr" = callPackage
({ mkDerivation, base, base-prelude, bytestring
, bytestring-tree-builder, case-insensitive, contravariant
@@ -217917,24 +220649,22 @@ self: {
({ mkDerivation, aeson, attoparsec, base, base64-bytestring
, bytestring, containers, data-default, docopt, entropy
, http-conduit, http-kit, http-types, interpolatedstring-perl6
- , network, postgresql-simple, raw-strings-qq, resource-pool, SHA
- , split, string-conversions, text, time, tls, unix, utf8-string
- , x509, yaml
+ , network, postgresql-simple, resource-pool, SHA, split, text, time
+ , tls, unix, utf8-string, x509, yaml
}:
mkDerivation {
pname = "sproxy";
- version = "0.9.6";
- sha256 = "3c35dad6f3b838f51ebd7c70231421cbb34ef5c3a38f3560c926cf7de8a9a5aa";
+ version = "0.9.8";
+ sha256 = "255f78f65439ad2e8e0f05fe9df5d07b07863b433bda486b67c3a6c4e0a0311a";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
aeson attoparsec base base64-bytestring bytestring containers
data-default docopt entropy http-conduit http-kit http-types
- interpolatedstring-perl6 network postgresql-simple raw-strings-qq
- resource-pool SHA split string-conversions text time tls unix
- utf8-string x509 yaml
+ interpolatedstring-perl6 network postgresql-simple resource-pool
+ SHA split text time tls unix utf8-string x509 yaml
];
- description = "HTTP proxy for authenticating users via Google OAuth2";
+ description = "HTTP proxy for authenticating users via OAuth2";
license = stdenv.lib.licenses.mit;
}) {};
@@ -218558,6 +221288,30 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "stache" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, containers, deepseq
+ , directory, exceptions, file-embed, filepath, hspec
+ , hspec-megaparsec, megaparsec, mtl, template-haskell, text
+ , unordered-containers, vector, yaml
+ }:
+ mkDerivation {
+ pname = "stache";
+ version = "0.1.2";
+ sha256 = "67b8e3cfd8e1d31aa3e3c518292ccaf84841bbdd08aefcf533b3b4d77686d680";
+ libraryHaskellDepends = [
+ aeson base bytestring containers deepseq directory exceptions
+ filepath megaparsec mtl template-haskell text unordered-containers
+ vector
+ ];
+ testHaskellDepends = [
+ aeson base bytestring containers file-embed hspec hspec-megaparsec
+ megaparsec text yaml
+ ];
+ homepage = "https://github.com/stackbuilders/stache";
+ description = "Mustache templates for Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"stack_0_1_3_0" = callPackage
({ mkDerivation, aeson, async, attoparsec, base, base16-bytestring
, base64-bytestring, bifunctors, binary, blaze-builder, byteable
@@ -219286,8 +222040,8 @@ self: {
pname = "stack";
version = "1.1.2";
sha256 = "fc836b24fdeac54244fc79b6775d5edee146b7e552ad8e69596c7cc2f2b10625";
- revision = "5";
- editedCabalFile = "ae5ee2b2bf908224580455dd2ba16b1814fbf611465e9b949dcd99e78ec6722d";
+ revision = "6";
+ editedCabalFile = "9b8c21c5af64fe74772ea3f17e2a1fe8d295a083948e6631bbaa81f3305b2d95";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -219378,17 +222132,18 @@ self: {
"stack-run" = callPackage
({ mkDerivation, ansi-terminal, async, base, bytestring, Cabal
, conduit, conduit-extra, directory, filepath, MissingH
- , projectroot, time
+ , projectroot, questioner, stm, terminal-size, time, vty
}:
mkDerivation {
pname = "stack-run";
- version = "0.1.0.7";
- sha256 = "197c65164017482d6409fbdb31ae0933396b08530bc82faa2948000cc4ecdcad";
+ version = "0.1.1.0";
+ sha256 = "06fe29fe67a1fea82708b38d6ebb9752f5c4951261d6a8670ebbfbac4b6691ae";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
ansi-terminal async base bytestring Cabal conduit conduit-extra
- directory filepath MissingH projectroot time
+ directory filepath MissingH projectroot questioner stm
+ terminal-size time vty
];
homepage = "https://github.com/yamadapc/stack-run";
description = "An equivalent to cabal run for stack";
@@ -219995,7 +222750,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "stackage-curator" = callPackage
+ "stackage-curator_0_14_0" = callPackage
({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-s3, async
, base, base16-bytestring, binary, binary-orphans, binary-tagged
, blaze-html, byteable, bytestring, Cabal, classy-prelude-conduit
@@ -220044,6 +222799,52 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "stackage-curator" = callPackage
+ ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-s3, async
+ , base, base16-bytestring, blaze-html, byteable, bytestring, Cabal
+ , classy-prelude-conduit, conduit, conduit-extra, containers
+ , cryptohash, cryptohash-conduit, data-default-class, directory
+ , exceptions, filepath, hashable, hspec, html-conduit, http-client
+ , http-client-tls, http-conduit, lucid, mime-types, monad-unlift
+ , monad-unlift-ref, mono-traversable, mtl, old-locale
+ , optparse-applicative, optparse-simple, process, QuickCheck
+ , resourcet, safe, semigroups, stm, store, streaming-commons, syb
+ , system-fileio, system-filepath, tar, temporary, text, time
+ , transformers, unix-compat, unordered-containers, utf8-string
+ , vector, xml-conduit, xml-types, yaml, zlib
+ }:
+ mkDerivation {
+ pname = "stackage-curator";
+ version = "0.14.1.1";
+ sha256 = "1db3dee8833fe6e42f1266c9b78a5cbee9b02d6a9c83f4cf7e2c607f4a6ad6d5";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson amazonka amazonka-core amazonka-s3 async base
+ base16-bytestring blaze-html byteable bytestring Cabal
+ classy-prelude-conduit conduit conduit-extra containers cryptohash
+ cryptohash-conduit data-default-class directory exceptions filepath
+ hashable html-conduit http-client http-client-tls http-conduit
+ lucid mime-types monad-unlift monad-unlift-ref mono-traversable mtl
+ old-locale process resourcet safe semigroups stm store
+ streaming-commons syb system-fileio system-filepath tar temporary
+ text time transformers unix-compat unordered-containers utf8-string
+ vector xml-conduit xml-types yaml zlib
+ ];
+ executableHaskellDepends = [
+ aeson base http-client http-client-tls optparse-applicative
+ optparse-simple system-filepath text
+ ];
+ testHaskellDepends = [
+ base Cabal classy-prelude-conduit containers directory hspec
+ http-client http-client-tls QuickCheck text yaml
+ ];
+ homepage = "https://github.com/fpco/stackage-curator";
+ description = "Tools for curating Stackage bundles";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"stackage-install_0_1_0_3" = callPackage
({ mkDerivation, aeson, async, base, bytestring, containers
, cryptohash, directory, filepath, http-client, http-client-tls
@@ -220053,6 +222854,33 @@ self: {
pname = "stackage-install";
version = "0.1.0.3";
sha256 = "95bcae12cb795d5edae0edd45ec0827a55ae1a0e35199bfadef1bf0077373ed5";
+ revision = "1";
+ editedCabalFile = "c0365ebfce87f0fe849850eea8d8c77201879d7817a78e531e5c490363514165";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson async base bytestring containers cryptohash directory
+ filepath http-client http-client-tls http-types process stm tar
+ text
+ ];
+ executableHaskellDepends = [ base ];
+ homepage = "https://github.com/fpco/stackage-install";
+ description = "Secure download of packages for cabal-install";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "stackage-install_0_1_1_1" = callPackage
+ ({ mkDerivation, aeson, async, base, bytestring, containers
+ , cryptohash, directory, filepath, http-client, http-client-tls
+ , http-types, process, stm, tar, text
+ }:
+ mkDerivation {
+ pname = "stackage-install";
+ version = "0.1.1.1";
+ sha256 = "46af3ae310cd7691f3b9edf3e17b0078c38b81c2c136c1485718f81e7068b875";
+ revision = "1";
+ editedCabalFile = "4d211f81f164148b6fd1581e19446c1aeb0d5783d8f5b1d4ec7caca2b784edef";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -220074,8 +222902,8 @@ self: {
}:
mkDerivation {
pname = "stackage-install";
- version = "0.1.1.1";
- sha256 = "46af3ae310cd7691f3b9edf3e17b0078c38b81c2c136c1485718f81e7068b875";
+ version = "0.1.2";
+ sha256 = "d46a0dfb3b82a154509fc396d966df642302341bfd758204d72d23e590874843";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -220999,10 +223827,8 @@ self: {
}:
mkDerivation {
pname = "steeloverseer";
- version = "2.0";
- sha256 = "44a62c33eb251368dfa4fd97f317c4375dc65e6d66fc2362d3c17bcca82b0abf";
- revision = "1";
- editedCabalFile = "ccc318eb672b41d63104450aa7c25947df290ac9efc7c0ae62b727ad5f5898f2";
+ version = "2.0.0.1";
+ sha256 = "376994767ee8afacebf05f18ad0517bf1fa7557f5c44697c3f476a575d6ea334";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -221013,6 +223839,7 @@ self: {
base bytestring directory filepath fsnotify optparse-applicative
regex-tdfa semigroups yaml
];
+ jailbreak = true;
homepage = "https://github.com/schell/steeloverseer";
description = "A file watcher and development tool";
license = stdenv.lib.licenses.bsd3;
@@ -221068,8 +223895,8 @@ self: {
}:
mkDerivation {
pname = "stgi";
- version = "1";
- sha256 = "b2d4d39dccc636ce8b65f2d4104ac0c282eeb3e3b22663eefb7249c465dc10e4";
+ version = "1.0.1";
+ sha256 = "2fc1cdb0a0144757dbec6090a2fc9dd7b97096802465673bef6b9ee59e87e92a";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -222035,6 +224862,7 @@ self: {
th-orphans th-reify-many th-utilities time transformers
unordered-containers vector vector-binary-instances void weigh
];
+ doCheck = false;
homepage = "https://github.com/fpco/store#readme";
description = "Fast binary serialization";
license = stdenv.lib.licenses.mit;
@@ -223605,7 +226433,7 @@ self: {
license = stdenv.lib.licenses.mit;
}) {stripe-tests = null;};
- "strive" = callPackage
+ "strive_2_2_2" = callPackage
({ mkDerivation, aeson, base, bytestring, data-default, gpolyline
, http-conduit, http-types, markdown-unlit, template-haskell, text
, time, transformers
@@ -223626,6 +226454,26 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "strive" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, data-default, gpolyline
+ , http-client, http-client-tls, http-types, markdown-unlit
+ , template-haskell, text, time, transformers
+ }:
+ mkDerivation {
+ pname = "strive";
+ version = "3.0.0";
+ sha256 = "9fa6409127c240846e11d1c7e8746dfa6f5713af90db46cc60f6ff05507556b0";
+ libraryHaskellDepends = [
+ aeson base bytestring data-default gpolyline http-client
+ http-client-tls http-types template-haskell text time transformers
+ ];
+ testHaskellDepends = [ base bytestring markdown-unlit time ];
+ homepage = "https://github.com/tfausak/strive#readme";
+ description = "A client for the Strava V3 API";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"strptime" = callPackage
({ mkDerivation, base, bytestring, text, time }:
mkDerivation {
@@ -224634,8 +227482,8 @@ self: {
({ mkDerivation, base, Cabal, containers, directory, filepath }:
mkDerivation {
pname = "superdoc";
- version = "0.1.2.2";
- sha256 = "ec9d79da2c20f55a426fcacac18563fe15762442a25bd460320ce01a2b6ce963";
+ version = "0.1.2.3";
+ sha256 = "99666b5f574c053c8c5282a89dc3473e8ce0137fa93f61100f2fd7f83ea2a6e7";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -224644,7 +227492,6 @@ self: {
executableHaskellDepends = [
base Cabal containers directory filepath
];
- jailbreak = true;
homepage = "http://www.mathstat.dal.ca/~selinger/superdoc/";
description = "Additional documentation markup and Unicode support";
license = stdenv.lib.licenses.bsd3;
@@ -225475,7 +228322,7 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
- "sync-mht" = callPackage
+ "sync-mht_0_3_8_4" = callPackage
({ mkDerivation, array, base, base16-bytestring, byteable, bytes
, bytestring, cereal, containers, cryptohash, directory, exceptions
, filepath, HUnit, io-streams, mtl, process, random, regex-compat
@@ -225509,6 +228356,43 @@ self: {
homepage = "https://github.com/ekarayel/sync-mht";
description = "Fast incremental file transfer using Merkle-Hash-Trees";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "sync-mht" = callPackage
+ ({ mkDerivation, array, base, base16-bytestring, byteable, bytes
+ , bytestring, cereal, containers, cryptohash, directory, exceptions
+ , filepath, HUnit, io-streams, mtl, process, random, regex-compat
+ , temporary, text, time, transformers, unix, zlib
+ }:
+ mkDerivation {
+ pname = "sync-mht";
+ version = "0.3.8.5";
+ sha256 = "146c2e789845bbc58c4baf9f4c6e4e9b0908b5518311b321543dd481f90efdaa";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ array base base16-bytestring byteable bytes bytestring cereal
+ containers cryptohash directory exceptions filepath HUnit
+ io-streams mtl process random regex-compat temporary text time
+ transformers unix zlib
+ ];
+ executableHaskellDepends = [
+ array base base16-bytestring byteable bytes bytestring cereal
+ containers cryptohash directory exceptions filepath HUnit
+ io-streams mtl process random regex-compat temporary text time
+ transformers unix zlib
+ ];
+ testHaskellDepends = [
+ array base base16-bytestring byteable bytes bytestring cereal
+ containers cryptohash directory exceptions filepath HUnit
+ io-streams mtl process random regex-compat temporary text time
+ transformers unix zlib
+ ];
+ jailbreak = true;
+ homepage = "https://github.com/ekarayel/sync-mht";
+ description = "Fast incremental file transfer using Merkle-Hash-Trees";
+ license = stdenv.lib.licenses.mit;
hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ];
}) {};
@@ -226347,6 +229231,19 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "system-locale" = callPackage
+ ({ mkDerivation, base, hspec, megaparsec, process, time }:
+ mkDerivation {
+ pname = "system-locale";
+ version = "0.1.0.0";
+ sha256 = "0df7815525b55d875e8c0393f22c3595655a90a0701b5208799f97e653686fab";
+ libraryHaskellDepends = [ base megaparsec process time ];
+ testHaskellDepends = [ base hspec ];
+ homepage = "https://github.com/cocreature/system-locale";
+ description = "Get system locales";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"system-posix-redirect" = callPackage
({ mkDerivation, base, bytestring, unix }:
mkDerivation {
@@ -226630,6 +229527,7 @@ self: {
base data-default-class data-default-instances-base hspec HUnit
QuickCheck
];
+ jailbreak = true;
homepage = "https://github.com/muesli4/table-layout";
description = "Layout text as grid or table";
license = stdenv.lib.licenses.bsd3;
@@ -227189,7 +230087,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "tagsoup" = callPackage
+ "tagsoup_0_13_10" = callPackage
({ mkDerivation, base, bytestring, containers, text }:
mkDerivation {
pname = "tagsoup";
@@ -227199,9 +230097,10 @@ self: {
homepage = "https://github.com/ndmitchell/tagsoup#readme";
description = "Parsing and extracting information from (possibly malformed) HTML/XML documents";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "tagsoup_0_14" = callPackage
+ "tagsoup" = callPackage
({ mkDerivation, base, bytestring, containers, text }:
mkDerivation {
pname = "tagsoup";
@@ -227211,7 +230110,6 @@ self: {
homepage = "https://github.com/ndmitchell/tagsoup#readme";
description = "Parsing and extracting information from (possibly malformed) HTML/XML documents";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tagsoup-ht" = callPackage
@@ -227240,6 +230138,23 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "tagsoup-megaparsec" = callPackage
+ ({ mkDerivation, base, hspec, megaparsec, raw-strings-qq, tagsoup
+ }:
+ mkDerivation {
+ pname = "tagsoup-megaparsec";
+ version = "0.1.0.0";
+ sha256 = "6e77efecb8188cc938194e94784b4944c76cc54443ba9c271033ec592b1bae5c";
+ libraryHaskellDepends = [ base megaparsec tagsoup ];
+ testHaskellDepends = [
+ base hspec megaparsec raw-strings-qq tagsoup
+ ];
+ jailbreak = true;
+ homepage = "https://github.com/kseo/tagsoup-megaparsec#readme";
+ description = "A Tag token parser and Tag specific parsing combinators";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"tagsoup-parsec" = callPackage
({ mkDerivation, base, parsec, tagsoup }:
mkDerivation {
@@ -228297,12 +231212,11 @@ self: {
}:
mkDerivation {
pname = "tasty-program";
- version = "1.0.3";
- sha256 = "1659e7651cd638cd1f7c80c0f5cd9be87358d2cc4a9c98f2f23240583e5a06a3";
+ version = "1.0.5";
+ sha256 = "4cb255ad5f037029cc6ae244fffdfb0ed7c65a4b0575d98ec61c067d6f5829c4";
libraryHaskellDepends = [
base deepseq directory filepath process tasty
];
- jailbreak = true;
homepage = "https://github.com/jstolarek/tasty-program";
description = "Use tasty framework to test whether a program executes correctly";
license = stdenv.lib.licenses.bsd3;
@@ -228358,7 +231272,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "tasty-rerun" = callPackage
+ "tasty-rerun_1_1_5" = callPackage
({ mkDerivation, base, containers, mtl, optparse-applicative
, reducers, split, stm, tagged, tasty, transformers
}:
@@ -228375,6 +231289,24 @@ self: {
homepage = "http://github.com/ocharles/tasty-rerun";
description = "Run tests by filtering the test tree depending on the result of previous test runs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "tasty-rerun" = callPackage
+ ({ mkDerivation, base, containers, mtl, optparse-applicative
+ , reducers, split, stm, tagged, tasty, transformers
+ }:
+ mkDerivation {
+ pname = "tasty-rerun";
+ version = "1.1.6";
+ sha256 = "ed33270c8a1f1576985e9907087921fd4f8fba19253fe3bfefec2d05f9799d79";
+ libraryHaskellDepends = [
+ base containers mtl optparse-applicative reducers split stm tagged
+ tasty transformers
+ ];
+ homepage = "http://github.com/ocharles/tasty-rerun";
+ description = "Run tests by filtering the test tree depending on the result of previous test runs";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"tasty-silver_3_1_7" = callPackage
@@ -228757,7 +231689,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "telegram-api" = callPackage
+ "telegram-api_0_4_3_0" = callPackage
({ mkDerivation, aeson, ansi-wl-pprint, base, bytestring, either
, filepath, hjpath, hspec, http-api-data, http-client
, http-client-tls, http-media, http-types, mime-types
@@ -228781,6 +231713,33 @@ self: {
homepage = "http://github.com/klappvisor/haskell-telegram-api#readme";
description = "Telegram Bot API bindings";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "telegram-api" = callPackage
+ ({ mkDerivation, aeson, ansi-wl-pprint, base, bytestring, either
+ , filepath, hjpath, hspec, http-api-data, http-client
+ , http-client-tls, http-media, http-types, mime-types
+ , optparse-applicative, servant, servant-client, string-conversions
+ , text, transformers, utf8-string
+ }:
+ mkDerivation {
+ pname = "telegram-api";
+ version = "0.4.3.1";
+ sha256 = "b51fa07d2dfa010a467a43b2a86dc56ec7a7adaf91b379528a97b6745771dfc8";
+ libraryHaskellDepends = [
+ aeson base bytestring either http-api-data http-client http-media
+ http-types mime-types servant servant-client string-conversions
+ text transformers
+ ];
+ testHaskellDepends = [
+ aeson ansi-wl-pprint base filepath hjpath hspec http-client
+ http-client-tls http-types optparse-applicative servant
+ servant-client text transformers utf8-string
+ ];
+ homepage = "http://github.com/klappvisor/haskell-telegram-api#readme";
+ description = "Telegram Bot API bindings";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"teleport" = callPackage
@@ -228885,6 +231844,7 @@ self: {
base bifunctors bytestring containers http-conduit mtl network
regex-pcre split tagsoup text time transformers
];
+ jailbreak = true;
homepage = "https://github.com/phaazon/tellbot";
description = "IRC tellbot";
license = stdenv.lib.licenses.gpl3;
@@ -229477,14 +232437,16 @@ self: {
"test-fixture" = callPackage
({ mkDerivation, base, data-default, hspec, hspec-discover, mtl
- , template-haskell
+ , template-haskell, transformers
}:
mkDerivation {
pname = "test-fixture";
- version = "0.3.1.0";
- sha256 = "2e706aca06eaa8fd3223be69c554c4334d54dcaac43a3bebaa5d7802d599d60b";
+ version = "0.4.0.0";
+ sha256 = "0601604365bec95ab5407051410f7a857ae19dc6c25fad8bc004756aca02dff0";
libraryHaskellDepends = [ base data-default mtl template-haskell ];
- testHaskellDepends = [ base hspec hspec-discover ];
+ testHaskellDepends = [
+ base hspec hspec-discover mtl transformers
+ ];
homepage = "http://github.com/cjdev/test-fixture#readme";
description = "Test monadic side-effects";
license = stdenv.lib.licenses.bsd3;
@@ -229654,8 +232616,8 @@ self: {
pname = "test-framework-quickcheck2";
version = "0.3.0.3";
sha256 = "cc96c6f30c29b16a3f7ec5c108f320a6c0f0d3ef71afff8a1cb98caf33ffe18a";
- revision = "1";
- editedCabalFile = "14fdf07c345e9460882b975851739afc2cf62f0c9930c38d0fee5b0943351638";
+ revision = "2";
+ editedCabalFile = "989f988d0c4356d7fc1d87c062904d02eba0637c5adba428b349aeb709d81bc0";
libraryHaskellDepends = [
base extensible-exceptions QuickCheck random test-framework
];
@@ -230825,8 +233787,8 @@ self: {
}:
mkDerivation {
pname = "text-icu-normalized";
- version = "0.1.4.1";
- sha256 = "3ffe3706e994327563568a84e0b41761b235f84ca3b3c307656de406d7b8e2e3";
+ version = "0.1.5.1";
+ sha256 = "a6b10fe10fbd83c23c6719879a19536ff0fdfb01b4ea42e25e014d59ed29f3a6";
libraryHaskellDepends = [
base base-unicode-symbols bytestring lens text text-icu
];
@@ -231245,6 +234207,8 @@ self: {
pname = "text-show";
version = "3.2.2";
sha256 = "93a9479d19f303d4e8310ae8e35a8609d27ef6e443f8a4531c73bd5d1bbd4c40";
+ revision = "1";
+ editedCabalFile = "2d52fb92d26513d648126820f6abffa4e2971fde5565a3608982dabec0cd7152";
libraryHaskellDepends = [
array base base-compat bifunctors bytestring bytestring-builder
containers generic-deriving ghc-boot ghc-prim integer-gmp nats
@@ -231276,6 +234240,8 @@ self: {
pname = "text-show-instances";
version = "3.2.1";
sha256 = "33433b9d15d43254e1dbca31fdf226579a77c8c12e98e76a29a566703a000c68";
+ revision = "1";
+ editedCabalFile = "779438a1fe229b098458abe877276c851c4fb8ccf095213d9b7018e95715e04e";
libraryHaskellDepends = [
base base-compat bifunctors binary bytestring containers directory
haskeline hoopl hpc old-locale old-time pretty random semigroups
@@ -231382,6 +234348,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "text-zipper-monad" = callPackage
+ ({ mkDerivation, base, hspec, mtl, text-zipper }:
+ mkDerivation {
+ pname = "text-zipper-monad";
+ version = "0.1.0.0";
+ sha256 = "39d3c7bd5b79226e477bb9fd3be1cbcadb2674969525ff2e441642e5de42756b";
+ libraryHaskellDepends = [ base mtl text-zipper ];
+ testHaskellDepends = [ base hspec text-zipper ];
+ homepage = "https://github.com/kseo/text-zipper-monad#readme";
+ description = "Monadic interface to the text-zipper package";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"text1" = callPackage
({ mkDerivation, base, binary, directory, doctest, filepath, lens
, QuickCheck, semigroups, template-haskell, text
@@ -232078,7 +235057,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "th-lift-instances" = callPackage
+ "th-lift-instances_0_1_9" = callPackage
({ mkDerivation, base, bytestring, containers, QuickCheck
, template-haskell, text, th-lift, vector
}:
@@ -232095,6 +235074,26 @@ self: {
homepage = "http://github.com/bennofs/th-lift-instances/";
description = "Lift instances for template-haskell for common data types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "th-lift-instances" = callPackage
+ ({ mkDerivation, base, bytestring, containers, QuickCheck
+ , template-haskell, text, th-lift, vector
+ }:
+ mkDerivation {
+ pname = "th-lift-instances";
+ version = "0.1.10";
+ sha256 = "a3b8afd8789f508d9a421952994ff82cd33c40e99f81c85080fee07044ff2174";
+ libraryHaskellDepends = [
+ base bytestring containers template-haskell text th-lift vector
+ ];
+ testHaskellDepends = [
+ base bytestring containers QuickCheck template-haskell text vector
+ ];
+ homepage = "http://github.com/bennofs/th-lift-instances/";
+ description = "Lift instances for template-haskell for common data types";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"th-orphans_0_8_2" = callPackage
@@ -232404,6 +235403,7 @@ self: {
base bytestring containers directory filepath hspec primitive syb
template-haskell text th-orphans vector
];
+ doCheck = false;
homepage = "https://github.com/fpco/th-utilities#readme";
description = "Collection of useful functions for use with Template Haskell";
license = stdenv.lib.licenses.mit;
@@ -232460,6 +235460,33 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "thentos-cookie-session" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, cookie, cryptonite
+ , digestive-functors, hspec, hspec-wai, http-types, lens, memory
+ , mtl, resourcet, sandi, servant, servant-server
+ , string-conversions, text, transformers, vault, wai, wai-extra
+ , wai-session
+ }:
+ mkDerivation {
+ pname = "thentos-cookie-session";
+ version = "0.9.0";
+ sha256 = "b1550fa69251a85c29f0396b6fdac937a21fe151151162e8834233284239ec77";
+ libraryHaskellDepends = [
+ aeson base bytestring cookie cryptonite digestive-functors lens
+ memory mtl resourcet sandi servant servant-server
+ string-conversions text transformers vault wai wai-extra
+ wai-session
+ ];
+ testHaskellDepends = [
+ base cookie hspec hspec-wai http-types servant-server transformers
+ vault wai wai-extra wai-session
+ ];
+ jailbreak = true;
+ homepage = "https://github.com/liqd/thentos";
+ description = "All-in-one session handling for servant-based frontends";
+ license = "AGPL";
+ }) {};
+
"theoremquest" = callPackage
({ mkDerivation, base, HTTP, json, utf8-string }:
mkDerivation {
@@ -232553,8 +235580,8 @@ self: {
pname = "these";
version = "0.7";
sha256 = "21959dd626454a9b7f0ac7b57d923802b72d008ca77f752fa8f569698bf6ea10";
- revision = "1";
- editedCabalFile = "d9c6643b3d9565bb5931e24d5b18f5f60293c7644a3bb9298429db8b632b1279";
+ revision = "2";
+ editedCabalFile = "2b24a8c4430c41db5ee2e58f853f944e4500ce6c2ccd0899502e701312e452c4";
libraryHaskellDepends = [
base bifunctors containers data-default-class hashable mtl
profunctors semigroupoids transformers transformers-compat
@@ -236339,8 +239366,8 @@ self: {
}:
mkDerivation {
pname = "tsvsql";
- version = "0.2.0.0";
- sha256 = "ebbdba194d7bdb248631e96de0635d773b0fac6adb979722dbb257848b367382";
+ version = "0.2.1.0";
+ sha256 = "5c8a29e01fcf8e3d2cc0a9cb4e2e0635791d2f2aa8c248f7eadc5c093ebfd8e3";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -238107,6 +241134,7 @@ self: {
version = "0.0.0.3";
sha256 = "c7f8bcc8bfc2b87f7ce4e48ce422c3a8cfe2d4807c4edacca638c2a55715523b";
libraryHaskellDepends = [ base type-level ];
+ jailbreak = true;
homepage = "http://darcs.wolfgang.jeltsch.info/haskell/type-equality-check";
description = "Type equality check";
license = stdenv.lib.licenses.bsd3;
@@ -238132,7 +241160,10 @@ self: {
pname = "type-functions";
version = "0.2.0.3";
sha256 = "55ed9016a713a74f40c9b6c148b6d12cb749a5b3cbfcd55dd0e3fef1c3e446ef";
+ revision = "1";
+ editedCabalFile = "cbcb6222648cd677de48ef9592d2f2387f8b3fef59b9a5411e3864c561c795ab";
libraryHaskellDepends = [ base kinds ];
+ jailbreak = true;
homepage = "http://darcs.wolfgang.jeltsch.info/haskell/type-functions";
description = "Emulation of type-level functions";
license = stdenv.lib.licenses.bsd3;
@@ -238182,8 +241213,8 @@ self: {
({ mkDerivation, base, syb, template-haskell }:
mkDerivation {
pname = "type-level";
- version = "0.2.4";
- sha256 = "3bbdca0507187b72675dc182bb05da68d7e080693fa1ffe9fb961f693c81f7b1";
+ version = "0.3.0";
+ sha256 = "9976bcbbca38b208a6aa45e1046f82dc369175809d0b16850f65a026d66c890f";
libraryHaskellDepends = [ base syb template-haskell ];
homepage = "http://code.haskell.org/type-level";
description = "Type-level programming library";
@@ -238901,6 +241932,7 @@ self: {
test-framework-hunit test-framework-quickcheck2 test-framework-th
time tzdata unix vector
];
+ jailbreak = true;
preConfigure = "export TZDIR=${pkgs.tzdata}/share/zoneinfo";
homepage = "https://github.com/nilcons/haskell-tz";
description = "Efficient time zone handling";
@@ -238928,6 +241960,7 @@ self: {
test-framework-hunit test-framework-quickcheck2 test-framework-th
time tzdata unix vector
];
+ jailbreak = true;
preConfigure = "export TZDIR=${pkgs.tzdata}/share/zoneinfo";
homepage = "https://github.com/nilcons/haskell-tz";
description = "Efficient time zone handling";
@@ -240643,12 +243676,11 @@ self: {
}:
mkDerivation {
pname = "unordered-graphs";
- version = "0.1.0";
- sha256 = "9c14ac49ccc570dc93aadd45f89c82c92f6872a3077effc16825be81a2e7a9c7";
+ version = "0.1.0.1";
+ sha256 = "0b4e1024bef803a8a853273175d1735ab8155cc5f4f954a7883701b85a3a7aff";
libraryHaskellDepends = [
base deepseq dlist hashable unordered-containers
];
- jailbreak = true;
description = "Graph library using unordered-containers";
license = stdenv.lib.licenses.mit;
}) {};
@@ -242429,7 +245461,7 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "uuid-orphans" = callPackage
+ "uuid-orphans_1_3_11_1" = callPackage
({ mkDerivation, base, safecopy, text, uuid-types, web-routes }:
mkDerivation {
pname = "uuid-orphans";
@@ -242443,6 +245475,22 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "uuid-orphans" = callPackage
+ ({ mkDerivation, base, safecopy, text, th-lift, uuid-types
+ , web-routes
+ }:
+ mkDerivation {
+ pname = "uuid-orphans";
+ version = "1.4.1";
+ sha256 = "3261ff63bc6d4dd8365272b16e02801b48a14c5ac46cd46428ef169b4d7c1da6";
+ libraryHaskellDepends = [
+ base safecopy text th-lift uuid-types web-routes
+ ];
+ description = "Orphan instances for the UUID datatype";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"uuid-quasi" = callPackage
({ mkDerivation, base, template-haskell, uuid }:
mkDerivation {
@@ -242859,6 +245907,18 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "validity" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "validity";
+ version = "0.2.0.0";
+ sha256 = "4e6fb906ca4b7f35995ca2a700f58cfae6bead91319f30c3a2a35ca0ede08d93";
+ libraryHaskellDepends = [ base ];
+ homepage = "https://github.com/NorfairKing/validity#readme";
+ description = "Validity typeclass";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"value-supply" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -242967,14 +246027,13 @@ self: {
({ mkDerivation, base, hspec, QuickCheck, time, transformers }:
mkDerivation {
pname = "varying";
- version = "0.5.0.0";
- sha256 = "e41ea4ffce851b55736bac29a3aefe505979eb5e7c9d5794e5db892cb39e1cba";
+ version = "0.5.0.3";
+ sha256 = "a1eff74bb76c4a6b6af64f4490621f3c8a24deec7d44032dfb90e02fc2c73039";
isLibrary = true;
isExecutable = true;
- libraryHaskellDepends = [ base time transformers ];
+ libraryHaskellDepends = [ base transformers ];
executableHaskellDepends = [ base time transformers ];
testHaskellDepends = [ base hspec QuickCheck time transformers ];
- jailbreak = true;
homepage = "https://github.com/schell/varying";
description = "FRP through value streams and monadic splines";
license = stdenv.lib.licenses.mit;
@@ -244060,8 +247119,8 @@ self: {
({ mkDerivation, base, binary, data-default-class, deepseq }:
mkDerivation {
pname = "verbosity";
- version = "0.2.1.0";
- sha256 = "faa4121629a8e397572bb61a37e0dd95e281f68c5f779eb7ee756517796f39d3";
+ version = "0.2.2.0";
+ sha256 = "5193bd13b2dfd39794248b2b5d79e8b4b2a9681f06a6c196c1dd649363bfa868";
libraryHaskellDepends = [ base binary data-default-class deepseq ];
homepage = "https://github.com/trskop/verbosity";
description = "Simple enum that encodes application verbosity";
@@ -244409,11 +247468,14 @@ self: {
pname = "vinyl-plus";
version = "0.1.1";
sha256 = "f8a195c81456db7694f0e44966e2907d90a9417d231a3aece78e9e9a35905697";
+ revision = "1";
+ editedCabalFile = "008aeff291dd0e3ef96f715783d1d609590103068de788a927d53068353e6ef6";
libraryHaskellDepends = [
base contravariant ghc-prim profunctors transformers
unordered-containers vinyl
];
testHaskellDepends = [ base doctest vinyl ];
+ jailbreak = true;
homepage = "http://github.com/andrew/vinyl-plus";
description = "Vinyl records utilities";
license = stdenv.lib.licenses.bsd3;
@@ -245238,8 +248300,8 @@ self: {
}:
mkDerivation {
pname = "wai-app-file-cgi";
- version = "3.1.2";
- sha256 = "c6d035173d100d15f0d9e4aa360f49ec1d3347c7aef72f3b1e34f556974a5eb4";
+ version = "3.1.3";
+ sha256 = "6fce1db57f84faef811e8e08f48fc6bef6daa136a61dc8abc03b83908955af3b";
libraryHaskellDepends = [
array attoparsec attoparsec-conduit base blaze-builder blaze-html
bytestring case-insensitive conduit conduit-extra containers
@@ -245252,6 +248314,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;
@@ -246901,14 +249964,14 @@ self: {
"wai-http2-extra" = callPackage
({ mkDerivation, auto-update, base, bytestring, containers, doctest
- , wai, warp, word8
+ , http-types, wai, warp, word8
}:
mkDerivation {
pname = "wai-http2-extra";
- version = "0.0.0";
- sha256 = "594243350fc71df4007c9a7c804dce2cea08349ca316689fe27655b7f0f7d70d";
+ version = "0.0.1";
+ sha256 = "3f35e563d8232bad3d83050b8ec1946d6b3c33646468ded94b999d9c972513f6";
libraryHaskellDepends = [
- auto-update base bytestring containers wai warp word8
+ auto-update base bytestring containers http-types wai warp word8
];
testHaskellDepends = [ base doctest ];
homepage = "http://github.com/yesodweb/wai";
@@ -247407,7 +250470,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "wai-middleware-crowd" = callPackage
+ "wai-middleware-crowd_0_1_4" = callPackage
({ mkDerivation, authenticate, base, base64-bytestring, binary
, blaze-builder, bytestring, case-insensitive, clientsession
, containers, cookie, gitrev, http-client, http-client-tls
@@ -247434,6 +250497,36 @@ self: {
];
description = "Middleware and utilities for using Atlassian Crowd authentication";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "wai-middleware-crowd" = callPackage
+ ({ mkDerivation, authenticate, base, base64-bytestring, binary
+ , blaze-builder, bytestring, case-insensitive, clientsession
+ , containers, cookie, gitrev, http-client, http-client-tls
+ , http-reverse-proxy, http-types, optparse-applicative, resourcet
+ , template-haskell, text, time, transformers, unix-compat, vault
+ , wai, wai-app-static, wai-extra, warp
+ }:
+ mkDerivation {
+ pname = "wai-middleware-crowd";
+ version = "0.1.4.1";
+ sha256 = "b9bf4c1fe892232a8f3adcaca9407f81cadd2a8926e763eb2ecb35b2e9674d2e";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ authenticate base base64-bytestring binary blaze-builder bytestring
+ case-insensitive clientsession containers cookie http-client
+ http-client-tls http-types resourcet text time unix-compat vault
+ wai
+ ];
+ executableHaskellDepends = [
+ base bytestring clientsession gitrev http-client http-client-tls
+ http-reverse-proxy http-types optparse-applicative template-haskell
+ text transformers wai wai-app-static wai-extra warp
+ ];
+ description = "Middleware and utilities for using Atlassian Crowd authentication";
+ license = stdenv.lib.licenses.mit;
hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ];
}) {};
@@ -248498,7 +251591,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "wai-transformers" = callPackage
+ "wai-transformers_0_0_6" = callPackage
({ mkDerivation, base, exceptions, transformers, wai
, wai-websockets, websockets
}:
@@ -248511,6 +251604,22 @@ self: {
];
description = "Simple parameterization of Wai's Application type";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "wai-transformers" = callPackage
+ ({ mkDerivation, base, exceptions, transformers, wai
+ , wai-websockets, websockets
+ }:
+ mkDerivation {
+ pname = "wai-transformers";
+ version = "0.0.7";
+ sha256 = "1a1801a2048eb84808a09e44cb899d6cc689948619eeeea005e312ea5a2fe32c";
+ libraryHaskellDepends = [
+ base exceptions transformers wai wai-websockets websockets
+ ];
+ description = "Simple parameterization of Wai's Application type";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"wai-util" = callPackage
@@ -251258,10 +254367,9 @@ self: {
({ mkDerivation, base, primitive, vector }:
mkDerivation {
pname = "webrtc-vad";
- version = "0.1.0.2";
- sha256 = "d3ad3ba58ca2389102be09bda8bca69a525c766ada824898cf833d1993368293";
+ version = "0.1.0.3";
+ sha256 = "89cc6691d314c8c2ae7801bf56e1cca0252617536af4ac94acb92ad6d560d453";
libraryHaskellDepends = [ base primitive vector ];
- jailbreak = true;
description = "Easy voice activity detection";
license = stdenv.lib.licenses.mit;
}) {};
@@ -252087,6 +255195,25 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {kernel32 = null; ws2_32 = null;};
+ "wire-streams" = callPackage
+ ({ mkDerivation, base, binary, bytestring, Cabal
+ , cabal-test-quickcheck, cereal, io-streams, QuickCheck
+ }:
+ mkDerivation {
+ pname = "wire-streams";
+ version = "0.0.2.0";
+ sha256 = "2b03e9c88767a371d59ca5d941db3c3f5b11ba1b8a20606732a706acebe6dd4f";
+ libraryHaskellDepends = [
+ base binary bytestring cereal io-streams
+ ];
+ testHaskellDepends = [
+ base binary bytestring Cabal cabal-test-quickcheck cereal
+ io-streams QuickCheck
+ ];
+ description = "Use cereal or binary with io-streams";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"wiring" = callPackage
({ mkDerivation, base, hspec, mtl, QuickCheck, template-haskell
, transformers
@@ -254719,7 +257846,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "xlsx" = callPackage
+ "xlsx_0_2_2_2" = callPackage
({ mkDerivation, base, base64-bytestring, binary-search, bytestring
, conduit, containers, data-default, extra, filepath, HUnit, lens
, mtl, network-uri, old-locale, raw-strings-qq, safe, smallcheck
@@ -254744,6 +257871,33 @@ 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, base64-bytestring, binary-search, bytestring
+ , conduit, containers, data-default, Diff, extra, filepath, groom
+ , lens, mtl, network-uri, old-locale, raw-strings-qq, safe
+ , smallcheck, tasty, tasty-hunit, tasty-smallcheck, text, time
+ , transformers, vector, xml-conduit, zip-archive, zlib
+ }:
+ mkDerivation {
+ pname = "xlsx";
+ version = "0.2.3";
+ sha256 = "c1170f83d96c4fd500b2a09aa016d6e52668cabf5442e5ba7aa5c64b0e817563";
+ libraryHaskellDepends = [
+ base base64-bytestring binary-search bytestring conduit containers
+ data-default extra filepath lens mtl network-uri old-locale safe
+ text time transformers vector xml-conduit zip-archive zlib
+ ];
+ testHaskellDepends = [
+ base bytestring containers Diff groom lens mtl raw-strings-qq
+ 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_0_1_0_0" = callPackage
@@ -255327,13 +258481,12 @@ self: {
}) {};
"xml-extractors" = callPackage
- ({ mkDerivation, base, mtl, safe, transformers, xml }:
+ ({ mkDerivation, base, mtl, transformers, xml }:
mkDerivation {
pname = "xml-extractors";
- version = "0.4.0.1";
- sha256 = "38ffa6ab354dcaddbdd1ca4c187418715fd7d7de77abc4861c9840c88bce1e79";
- libraryHaskellDepends = [ base mtl safe transformers xml ];
- jailbreak = true;
+ version = "0.4.0.2";
+ sha256 = "aa2705b0ac32a4a88b50f377fa3d8dc7f506c8503d97136bf92bcb3863a07f47";
+ libraryHaskellDepends = [ base mtl transformers xml ];
homepage = "https://github.com/holmisen/xml-extractors";
description = "Extension to the xml package to extract data from parsed xml";
license = stdenv.lib.licenses.bsd3;
@@ -263723,23 +266876,20 @@ self: {
}) {};
"yesod-worker" = callPackage
- ({ mkDerivation, base, containers, fast-logger, monad-control
- , monad-logger, persistent, resourcet, stm, template-haskell
- , transformers, transformers-base, yesod, yesod-core
+ ({ mkDerivation, base, blaze-markup, bytestring, containers, hedis
+ , keenser, thyme, yesod
}:
mkDerivation {
pname = "yesod-worker";
- version = "0.0.1";
- sha256 = "6dde8ff89cd2a4832c6f24172e3694b5a4f8767ad2315c6734b58a0e61e095e7";
+ version = "0.1.0.0";
+ sha256 = "f8076954537f74a098644422a3193d184308559cd35bc980f2ab7663b5f8cada";
libraryHaskellDepends = [
- base containers fast-logger monad-control monad-logger persistent
- resourcet stm template-haskell transformers transformers-base yesod
- yesod-core
+ base blaze-markup bytestring containers hedis keenser thyme yesod
];
- jailbreak = true;
- homepage = "https://github.com/jamesdabbs/yesod-worker";
- description = "Drop-in(ish) background worker system for Yesod apps";
- license = stdenv.lib.licenses.gpl3;
+ testHaskellDepends = [ base ];
+ homepage = "https://github.com/jamesdabbs/yesod-worker#readme";
+ description = "Initial project template from stack";
+ license = stdenv.lib.licenses.bsd3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
@@ -264351,8 +267501,8 @@ self: {
}:
mkDerivation {
pname = "yst";
- version = "0.5.1";
- sha256 = "603afd33877c086221b0914463bb92943df49aecc9e4a7fb58f4f35386199f71";
+ version = "0.5.1.1";
+ sha256 = "08e775b23abda46a504e0c3787bdb89e47a0e9aee0984582298f2f73a6c163ac";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -264360,7 +267510,6 @@ 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";
@@ -264967,18 +268116,19 @@ self: {
"zip-archive" = callPackage
({ mkDerivation, array, base, binary, bytestring, containers
, digest, directory, filepath, HUnit, mtl, old-time, pretty
- , process, text, time, unix, zip, zlib
+ , process, temporary, text, time, unix, zip, zlib
}:
mkDerivation {
pname = "zip-archive";
- version = "0.3.0.2";
- sha256 = "c5367d9bc72d3ceace0508800bab08a120e308ea1f4f5c8d5843fcca36b15313";
+ version = "0.3.0.4";
+ sha256 = "67a463b23e1694ad7d4d1f6815b009288c9b585bc411eb1754396b830eba8f92";
libraryHaskellDepends = [
array base binary bytestring containers digest directory filepath
mtl old-time pretty text time unix zlib
];
testHaskellDepends = [
- base bytestring directory HUnit old-time process time unix
+ base bytestring directory HUnit old-time process temporary time
+ unix
];
testToolDepends = [ zip ];
homepage = "http://github.com/jgm/zip-archive";
diff --git a/pkgs/development/interpreters/elixir/default.nix b/pkgs/development/interpreters/elixir/default.nix
index fe78b966080..fc3070e55f1 100644
--- a/pkgs/development/interpreters/elixir/default.nix
+++ b/pkgs/development/interpreters/elixir/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
name = "elixir-${version}";
- version = "1.3.0";
+ version = "1.3.1";
src = fetchFromGitHub {
owner = "elixir-lang";
repo = "elixir";
rev = "v${version}";
- sha256 = "06y8v239d5r3zr9s9mw19ws99qm7niicz69pqhawvg5qm4qxhvkr";
+ sha256 = "0pihqgsnddrhhcpiphz170wgwlc59pd492iy4f66dajapm5k329d";
};
buildInputs = [ erlang rebar makeWrapper ];
diff --git a/pkgs/development/interpreters/erlang/R18.nix b/pkgs/development/interpreters/erlang/R18.nix
index 0929495ee1b..34896046e31 100644
--- a/pkgs/development/interpreters/erlang/R18.nix
+++ b/pkgs/development/interpreters/erlang/R18.nix
@@ -1,5 +1,5 @@
-{ stdenv, fetchurl, perl, gnum4, ncurses, openssl
-, gnused, gawk, makeWrapper
+{ stdenv, fetchurl, fetchFromGitHub, perl, gnum4, ncurses, openssl
+, gnused, gawk, autoconf, libxslt, libxml2, makeWrapper
, Carbon, Cocoa
, odbcSupport ? false, unixODBC ? null
, wxSupport ? true, mesa ? null, wxGTK ? null, xorg ? null, wxmac ? null
@@ -20,15 +20,21 @@ with stdenv.lib;
stdenv.mkDerivation rec {
name = "erlang-" + version + "${optionalString odbcSupport "-odbc"}"
+ "${optionalString javacSupport "-javac"}";
- version = "18.2";
+ version = "18.3.4";
- src = fetchurl {
- url = "http://www.erlang.org/download/otp_src_${version}.tar.gz";
- sha256 = "1l1zzf245w1abiylll8pjm0pppqwvvw4fihknqkcybkx62n2ipj3";
+ # Minor OTP releases are not always released as tarbals at
+ # http://erlang.org/download/ So we have to download from
+ # github. And for the same reason we can't use a prebuilt manpages
+ # tarball and need to build manpages ourselves.
+ src = fetchFromGitHub {
+ owner = "erlang";
+ repo = "otp";
+ rev = "OTP-${version}";
+ sha256 = "1f8nhybzsdmjvkmkzpjj3wj9jzx8mihlvi6gfp47fxkalansz39h";
};
buildInputs =
- [ perl gnum4 ncurses openssl makeWrapper
+ [ perl gnum4 ncurses openssl autoconf libxslt libxml2 makeWrapper
] ++ optionals wxSupport (if stdenv.isDarwin then [ wxmac ] else [ mesa wxGTK xorg.libX11 ])
++ optional odbcSupport unixODBC
++ optional javacSupport openjdk
@@ -36,11 +42,23 @@ stdenv.mkDerivation rec {
debugInfo = enableDebugInfo;
- patchPhase = '' sed -i "s@/bin/rm@rm@" lib/odbc/configure erts/configure '';
+ rmAndPwdPatch = fetchurl {
+ url = "https://github.com/erlang/otp/commit/98b8650d22e94a5ff839170833f691294f6276d0.patch";
+ sha256 = "0cd5pkqrigiqz6cyma5irqwzn0bi17k371k9vlg8ir31h3zmqfip";
+ };
+
+ envAndCpPatch = fetchurl {
+ url = "https://github.com/binarin/otp/commit/9f9841eb7327c9fe73e84e197fd2965a97b639cf.patch";
+ sha256 = "10h5348p6g279b4q01i5jdqlljww5chcvrx5b4b0dv79pk0p0m9f";
+ };
+
+ patches = [
+ rmAndPwdPatch
+ envAndCpPatch
+ ];
preConfigure = ''
- export HOME=$PWD/../
- sed -e s@/bin/pwd@pwd@g -i otp_build
+ ./otp_build autoconf
'';
configureFlags= [
@@ -51,19 +69,12 @@ stdenv.mkDerivation rec {
++ optional javacSupport "--with-javac"
++ optional stdenv.isDarwin "--enable-darwin-64bit";
- postInstall = let
- manpages = fetchurl {
- url = "http://www.erlang.org/download/otp_doc_man_${version}.tar.gz";
- sha256 = "0abaqnw6hkr1h1zw6cdqwg2k7rfmj2b9sqqldnqf3qaj0shz759n";
- };
- in ''
+ # install-docs will generate and install manpages and html docs
+ # (PDFs are generated only when fop is available).
+ installTargets = "install install-docs";
+
+ postInstall = ''
ln -s $out/lib/erlang/lib/erl_interface*/bin/erl_call $out/bin/erl_call
- tar xf "${manpages}" -C "$out/lib/erlang"
- for i in "$out"/lib/erlang/man/man[0-9]/*.[0-9]; do
- prefix="''${i%/*}"
- ensureDir "$out/share/man/''${prefix##*/}"
- ln -s "$i" "$out/share/man/''${prefix##*/}/''${i##*/}erl"
- done
'';
# Some erlang bin/ scripts run sed and awk
diff --git a/pkgs/development/interpreters/lfe/default.nix b/pkgs/development/interpreters/lfe/default.nix
new file mode 100644
index 00000000000..f3a54aef8ab
--- /dev/null
+++ b/pkgs/development/interpreters/lfe/default.nix
@@ -0,0 +1,62 @@
+{ stdenv, fetchFromGitHub, erlang, makeWrapper, coreutils, bash }:
+
+stdenv.mkDerivation rec {
+ name = "lfe-${version}";
+ version = "1.1.1";
+
+ src = fetchFromGitHub {
+ owner = "rvirding";
+ repo = "lfe";
+ rev = version;
+ sha256 = "0w1vpjqj8ni43gi84i0mcml4gfaqhmmd9s46di37cngpdw86i3bz";
+ };
+
+ buildInputs = [ erlang makeWrapper ];
+
+ setupHook = ./setup-hook.sh;
+
+ # These installPhase tricks are based on Elixir's Makefile.
+ # TODO: Make, upload, and apply a patch.
+ installPhase = ''
+ local libdir=$out/lib/lfe
+ local ebindir=$libdir/ebin
+ local bindir=$libdir/bin
+
+ rm -Rf $ebindir
+ install -m755 -d $ebindir
+ install -m644 ebin/* $ebindir
+
+ install -m755 -d $bindir
+ for bin in bin/lfe{,c,doc,script}; do install -m755 $bin $bindir; done
+
+ install -m755 -d $out/bin
+ for file in $bindir/*; do ln -sf $file $out/bin/; done
+ '';
+
+ # Thanks again, Elixir.
+ postFixup = ''
+ # LFE binaries are shell scripts which run erl and lfe.
+ # Add some stuff to PATH so the scripts can run without problems.
+ for f in $out/bin/*; do
+ wrapProgram $f \
+ --prefix PATH ":" "${erlang}/bin:${coreutils}/bin:${bash}/bin:$out/bin"
+ substituteInPlace $f --replace "/usr/bin/env" "${coreutils}/bin/env"
+ done
+ '';
+
+ meta = with stdenv.lib; {
+ description = "The best of Erlang and of Lisp; at the same time!";
+ longDescription = ''
+ LFE, Lisp Flavoured Erlang, is a lisp syntax front-end to the Erlang
+ compiler. Code produced with it is compatible with "normal" Erlang
+ code. An LFE evaluator and shell is also included.
+ '';
+
+ homepage = "http://lfe.io";
+ downloadPage = "https://github.com/rvirding/lfe/releases";
+
+ license = licenses.asl20;
+ maintainers = with maintainers; [ yurrriq ];
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/development/interpreters/lfe/setup-hook.sh b/pkgs/development/interpreters/lfe/setup-hook.sh
new file mode 100644
index 00000000000..2405dcea15f
--- /dev/null
+++ b/pkgs/development/interpreters/lfe/setup-hook.sh
@@ -0,0 +1,5 @@
+addLfeLibPath() {
+ addToSearchPath ERL_LIBS $1/lib/lfe/lib
+}
+
+envHooks+=(addLfeLibPath)
diff --git a/pkgs/development/interpreters/octave/default.nix b/pkgs/development/interpreters/octave/default.nix
index e302f9e55cb..68365b27a44 100644
--- a/pkgs/development/interpreters/octave/default.nix
+++ b/pkgs/development/interpreters/octave/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchurl, gfortran, readline, ncurses, perl, flex, texinfo, qhull
, libsndfile, libX11, graphicsmagick, pcre, pkgconfig, mesa, fltk
-, fftw, fftwSinglePrec, zlib, curl, qrupdate, openblas
+, fftw, fftwSinglePrec, zlib, curl, qrupdate, openblas, arpack, libwebp
, qt ? null, qscintilla ? null, ghostscript ? null, llvm ? null, hdf5 ? null,glpk ? null
, suitesparse ? null, gnuplot ? null, jdk ? null, python ? null
}:
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
buildInputs = [ gfortran readline ncurses perl flex texinfo qhull libX11
graphicsmagick pcre pkgconfig mesa fltk zlib curl openblas libsndfile
- fftw fftwSinglePrec qrupdate ]
+ fftw fftwSinglePrec qrupdate arpack libwebp ]
++ (stdenv.lib.optional (qt != null) qt)
++ (stdenv.lib.optional (qscintilla != null) qscintilla)
++ (stdenv.lib.optional (ghostscript != null) ghostscript)
@@ -38,9 +38,10 @@ stdenv.mkDerivation rec {
++ (stdenv.lib.optional (jdk != null) jdk)
++ (stdenv.lib.optional (gnuplot != null) gnuplot)
++ (stdenv.lib.optional (python != null) python)
+ ++ (stdenv.lib.optionals (!stdenv.isDarwin) [mesa libX11])
;
- doCheck = true;
+ doCheck = !stdenv.isDarwin;
enableParallelBuilding = true;
@@ -50,7 +51,9 @@ stdenv.mkDerivation rec {
"--with-blas=openblas"
"--with-lapack=openblas"
]
- ++ stdenv.lib.optional openblas.blas64 "--enable-64";
+ ++ stdenv.lib.optional openblas.blas64 "--enable-64"
+ ++ stdenv.lib.optionals stdenv.isDarwin ["--with-x=no"]
+ ;
# Keep a copy of the octave tests detailed results in the output
# derivation, because someone may care
@@ -67,6 +70,6 @@ stdenv.mkDerivation rec {
homepage = http://octave.org/;
license = stdenv.lib.licenses.gpl3Plus;
maintainers = with stdenv.lib.maintainers; [viric raskin];
- platforms = with stdenv.lib.platforms; linux;
+ platforms = with stdenv.lib.platforms; linux ++ darwin;
};
}
diff --git a/pkgs/development/interpreters/python/2.6/default.nix b/pkgs/development/interpreters/python/2.6/default.nix
index 48712cc21b9..6641eb24b24 100644
--- a/pkgs/development/interpreters/python/2.6/default.nix
+++ b/pkgs/development/interpreters/python/2.6/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, zlib ? null, zlibSupport ? true, bzip2, includeModules ? false
+{ stdenv, fetchurl, zlib ? null, zlibSupport ? true, bzip2, less, includeModules ? false
, sqlite, tcl, tk, xlibsWrapper, openssl, readline, db, ncurses, gdbm, self, callPackage
, python26Packages }:
@@ -53,6 +53,8 @@ let
[ bzip2 openssl ]++ optionals includeModules [ db openssl ncurses gdbm readline xlibsWrapper tcl tk sqlite ]
++ optional zlibSupport zlib;
+ propagatedBuildInputs = [ less ];
+
mkPaths = paths: {
C_INCLUDE_PATH = makeSearchPathOutput "dev" "include" paths;
LIBRARY_PATH = makeLibraryPath paths;
@@ -64,8 +66,8 @@ let
name = "python${if includeModules then "" else "-minimal"}-${version}";
pythonVersion = majorVersion;
- inherit majorVersion version src patches buildInputs preConfigure
- configureFlags;
+ inherit majorVersion version src patches buildInputs propagatedBuildInputs
+ preConfigure configureFlags;
inherit (mkPaths buildInputs) C_INCLUDE_PATH LIBRARY_PATH;
diff --git a/pkgs/development/interpreters/python/2.7/default.nix b/pkgs/development/interpreters/python/2.7/default.nix
index e47fc82f4e8..aca88f504a0 100644
--- a/pkgs/development/interpreters/python/2.7/default.nix
+++ b/pkgs/development/interpreters/python/2.7/default.nix
@@ -1,5 +1,6 @@
{ stdenv, fetchurl, self, callPackage, python27Packages
, bzip2, openssl, gettext
+, less
, includeModules ? false
@@ -22,11 +23,11 @@ with stdenv.lib;
let
majorVersion = "2.7";
- version = "${majorVersion}.11";
+ version = "${majorVersion}.12";
src = fetchurl {
url = "http://www.python.org/ftp/python/${version}/Python-${version}.tar.xz";
- sha256 = "0iiz844riiznsyhhyy962710pz228gmhv8qi3yk4w4jhmx2lqawn";
+ sha256 = "0y7rl603vmwlxm6ilkhc51rx2mfj14ckcz40xxgs0ljnvlhp30yp";
};
patches =
@@ -108,7 +109,7 @@ let
++ optional zlibSupport zlib
++ optional stdenv.isDarwin CF;
- propagatedBuildInputs = optional stdenv.isDarwin configd;
+ propagatedBuildInputs = [ less ] ++ optional stdenv.isDarwin configd;
mkPaths = paths: {
C_INCLUDE_PATH = makeSearchPathOutput "dev" "include" paths;
diff --git a/pkgs/development/interpreters/python/2.7/no-ldconfig.patch b/pkgs/development/interpreters/python/2.7/no-ldconfig.patch
index 10284c7b374..44c38fb2953 100644
--- a/pkgs/development/interpreters/python/2.7/no-ldconfig.patch
+++ b/pkgs/development/interpreters/python/2.7/no-ldconfig.patch
@@ -1,7 +1,8 @@
-diff -ru -x '*~' Python-2.7.11-orig/Lib/ctypes/util.py Python-2.7.11/Lib/ctypes/util.py
---- Python-2.7.11-orig/Lib/ctypes/util.py 2015-12-05 20:46:56.000000000 +0100
-+++ Python-2.7.11/Lib/ctypes/util.py 2016-07-01 14:24:50.714223450 +0200
-@@ -212,31 +212,7 @@
+diff --git a/Lib/ctypes/util.py b/Lib/ctypes/util.py
+index b2c514d..a6eca81 100644
+--- a/Lib/ctypes/util.py
++++ b/Lib/ctypes/util.py
+@@ -207,31 +207,7 @@ elif os.name == "posix":
else:
def _findSoname_ldconfig(name):
@@ -21,7 +22,7 @@ diff -ru -x '*~' Python-2.7.11-orig/Lib/ctypes/util.py Python-2.7.11/Lib/ctypes/
-
- # XXX assuming GLIBC's ldconfig (with option -p)
- expr = r'\s+(lib%s\.[^\s]+)\s+\(%s' % (re.escape(name), abi_type)
-- f = os.popen('/sbin/ldconfig -p 2>/dev/null')
+- f = os.popen('LC_ALL=C LANG=C /sbin/ldconfig -p 2>/dev/null')
- try:
- data = f.read()
- finally:
@@ -34,10 +35,11 @@ diff -ru -x '*~' Python-2.7.11-orig/Lib/ctypes/util.py Python-2.7.11/Lib/ctypes/
def find_library(name):
return _findSoname_ldconfig(name) or _get_soname(_findLib_gcc(name))
-diff -ru -x '*~' Python-2.7.11-orig/Lib/uuid.py Python-2.7.11/Lib/uuid.py
---- Python-2.7.11-orig/Lib/uuid.py 2015-12-05 20:47:09.000000000 +0100
-+++ Python-2.7.11/Lib/uuid.py 2016-07-01 14:33:14.360446897 +0200
-@@ -437,57 +437,7 @@
+diff --git a/Lib/uuid.py b/Lib/uuid.py
+index 7432032..9829d18 100644
+--- a/Lib/uuid.py
++++ b/Lib/uuid.py
+@@ -437,57 +437,7 @@ def _netbios_getnode():
return ((bytes[0]<<40L) + (bytes[1]<<32L) + (bytes[2]<<24L) +
(bytes[3]<<16L) + (bytes[4]<<8L) + bytes[5])
diff --git a/pkgs/development/interpreters/python/3.3/default.nix b/pkgs/development/interpreters/python/3.3/default.nix
index 8c16995d5cc..8a36e03c784 100644
--- a/pkgs/development/interpreters/python/3.3/default.nix
+++ b/pkgs/development/interpreters/python/3.3/default.nix
@@ -2,6 +2,7 @@
, bzip2
, db
, gdbm
+, less
, libX11, xproto
, lzma
, ncurses
@@ -27,6 +28,11 @@ let
buildInputs = filter (p: p != null) [
zlib bzip2 lzma gdbm sqlite db readline ncurses openssl tcl tk libX11 xproto
];
+
+ propagatedBuildInputs = [
+ less
+ ];
+
in
stdenv.mkDerivation {
name = "python3-${version}";
@@ -34,6 +40,7 @@ stdenv.mkDerivation {
inherit majorVersion version;
inherit buildInputs;
+ inherit propagatedBuildInputs;
src = fetchurl {
url = "http://www.python.org/ftp/python/${version}/Python-${version}.tar.xz";
diff --git a/pkgs/development/interpreters/python/3.4/default.nix b/pkgs/development/interpreters/python/3.4/default.nix
index 1cd7f58e95e..7ea6adc4370 100644
--- a/pkgs/development/interpreters/python/3.4/default.nix
+++ b/pkgs/development/interpreters/python/3.4/default.nix
@@ -2,6 +2,7 @@
, bzip2
, db
, gdbm
+, less
, libX11, xproto
, lzma
, ncurses
@@ -42,6 +43,11 @@ let
libX11
xproto
] ++ optionals stdenv.isDarwin [ CF configd ];
+
+ propagatedBuildInputs = [
+ less
+ ];
+
in
stdenv.mkDerivation {
name = "python3-${fullVersion}";
@@ -49,6 +55,7 @@ stdenv.mkDerivation {
inherit majorVersion version;
inherit buildInputs;
+ inherit propagatedBuildInputs;
src = fetchurl {
url = "http://www.python.org/ftp/python/${version}/Python-${fullVersion}.tar.xz";
diff --git a/pkgs/development/interpreters/python/3.5/default.nix b/pkgs/development/interpreters/python/3.5/default.nix
index e0adad2bae2..21716c87386 100644
--- a/pkgs/development/interpreters/python/3.5/default.nix
+++ b/pkgs/development/interpreters/python/3.5/default.nix
@@ -2,6 +2,7 @@
, bzip2
, db
, gdbm
+, less
, libX11, xproto
, lzma
, ncurses
@@ -42,6 +43,11 @@ let
libX11
xproto
] ++ optionals stdenv.isDarwin [ CF configd ];
+
+ propagatedBuildInputs = [
+ less
+ ];
+
in
stdenv.mkDerivation {
name = "python3-${fullVersion}";
@@ -49,6 +55,7 @@ stdenv.mkDerivation {
inherit majorVersion version;
inherit buildInputs;
+ inherit propagatedBuildInputs;
src = fetchurl {
url = "http://www.python.org/ftp/python/${version}/Python-${fullVersion}.tar.xz";
diff --git a/pkgs/development/interpreters/python/3.6/default.nix b/pkgs/development/interpreters/python/3.6/default.nix
new file mode 100644
index 00000000000..9515e1587d7
--- /dev/null
+++ b/pkgs/development/interpreters/python/3.6/default.nix
@@ -0,0 +1,145 @@
+{ stdenv, fetchurl
+, glibc
+, bzip2
+, db
+, gdbm
+, less
+, libX11, xproto
+, lzma
+, ncurses
+, openssl
+, readline
+, sqlite
+, tcl, tk
+, zlib
+, callPackage
+, self
+, python36Packages
+
+, CF, configd
+}:
+
+assert readline != null -> ncurses != null;
+
+with stdenv.lib;
+
+let
+ majorVersion = "3.6";
+ pythonVersion = majorVersion;
+ version = "${majorVersion}.0a3";
+ fullVersion = "${version}";
+
+ buildInputs = filter (p: p != null) [
+ glibc
+ zlib
+ bzip2
+ lzma
+ gdbm
+ sqlite
+ db
+ readline
+ ncurses
+ openssl
+ tcl
+ tk
+ libX11
+ xproto
+ ] ++ optionals stdenv.isDarwin [ CF configd ];
+
+ propagatedBuildInputs = [
+ less
+ ];
+
+in
+stdenv.mkDerivation {
+ name = "python3-${fullVersion}";
+ pythonVersion = majorVersion;
+ inherit majorVersion version;
+
+ inherit buildInputs;
+ inherit propagatedBuildInputs;
+
+ src = fetchurl {
+ url = "https://www.python.org/ftp/python/${majorVersion}.0/Python-${fullVersion}.tar.xz";
+ sha256 = "08c3598bwihibwca9lwxq923sjq9shvgv3wxv4vkga2n6hf63l1c";
+ };
+
+ NIX_LDFLAGS = optionalString stdenv.isLinux "-lgcc_s";
+
+ prePatch = optionalString stdenv.isDarwin ''
+ substituteInPlace configure --replace '`/usr/bin/arch`' '"i386"'
+ '';
+
+ preConfigure = ''
+ for i in /usr /sw /opt /pkg; do # improve purity
+ substituteInPlace ./setup.py --replace $i /no-such-path
+ done
+ ${optionalString stdenv.isDarwin ''
+ export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -msse2"
+ export MACOSX_DEPLOYMENT_TARGET=10.6
+ ''}
+
+ substituteInPlace ./Lib/plat-generic/regen --replace "/usr/include" ${glibc}/include
+
+ configureFlagsArray=( --enable-shared --with-threads
+ CPPFLAGS="${concatStringsSep " " (map (p: "-I${getDev p}/include") buildInputs)}"
+ LDFLAGS="${concatStringsSep " " (map (p: "-L${getLib p}/lib") buildInputs)}"
+ LIBS="${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}"
+ )
+ '';
+
+ setupHook = ./setup-hook.sh;
+
+ postInstall = ''
+ # needed for some packages, especially packages that backport functionality
+ # to 2.x from 3.x
+ for item in $out/lib/python${majorVersion}/test/*; do
+ if [[ "$item" != */test_support.py* ]]; then
+ rm -rf "$item"
+ else
+ echo $item
+ fi
+ done
+ touch $out/lib/python${majorVersion}/test/__init__.py
+
+ ln -s "$out/include/python${majorVersion}m" "$out/include/python${majorVersion}"
+ paxmark E $out/bin/python${majorVersion}
+ '';
+
+ passthru = rec {
+ zlibSupport = zlib != null;
+ sqliteSupport = sqlite != null;
+ dbSupport = db != null;
+ readlineSupport = readline != null;
+ opensslSupport = openssl != null;
+ tkSupport = (tk != null) && (tcl != null) && (libX11 != null) && (xproto != null);
+ libPrefix = "python${majorVersion}";
+ executable = "python${majorVersion}m";
+ buildEnv = callPackage ../wrapper.nix { python = self; };
+ withPackages = import ../with-packages.nix { inherit buildEnv; pythonPackages = python36Packages; };
+ isPy3 = true;
+ isPy35 = true;
+ is_py3k = true; # deprecated
+ sitePackages = "lib/${libPrefix}/site-packages";
+ interpreter = "${self}/bin/${executable}";
+ };
+
+ enableParallelBuilding = true;
+
+ meta = {
+ homepage = http://python.org;
+ description = "A high-level dynamically-typed programming language";
+ longDescription = ''
+ Python is a remarkably powerful dynamic programming language that
+ is used in a wide variety of application domains. Some of its key
+ distinguishing features include: clear, readable syntax; strong
+ introspection capabilities; intuitive object orientation; natural
+ expression of procedural code; full modularity, supporting
+ hierarchical packages; exception-based error handling; and very
+ high level dynamic data types.
+ '';
+ license = licenses.psfl;
+ platforms = with platforms; linux ++ darwin;
+ maintainers = with maintainers; [ chaoflow domenkozar cstrahan kragniz ];
+ };
+}
diff --git a/pkgs/development/interpreters/python/3.6/setup-hook.sh b/pkgs/development/interpreters/python/3.6/setup-hook.sh
new file mode 100644
index 00000000000..26a0d57bc87
--- /dev/null
+++ b/pkgs/development/interpreters/python/3.6/setup-hook.sh
@@ -0,0 +1,15 @@
+addPythonPath() {
+ addToSearchPathWithCustomDelimiter : PYTHONPATH $1/lib/python3.6/site-packages
+}
+
+toPythonPath() {
+ local paths="$1"
+ local result=
+ for i in $paths; do
+ p="$i/lib/python3.6/site-packages"
+ result="${result}${result:+:}$p"
+ done
+ echo $result
+}
+
+envHooks+=(addPythonPath)
diff --git a/pkgs/development/interpreters/spidermonkey/17.0.nix b/pkgs/development/interpreters/spidermonkey/17.0.nix
index 5cd3ff0cca6..cbe2c47594d 100644
--- a/pkgs/development/interpreters/spidermonkey/17.0.nix
+++ b/pkgs/development/interpreters/spidermonkey/17.0.nix
@@ -42,7 +42,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
- doCheck = !stdenv.isArm; # fails on v7 with "Alignment trap: not handling instruction" in kernel log
+ doCheck = true;
preCheck = ''
rm jit-test/tests/sunspider/check-date-format-tofte.js # https://bugzil.la/600522
diff --git a/pkgs/development/interpreters/spidermonkey/185-1.0.0.nix b/pkgs/development/interpreters/spidermonkey/185-1.0.0.nix
index 779f0ef26d4..b3fa96d756a 100644
--- a/pkgs/development/interpreters/spidermonkey/185-1.0.0.nix
+++ b/pkgs/development/interpreters/spidermonkey/185-1.0.0.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, nspr, perl, python, zip }:
+{ stdenv, autoconf213, fetchurl, pkgconfig, nspr, perl, python, zip }:
stdenv.mkDerivation rec {
version = "185-1.0.0";
@@ -12,17 +12,21 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [ nspr ];
buildInputs = [ pkgconfig perl python zip ];
+ nativeBuildInputs = if stdenv.isArm then [ autoconf213 ] else [];
postUnpack = "sourceRoot=\${sourceRoot}/js/src";
preConfigure = ''
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${nspr.dev}/include/nspr"
export LIBXUL_DIST=$out
+ ${if stdenv.isArm then "autoreconf --verbose --force" else ""}
'';
- # Explained below in configureFlags for ARM
patches = stdenv.lib.optionals stdenv.isArm [
+ # Explained below in configureFlags for ARM
./findvanilla.patch
+ # Fix for hard float flags.
+ ./arm-flags.patch
];
patchFlags = "-p3";
@@ -33,12 +37,15 @@ stdenv.mkDerivation rec {
# of polkit, which is what matters most, it does not override the allocator
# so the failure of that test does not matter much.
configureFlags = [ "--enable-threadsafe" "--with-system-nspr" ] ++
- stdenv.lib.optionals stdenv.isArm [
+ stdenv.lib.optionals (stdenv.system == "armv5tel-linux") [
"--with-cpu-arch=armv5t"
"--disable-tracejit" ];
# hack around a make problem, see https://github.com/NixOS/nixpkgs/issues/1279#issuecomment-29547393
- preBuild = "touch -- {.,shell,jsapi-tests}/{-lpthread,-ldl}";
+ preBuild = ''
+ touch -- {.,shell,jsapi-tests}/{-lpthread,-ldl}
+ ${if stdenv.isArm then "rm -r jit-test/tests/jaeger/bug563000" else ""}
+ '';
enableParallelBuilding = true;
diff --git a/pkgs/development/interpreters/spidermonkey/31.5.nix b/pkgs/development/interpreters/spidermonkey/31.5.nix
index 4ee6658f59c..0a71dc567b2 100644
--- a/pkgs/development/interpreters/spidermonkey/31.5.nix
+++ b/pkgs/development/interpreters/spidermonkey/31.5.nix
@@ -18,6 +18,7 @@ stdenv.mkDerivation rec {
postUnpack = "sourceRoot=\${sourceRoot}/js/src";
preConfigure = ''
+ export CXXFLAGS="-fpermissive"
export LIBXUL_DIST=$out
'';
@@ -26,9 +27,6 @@ stdenv.mkDerivation rec {
"--with-system-ffi"
"--enable-readline"
- # there is at least one unfixed issue building the tests, so I didn't bother
- "--disable-tests"
-
# enabling these because they're wanted by 0ad. They may or may
# not be good defaults for other uses.
"--enable-gcgenerational"
@@ -43,9 +41,6 @@ stdenv.mkDerivation rec {
# to re-enable parallel builds if the source revision changes.
enableParallelBuilding = false;
- # see comment by --disable-tests
- doCheck = false;
-
postFixup = ''
# The headers are symlinks to a directory that doesn't get put
# into $out, so they end up broken. Fix that by just resolving the
diff --git a/pkgs/development/interpreters/spidermonkey/arm-flags.patch b/pkgs/development/interpreters/spidermonkey/arm-flags.patch
new file mode 100644
index 00000000000..721aff154e3
--- /dev/null
+++ b/pkgs/development/interpreters/spidermonkey/arm-flags.patch
@@ -0,0 +1,342 @@
+From: Mike Hommey
+Date: Wed, 27 Apr 2011 08:58:01 +0200
+Subject: Bug 626035 - Modify the way arm compiler flags are set in configure
+
+---
+ configure.in | 292 ++++++++++++++++++++++++++++++++-------------------
+ js/src/configure.in | 284 ++++++++++++++++++++++++++++++++-----------------
+ 2 files changed, 372 insertions(+), 204 deletions(-)
+
+Index: mozjs-1.8.5-1.0.0+dfsg/js/src/configure.in
+===================================================================
+--- mozjs-1.8.5-1.0.0+dfsg.orig/js/src/configure.in 2012-01-21 15:57:37.507703219 +0100
++++ mozjs-1.8.5-1.0.0+dfsg/js/src/configure.in 2012-01-21 15:58:04.951703302 +0100
+@@ -3535,34 +3535,6 @@
+ AC_CHECK_LIB(socket, socket)
+ esac
+
+-AC_MSG_CHECKING(for ARM SIMD support in compiler)
+-AC_TRY_COMPILE([],
+- [asm("uqadd8 r1, r1, r2");],
+- result="yes", result="no")
+-AC_MSG_RESULT("$result")
+-if test "$result" = "yes"; then
+- AC_DEFINE(HAVE_ARM_SIMD)
+- HAVE_ARM_SIMD=1
+-fi
+-AC_SUBST(HAVE_ARM_SIMD)
+-
+-AC_MSG_CHECKING(for ARM NEON support in compiler)
+-_SAVE_CFLAGS="$CFLAGS"
+-if test "$GNU_CC"; then
+- # gcc needs -mfpu=neon to recognize NEON instructions
+- CFLAGS="$CFLAGS -mfpu=neon -mfloat-abi=softfp"
+-fi
+-AC_TRY_COMPILE([],
+- [asm("vadd.i8 d0, d0, d0");],
+- result="yes", result="no")
+-AC_MSG_RESULT("$result")
+-if test "$result" = "yes"; then
+- AC_DEFINE(HAVE_ARM_NEON)
+- HAVE_ARM_NEON=1
+-fi
+-CFLAGS="$_SAVE_CFLAGS"
+-AC_SUBST(HAVE_ARM_NEON)
+-
+ dnl ========================================================
+ dnl = pthread support
+ dnl = Start by checking whether the system support pthreads
+@@ -4614,13 +4586,11 @@
+ BUILD_STATIC_LIBS=
+ ENABLE_TESTS=1
+
+-MOZ_THUMB2=
+ USE_ARM_KUSER=
+
+ case "${target}" in
+ arm-android-eabi)
+ USE_ARM_KUSER=1
+- MOZ_THUMB2=1
+ ;;
+ esac
+
+@@ -4666,80 +4636,204 @@
+ dnl ========================================================
+ MOZ_ARG_HEADER(Individual module options)
+
+-dnl Setup default CPU arch for arm target
+-case "$target_cpu" in
+- arm*)
+- MOZ_ARM_ARCH=armv7
+- ;;
+-esac
+ dnl ========================================================
+-dnl = Enable building the Thumb2 instruction set
++dnl = ARM toolchain tweaks
+ dnl ========================================================
+-MOZ_ARG_ENABLE_BOOL(thumb2,
+- [ --enable-thumb2 Enable Thumb2 instruction set (implies ARMv7)],
+- MOZ_THUMB2=1,
+- MOZ_THUMB2=)
+-if test -n "$MOZ_THUMB2"; then
+- MOZ_ARM_ARCH=armv7
++
++dnl Defaults
++case "${target}" in
++arm-android-eabi)
++ MOZ_THUMB=yes
++ MOZ_ARCH=armv7-a
++ MOZ_FPU=vfp
++ MOZ_FLOAT_ABI=softfp
++ ;;
++arm*-*)
++ if test -n "$MOZ_PLATFORM_MAEMO"; then
++ MOZ_THUMB=no
++ MOZ_ARCH=armv7-a
++ MOZ_FLOAT_ABI=softfp
++ fi
++ if test "$MOZ_PLATFORM_MAEMO" = 6; then
++ MOZ_THUMB=yes
++ fi
++ ;;
++esac
++
++dnl Kept for compatibility with some buildbot mozconfig
++MOZ_ARG_DISABLE_BOOL(thumb2, [], MOZ_THUMB=no, MOZ_THUMB=yes)
++
++MOZ_ARG_WITH_STRING(thumb,
++[ --with-thumb[[=yes|no|toolchain]]]
++[ Use Thumb instruction set (-mthumb)],
++ if test -z "$GNU_CC"; then
++ AC_MSG_ERROR([--with-thumb is not supported on non-GNU toolchains])
++ fi
++ MOZ_THUMB=$withval)
++
++MOZ_ARG_WITH_STRING(thumb-interwork,
++[ --with-thumb-interwork[[=yes|no|toolchain]]
++ Use Thumb/ARM instuctions interwork (-mthumb-interwork)],
++ if test -z "$GNU_CC"; then
++ AC_MSG_ERROR([--with-thumb-interwork is not supported on non-GNU toolchains])
++ fi
++ MOZ_THUMB_INTERWORK=$withval)
++
++MOZ_ARG_WITH_STRING(arch,
++[ --with-arch=[[type|toolchain]]
++ Use specific CPU features (-march=type)],
++ if test -z "$GNU_CC"; then
++ AC_MSG_ERROR([--with-arch is not supported on non-GNU toolchains])
++ fi
++ MOZ_ARCH=$withval)
++
++MOZ_ARG_WITH_STRING(fpu,
++[ --with-fpu=[[type|toolchain]]
++ Use specific FPU type (-mfpu=type)],
++ if test -z "$GNU_CC"; then
++ AC_MSG_ERROR([--with-fpu is not supported on non-GNU toolchains])
++ fi
++ MOZ_FPU=$withval)
++
++MOZ_ARG_WITH_STRING(float-abi,
++[ --with-float-abi=[[type|toolchain]]
++ Use specific arm float ABI (-mfloat-abi=type)],
++ if test -z "$GNU_CC"; then
++ AC_MSG_ERROR([--with-float-abi is not supported on non-GNU toolchains])
++ fi
++ MOZ_FLOAT_ABI=$withval)
++
++MOZ_ARG_WITH_STRING(soft-float,
++[ --with-soft-float[[=yes|no|toolchain]]
++ Use soft float library (-msoft-float)],
++ if test -z "$GNU_CC"; then
++ AC_MSG_ERROR([--with-soft-float is not supported on non-GNU toolchains])
++ fi
++ MOZ_SOFT_FLOAT=$withval)
++
++case "$MOZ_ARCH" in
++toolchain|"")
++ arch_flag=""
++ ;;
++*)
++ arch_flag="-march=$MOZ_ARCH"
++ ;;
++esac
++
++case "$MOZ_THUMB" in
++yes)
++ MOZ_THUMB2=1
++ thumb_flag="-mthumb"
++ ;;
++no)
++ MOZ_THUMB2=
++ thumb_flag="-marm"
++ ;;
++*)
++ _SAVE_CFLAGS="$CFLAGS"
++ CFLAGS="$arch_flag"
++ AC_TRY_COMPILE([],[return sizeof(__thumb2__);],
++ MOZ_THUMB2=1,
++ MOZ_THUMB2=)
++ CFLAGS="$_SAVE_CFLAGS"
++ thumb_flag=""
++ ;;
++esac
++
++if test "$MOZ_THUMB2" = 1; then
++ AC_DEFINE(MOZ_THUMB2)
+ fi
+
+-dnl ========================================================
+-dnl = Enable building for ARM specific CPU features
+-dnl ========================================================
+-MOZ_ARG_WITH_STRING(cpu-arch,
+-[ --with-cpu-arch=arch Use specific arm architecture CPU features, default armv7],
+- MOZ_ARM_ARCH=$withval)
++case "$MOZ_THUMB_INTERWORK" in
++yes)
++ thumb_interwork_flag="-mthumb-interwork"
++ ;;
++no)
++ thumb_interwork_flag="-mno-thumb-interwork"
++ ;;
++*) # toolchain
++ thumb_interwork_flag=""
++ ;;
++esac
+
+-if test -n "$MOZ_THUMB2"; then
+- case "$target_cpu" in
+- arm*)
+- if test "$MOZ_ARM_ARCH" != "armv7"; then
+- AC_MSG_ERROR([--enable-thumb2 is not compatible with cpu-arch=$MOZ_ARM_ARCH])
+- fi
+- if test "$GNU_CC"; then
+- AC_DEFINE(MOZ_THUMB2)
+- AC_DEFINE(MOZ_ARM_ARCH)
+- CFLAGS="$CFLAGS -march=armv7-a -mthumb -mfloat-abi=softfp $MOZ_ARM_VFP_FLAGS"
+- CXXFLAGS="$CXXFLAGS -march=armv7-a -mthumb -mfloat-abi=softfp $MOZ_ARM_VFP_FLAGS"
+- ASFLAGS="$ASFLAGS -march=armv7-a -mthumb -mfloat-abi=softfp $MOZ_ARM_VFP_FLAGS"
+- else
+- AC_MSG_ERROR([--enable-thumb2 is not supported for non-GNU toolchains])
+- fi
++case "$MOZ_FPU" in
++toolchain|"")
++ fpu_flag=""
+ ;;
+- *)
+- AC_MSG_ERROR([--enable-thumb2 is not supported for non-ARM CPU architectures])
++*)
++ fpu_flag="-mfpu=$MOZ_FPU"
+ ;;
+- esac
+-elif test "$MOZ_ARM_ARCH" = "armv7"; then
+- case "$target_cpu" in
+- arm*)
+- if test "$GNU_CC"; then
+- AC_DEFINE(MOZ_ARM_ARCH)
+- CFLAGS="$CFLAGS -march=armv7-a -marm -mfloat-abi=softfp $MOZ_ARM_VFP_FLAGS"
+- CXXFLAGS="$CXXFLAGS -march=armv7-a -marm -mfloat-abi=softfp $MOZ_ARM_VFP_FLAGS"
+- ASFLAGS="$ASFLAGS -march=armv7-a -marm -mfloat-abi=softfp $MOZ_ARM_VFP_FLAGS"
+- else
+- AC_MSG_ERROR([--with-cpu-arch=armv7 is not supported for non-GNU toolchains])
+- fi
++esac
++
++case "$MOZ_FLOAT_ABI" in
++toolchain|"")
++ float_abi_flag=""
+ ;;
+- *)
+- AC_MSG_ERROR([--with-cpu-arch=armv7 is not supported for non-ARM CPU architectures])
++*)
++ float_abi_flag="-mfloat-abi=$MOZ_FLOAT_ABI"
+ ;;
+- esac
+-else
+- case "$target_cpu" in
+- arm*)
+- if test "$GNU_CC"; then
+- CFLAGS="$CFLAGS -march=armv5te -mthumb-interwork -msoft-float"
+- CXXFLAGS="$CXXFLAGS -march=armv5te -mthumb-interwork -msoft-float"
+- ASFLAGS="$ASFLAGS -march=armv5te -mthumb-interwork -msoft-float"
+- fi
+- ;;
+- esac
++esac
++
++case "$MOZ_SOFT_FLOAT" in
++yes)
++ soft_float_flag="-msoft-float"
++ ;;
++no)
++ soft_float_flag="-mno-soft-float"
++ ;;
++*) # toolchain
++ soft_float_flag=""
++ ;;
++esac
++
++dnl Use echo to avoid accumulating space characters
++all_flags=`echo $arch_flag $thumb_flag $thumb_interwork_flag $fpu_flag $float_abi_flag $soft_float_flag`
++if test -n "$all_flags"; then
++ _SAVE_CFLAGS="$CFLAGS"
++ CFLAGS="$all_flags"
++ AC_MSG_CHECKING(whether the chosen combination of compiler flags ($all_flags) works)
++ AC_TRY_COMPILE([],[return 0;],
++ AC_MSG_RESULT([yes]),
++ AC_MSG_ERROR([no]))
++
++ CFLAGS="$_SAVE_CFLAGS $all_flags"
++ CXXFLAGS="$CXXFLAGS $all_flags"
++ ASFLAGS="$ASFLAGS $all_flags"
++ if test -n "$thumb_flag"; then
++ LDFLAGS="$LDFLAGS $thumb_flag"
++ fi
+ fi
+
+ AC_SUBST(MOZ_THUMB2)
+-AC_SUBST(MOZ_ARM_ARCH)
++
++if test "$CPU_ARCH" = "arm"; then
++ AC_MSG_CHECKING(for ARM SIMD support in compiler)
++ # We try to link so that this also fails when
++ # building with LTO.
++ AC_TRY_LINK([],
++ [asm("uqadd8 r1, r1, r2");],
++ result="yes", result="no")
++ AC_MSG_RESULT("$result")
++ if test "$result" = "yes"; then
++ AC_DEFINE(HAVE_ARM_SIMD)
++ HAVE_ARM_SIMD=1
++ fi
++
++ AC_MSG_CHECKING(for ARM NEON support in compiler)
++ # We try to link so that this also fails when
++ # building with LTO.
++ AC_TRY_LINK([],
++ [asm(".fpu neon\n vadd.i8 d0, d0, d0");],
++ result="yes", result="no")
++ AC_MSG_RESULT("$result")
++ if test "$result" = "yes"; then
++ AC_DEFINE(HAVE_ARM_NEON)
++ HAVE_ARM_NEON=1
++ fi
++fi # CPU_ARCH = arm
++
++AC_SUBST(HAVE_ARM_SIMD)
++AC_SUBST(HAVE_ARM_NEON)
+
+ dnl ========================================================
+ dnl =
+@@ -6147,12 +6241,6 @@
+ if test "$OS_ARCH" = "OS2"; then
+ ac_configure_args="$ac_configure_args CFLAGS=-Zomf AR=emxomfar"
+ fi
+- if test -n "$MOZ_THUMB2"; then
+- ac_configure_args="$ac_configure_args --enable-thumb2"
+- fi
+- if test -n "$MOZ_ARM_ARCH"; then
+- ac_configure_args="$ac_configure_args --with-cpu-arch=$MOZ_ARM_ARCH"
+- fi
+
+ # Use a separate cache file for libffi, since it does things differently
+ # from our configure.
diff --git a/pkgs/development/libraries/appstream-glib/default.nix b/pkgs/development/libraries/appstream-glib/default.nix
index 14fbcdf7342..e6051552ab7 100644
--- a/pkgs/development/libraries/appstream-glib/default.nix
+++ b/pkgs/development/libraries/appstream-glib/default.nix
@@ -1,19 +1,23 @@
-{ stdenv, fetchurl, pkgconfig, gettext, gtk3, intltool, glib
+{ stdenv, fetchFromGitHub, pkgconfig, gettext, gtk3, intltool, glib
, gtk_doc, autoconf, automake, libtool, libarchive, libyaml
, gobjectIntrospection, sqlite, libsoup, gcab, attr, acl, docbook_xsl
+, libuuid, json_glib
}:
stdenv.mkDerivation rec {
- name = "appstream-glib-0.3.6";
+ name = "appstream-glib-0.5.11";
- src = fetchurl {
- url = "https://github.com/hughsie/appstream-glib/archive/appstream_glib_0_3_6.tar.gz";
- sha256 = "1zdxg9dk9vxw2cs04cswd138di3dysz0hxk4918750hh19s3859c";
+ src = fetchFromGitHub {
+ owner = "hughsie";
+ repo = "appstream-glib";
+ rev = stdenv.lib.replaceStrings ["." "-"] ["_" "_"] name;
+ sha256 = "1rvfncm9z29h70pd718j73cd263g6yyxkxrg7zfzy0gj6wwzvhkh";
};
- buildInputs = [ glib libtool pkgconfig gtk_doc gettext intltool sqlite libsoup
- gcab attr acl docbook_xsl
- libarchive libyaml gtk3 autoconf automake gobjectIntrospection ];
+ nativeBuildInputs = [ autoconf automake libtool pkgconfig intltool ];
+ buildInputs = [ glib gtk_doc gettext sqlite libsoup
+ gcab attr acl docbook_xsl libuuid json_glib
+ libarchive libyaml gtk3 gobjectIntrospection ];
configureScript = "./autogen.sh";
@@ -22,7 +26,6 @@ stdenv.mkDerivation rec {
homepage = https://github.com/hughsie/appstream-glib;
license = licenses.lgpl21Plus;
platforms = platforms.linux;
- maintainers = with maintainers; [ lethalman ];
+ maintainers = with maintainers; [ lethalman matthewbauer ];
};
-
}
diff --git a/pkgs/development/libraries/armadillo/default.nix b/pkgs/development/libraries/armadillo/default.nix
index 8d904efe0d6..937275b6528 100644
--- a/pkgs/development/libraries/armadillo/default.nix
+++ b/pkgs/development/libraries/armadillo/default.nix
@@ -1,23 +1,26 @@
-{stdenv, fetchurl, cmake, pkgconfig, atlas, blas, openblas}:
+{ stdenv, fetchurl, cmake, openblasCompat, superlu, hdf5 }:
stdenv.mkDerivation rec {
- version = "7.200.1b";
+ version = "7.200.2";
name = "armadillo-${version}";
-
+
src = fetchurl {
- url = "http://sourceforge.net/projects/arma/files/armadillo-${version}.tar.xz";
- sha256 = "00s8xrywc4aipipq1zpd6q9gzqmsiv8cwd25zvb1csrpninmidvc";
+ url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz";
+ sha256 = "1yvx75caks477jqwx5gspi6946jialddk00wdvg6dnh5wdi2xasm";
};
- unpackCmd = [ "tar -xf ${src}" ];
-
- nativeBuildInputs = [ cmake atlas blas openblas ];
+ buildInputs = [ cmake openblasCompat superlu hdf5 ];
+
+ cmakeFlags = [ "-DDETECT_HDF5=ON" ];
+
+ patches = [ ./use-unix-config-on-OS-X.patch
+ ./use-OpenBLAS-as-LAPACK.patch ];
meta = with stdenv.lib; {
description = "C++ linear algebra library";
- homepage = "http://arma.sourceforge.net" ;
+ homepage = http://arma.sourceforge.net;
license = licenses.mpl20;
- platforms = stdenv.lib.platforms.linux ;
- maintainers = [ stdenv.lib.maintainers.juliendehos ];
+ platforms = platforms.unix;
+ maintainers = [ maintainers.juliendehos ];
};
}
diff --git a/pkgs/development/libraries/armadillo/use-OpenBLAS-as-LAPACK.patch b/pkgs/development/libraries/armadillo/use-OpenBLAS-as-LAPACK.patch
new file mode 100644
index 00000000000..e4c77d2cc2e
--- /dev/null
+++ b/pkgs/development/libraries/armadillo/use-OpenBLAS-as-LAPACK.patch
@@ -0,0 +1,14 @@
+diff --git a/cmake_aux/Modules/ARMA_FindLAPACK.cmake b/cmake_aux/Modules/ARMA_FindLAPACK.cmake
+index 5395afb..a203c93 100644
+--- a/cmake_aux/Modules/ARMA_FindLAPACK.cmake
++++ b/cmake_aux/Modules/ARMA_FindLAPACK.cmake
+@@ -5,7 +5,7 @@
+ # also defined, but not for general use are
+ # LAPACK_LIBRARY, where to find the LAPACK library.
+
+-SET(LAPACK_NAMES ${LAPACK_NAMES} lapack)
++SET(LAPACK_NAMES ${LAPACK_NAMES} openblas)
+ FIND_LIBRARY(LAPACK_LIBRARY
+ NAMES ${LAPACK_NAMES}
+ PATHS /usr/lib64/atlas /usr/lib/atlas /usr/lib64 /usr/lib /usr/local/lib64 /usr/local/lib
+
diff --git a/pkgs/development/libraries/armadillo/use-unix-config-on-OS-X.patch b/pkgs/development/libraries/armadillo/use-unix-config-on-OS-X.patch
new file mode 100644
index 00000000000..b6fdddcaf2d
--- /dev/null
+++ b/pkgs/development/libraries/armadillo/use-unix-config-on-OS-X.patch
@@ -0,0 +1,11 @@
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -84,7 +84,7 @@ message(STATUS "DETECT_HDF5 = ${DETECT_HDF5}" )
+ ##
+ ## Find LAPACK and BLAS libraries, or their optimised versions
+ ##
+-
++set(APPLE false)
+ if(APPLE)
+
+ set(ARMA_OS macos)
diff --git a/pkgs/development/libraries/at-spi2-core/default.nix b/pkgs/development/libraries/at-spi2-core/default.nix
index e3c558057c8..20e18747e67 100644
--- a/pkgs/development/libraries/at-spi2-core/default.nix
+++ b/pkgs/development/libraries/at-spi2-core/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
versionMajor = "2.20";
- versionMinor = "1";
+ versionMinor = "2";
moduleName = "at-spi2-core";
name = "${moduleName}-${versionMajor}.${versionMinor}";
src = fetchurl {
url = "mirror://gnome/sources/${moduleName}/${versionMajor}/${name}.tar.xz";
- sha256 = "6ed858e781f5aa9a9662b3beb5ef82f733dac040afc8255d85dffd2097f16900";
+ sha256 = "88a4de9d43139f13cca531b47b901bc1b56e0ab06ba899126644abd4ac16a143";
};
outputs = [ "dev" "out" ];
diff --git a/pkgs/development/libraries/ffmpeg/3.0.nix b/pkgs/development/libraries/ffmpeg/3.0.nix
deleted file mode 100644
index 14c29f36bed..00000000000
--- a/pkgs/development/libraries/ffmpeg/3.0.nix
+++ /dev/null
@@ -1,7 +0,0 @@
-{ callPackage, ... } @ args:
-
-callPackage ./generic.nix (args // rec {
- version = "${branch}.2";
- branch = "3.0";
- sha256 = "0dpx15001ha9p8h8vfg1lm9pggbc96kmb546hz88wdac5xycgqrh";
-})
diff --git a/pkgs/development/libraries/ffmpeg/3.1.nix b/pkgs/development/libraries/ffmpeg/3.1.nix
new file mode 100644
index 00000000000..25892e18684
--- /dev/null
+++ b/pkgs/development/libraries/ffmpeg/3.1.nix
@@ -0,0 +1,7 @@
+{ callPackage, ... } @ args:
+
+callPackage ./generic.nix (args // rec {
+ version = "${branch}.1";
+ branch = "3.1";
+ sha256 = "1d5knh87cgnla5zawy56gkrpb48qhyiq7i0pm8z9hyx3j05abg55";
+})
diff --git a/pkgs/development/libraries/fltk/default.nix b/pkgs/development/libraries/fltk/default.nix
index 772ea2030c2..99cb8aae323 100644
--- a/pkgs/development/libraries/fltk/default.nix
+++ b/pkgs/development/libraries/fltk/default.nix
@@ -1,6 +1,7 @@
{ stdenv, composableDerivation, fetchurl, pkgconfig, xlibsWrapper, inputproto, libXi
, freeglut, mesa, libjpeg, zlib, libXinerama, libXft, libpng
, cfg ? {}
+, darwin, libtiff, freetype
}:
let inherit (composableDerivation) edf; in
@@ -21,7 +22,10 @@ composableDerivation.composableDerivation {} {
'';
nativeBuildInputs = [ pkgconfig ];
- propagatedBuildInputs = [ xlibsWrapper inputproto libXi freeglut ];
+ propagatedBuildInputs = [ inputproto ]
+ ++ (if stdenv.isDarwin
+ then (with darwin.apple_sdk.frameworks; [Cocoa AGL GLUT freetype libtiff])
+ else [ xlibsWrapper libXi freeglut ]);
enableParallelBuilding = true;
@@ -55,9 +59,8 @@ composableDerivation.composableDerivation {} {
meta = {
description = "A C++ cross-platform lightweight GUI library";
homepage = http://www.fltk.org;
- platforms = stdenv.lib.platforms.linux;
+ platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
license = stdenv.lib.licenses.gpl2;
};
}
-
diff --git a/pkgs/development/libraries/gd/default.nix b/pkgs/development/libraries/gd/default.nix
index 7f7e000d16e..cf0ed7883a0 100644
--- a/pkgs/development/libraries/gd/default.nix
+++ b/pkgs/development/libraries/gd/default.nix
@@ -8,18 +8,29 @@
, libXpm ? null
, fontconfig
, freetype
+, fetchpatch, autoreconfHook, perl
}:
stdenv.mkDerivation rec {
name = "gd-${version}";
- version = "2.2.1";
+ version = "2.2.2";
src = fetchurl {
url = "https://github.com/libgd/libgd/releases/download/${name}/libgd-${version}.tar.xz";
- sha256 = "0xmrqka1ggqgml84xbmkw1y0r0lg7qn657v5b1my8pry92p651vh";
+ sha256 = "1311g5mva2xlzqv3rjqjc4jjkn5lzls4skvr395h633zw1n7b7s8";
};
- nativeBuildInputs = [ pkgconfig ];
+ # Address an incompatibility with Darwin's libtool
+ patches = stdenv.lib.optional stdenv.isDarwin (fetchpatch {
+ url = https://github.com/libgd/libgd/commit/502e4cd873c3b37b307b9f450ef827d40916c3d6.patch;
+ sha256 = "0gawr2c4zr6cljnwzhdlxhz2mkbg0r5vzvr79dv6yf6fcj06awfs";
+ });
+
+ # -pthread gets passed to clang, causing warnings
+ configureFlags = stdenv.lib.optional stdenv.isDarwin "--enable-werror=no";
+
+ nativeBuildInputs = [ pkgconfig ]
+ ++ stdenv.lib.optionals stdenv.isDarwin [ autoreconfHook perl ];
buildInputs = [ zlib fontconfig freetype ];
propagatedBuildInputs = [ libpng libjpeg libwebp libtiff libXpm ];
diff --git a/pkgs/development/libraries/gettext/default.nix b/pkgs/development/libraries/gettext/default.nix
index 63eb086b0fb..bf65e694753 100644
--- a/pkgs/development/libraries/gettext/default.nix
+++ b/pkgs/development/libraries/gettext/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "gettext-${version}";
- version = "0.19.7";
+ version = "0.19.8";
src = fetchurl {
url = "mirror://gnu/gettext/${name}.tar.gz";
- sha256 = "0gy2b2aydj8r0sapadnjw8cmb8j2rynj28d5qs1mfa800njd51jk";
+ sha256 = "13ylc6n3hsk919c7xl0yyibc3pfddzb53avdykn4hmk8g6yzd91x";
};
patches = [ ./absolute-paths.diff ];
@@ -78,7 +78,7 @@ stdenv.mkDerivation rec {
homepage = http://www.gnu.org/software/gettext/;
- maintainers = with lib.maintainers; [ zimbatm ];
+ maintainers = with lib.maintainers; [ zimbatm vrthra ];
platforms = lib.platforms.all;
};
}
diff --git a/pkgs/development/libraries/glfw/3.x.nix b/pkgs/development/libraries/glfw/3.x.nix
index 681137cd590..3b015532ca8 100644
--- a/pkgs/development/libraries/glfw/3.x.nix
+++ b/pkgs/development/libraries/glfw/3.x.nix
@@ -3,14 +3,14 @@
}:
stdenv.mkDerivation rec {
- version = "3.1.2";
+ version = "3.2";
name = "glfw-${version}";
src = fetchFromGitHub {
owner = "glfw";
repo = "GLFW";
rev = "${version}";
- sha256 = "1aj1dfyyd0170gpz32j2xlqbvbsxwbg028xiqai3mqc44xfp10kw";
+ sha256 = "0knqf40jij2z1mia091xqyky5r11r4qyh7b8172blrmgm9q23sl9";
};
enableParallelBuilding = true;
diff --git a/pkgs/development/libraries/gmp/6.x.nix b/pkgs/development/libraries/gmp/6.x.nix
index d17ac5b8760..32009406a73 100644
--- a/pkgs/development/libraries/gmp/6.x.nix
+++ b/pkgs/development/libraries/gmp/6.x.nix
@@ -3,11 +3,11 @@
with { inherit (stdenv.lib) optional optionalString; };
let self = stdenv.mkDerivation rec {
- name = "gmp-6.1.0";
+ name = "gmp-6.1.1";
src = fetchurl { # we need to use bz2, others aren't in bootstrapping stdenv
urls = [ "mirror://gnu/gmp/${name}.tar.bz2" "ftp://ftp.gmplib.org/pub/${name}/${name}.tar.bz2" ];
- sha256 = "1s3kddydvngqrpc6i1vbz39raya2jdcl042wi0ksbszgjjllk129";
+ sha256 = "1mpzprdzkgfpdc1v2lf4dxlxps4x8bvmzvd8n1ri6gw9y9jrh458";
};
#outputs TODO: split $cxx due to libstdc++ dependency; maybe port to gmp5;
@@ -73,7 +73,7 @@ let self = stdenv.mkDerivation rec {
'';
platforms = platforms.all;
- maintainers = [ maintainers.peti ];
+ maintainers = [ maintainers.peti maintainers.vrthra ];
};
};
in self
diff --git a/pkgs/development/libraries/gnutls/generic.nix b/pkgs/development/libraries/gnutls/generic.nix
index 7cd8267192b..10047888423 100644
--- a/pkgs/development/libraries/gnutls/generic.nix
+++ b/pkgs/development/libraries/gnutls/generic.nix
@@ -36,10 +36,12 @@ stdenv.mkDerivation {
# Build of the Guile bindings is not parallel-safe. See
#
- # for the actual fix.
- enableParallelBuilding = !guileBindings;
+ # for the actual fix. Also an apparent race in the generation of
+ # systemkey-args.h.
+ enableParallelBuilding = false;
- buildInputs = [ lzo lzip nettle libtasn1 libidn p11_kit zlib gmp autogen nettools ]
+ buildInputs = [ lzo lzip nettle libtasn1 libidn p11_kit zlib gmp autogen ]
+ ++ lib.optional doCheck nettools
++ lib.optional (stdenv.isFreeBSD || stdenv.isDarwin) libiconv
++ lib.optional (tpmSupport && stdenv.isLinux) trousers
++ [ unbound ]
diff --git a/pkgs/development/libraries/gstreamer/bad/default.nix b/pkgs/development/libraries/gstreamer/bad/default.nix
index d907450babb..ffe21d43792 100644
--- a/pkgs/development/libraries/gstreamer/bad/default.nix
+++ b/pkgs/development/libraries/gstreamer/bad/default.nix
@@ -14,7 +14,7 @@ let
inherit (stdenv.lib) optional optionalString;
in
stdenv.mkDerivation rec {
- name = "gst-plugins-bad-1.8.1";
+ name = "gst-plugins-bad-1.8.2";
meta = with stdenv.lib; {
description = "Gstreamer Bad Plugins";
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "${meta.homepage}/src/gst-plugins-bad/${name}.tar.xz";
- sha256 = "1xa0r98vf0sxw6s90yysvfpzs9yl07xxdci0lv2c0kvkcgrmig8b";
+ sha256 = "d7995317530c8773ec088f94d9320909d41da61996b801ebacce9a56af493f97";
};
outputs = [ "dev" "out" ];
diff --git a/pkgs/development/libraries/gstreamer/base/default.nix b/pkgs/development/libraries/gstreamer/base/default.nix
index ddb7f9957dc..76f2662ec43 100644
--- a/pkgs/development/libraries/gstreamer/base/default.nix
+++ b/pkgs/development/libraries/gstreamer/base/default.nix
@@ -4,7 +4,7 @@
}:
stdenv.mkDerivation rec {
- name = "gst-plugins-base-1.8.1";
+ name = "gst-plugins-base-1.8.2";
meta = {
description = "Base plugins and helper libraries";
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "${meta.homepage}/src/gst-plugins-base/${name}.tar.xz";
- sha256 = "0vxd5w7r1jqp37cw5lhyc6vj2h6z8y9v3xarwd2c6rfjbjcdxa8m";
+ sha256 = "9d7109c8fb0a5dec8edb17b0053c59a46aba7ddf48dc48ea822ebbbd4339d38d";
};
outputs = [ "dev" "out" ];
diff --git a/pkgs/development/libraries/gstreamer/core/default.nix b/pkgs/development/libraries/gstreamer/core/default.nix
index 95d89b411c5..43aec752054 100644
--- a/pkgs/development/libraries/gstreamer/core/default.nix
+++ b/pkgs/development/libraries/gstreamer/core/default.nix
@@ -3,7 +3,7 @@
}:
stdenv.mkDerivation rec {
- name = "gstreamer-1.8.1";
+ name = "gstreamer-1.8.2";
meta = {
description = "Open source multimedia framework";
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "${meta.homepage}/src/gstreamer/${name}.tar.xz";
- sha256 = "01ribrzc4x9xlv6ci66w2svpqxywjc129m6f2xy9gp82jgxj4dss";
+ sha256 = "9dbebe079c2ab2004ef7f2649fa317cabea1feb4fb5605c24d40744b90918341";
};
outputs = [ "dev" "out" ];
diff --git a/pkgs/development/libraries/gstreamer/ges/default.nix b/pkgs/development/libraries/gstreamer/ges/default.nix
index fd1dd6724c3..836bcb6ce66 100644
--- a/pkgs/development/libraries/gstreamer/ges/default.nix
+++ b/pkgs/development/libraries/gstreamer/ges/default.nix
@@ -3,7 +3,7 @@
}:
stdenv.mkDerivation rec {
- name = "gstreamer-editing-services-1.8.1";
+ name = "gstreamer-editing-services-1.8.2";
meta = with stdenv.lib; {
description = "Library for creation of audio/video non-linear editors";
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "${meta.homepage}/src/gstreamer-editing-services/${name}.tar.xz";
- sha256 = "082h6r2kymgb78x6av5mxaszxlqnvr6afq935ackh914vb1anyw9";
+ sha256 = "a1d57ff9461407cca1f6e7a9f31a5bdb73f73f33c488a3e3318b27e10a4332ae";
};
outputs = [ "dev" "out" ];
diff --git a/pkgs/development/libraries/gstreamer/good/default.nix b/pkgs/development/libraries/gstreamer/good/default.nix
index c1846cad23c..1bd80cfa1c7 100644
--- a/pkgs/development/libraries/gstreamer/good/default.nix
+++ b/pkgs/development/libraries/gstreamer/good/default.nix
@@ -10,7 +10,7 @@ let
inherit (stdenv.lib) optionals optionalString;
in
stdenv.mkDerivation rec {
- name = "gst-plugins-good-1.8.1";
+ name = "gst-plugins-good-1.8.2";
meta = with stdenv.lib; {
description = "Gstreamer Good Plugins";
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "${meta.homepage}/src/gst-plugins-good/${name}.tar.xz";
- sha256 = "0wh9mpz3zj7vbdi3xn9gjncqal86kgxn9pdg5vl98y6n45wy20r1";
+ sha256 = "8d7549118a3b7a009ece6bb38a05b66709c551d32d2adfd89eded4d1d7a23944";
};
outputs = [ "dev" "out" ];
diff --git a/pkgs/development/libraries/gstreamer/libav/default.nix b/pkgs/development/libraries/gstreamer/libav/default.nix
index 82d64ae691f..312a8a1d394 100644
--- a/pkgs/development/libraries/gstreamer/libav/default.nix
+++ b/pkgs/development/libraries/gstreamer/libav/default.nix
@@ -9,7 +9,7 @@
assert withSystemLibav -> libav != null;
stdenv.mkDerivation rec {
- name = "gst-libav-1.8.1";
+ name = "gst-libav-1.8.2";
meta = {
homepage = "http://gstreamer.freedesktop.org";
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "${meta.homepage}/src/gst-libav/${name}.tar.xz";
- sha256 = "0cw9nc0079vmdp5r8hrrmglb1bzvsxy298j6yg25l6skqc493924";
+ sha256 = "b5f3c7a27b39b5f5c2f0bfd546b0c655020faf6b38d27b64b346c43e5ebf687a";
};
outputs = [ "dev" "out" ];
diff --git a/pkgs/development/libraries/gstreamer/ugly/default.nix b/pkgs/development/libraries/gstreamer/ugly/default.nix
index bfb6b831962..65490c7db24 100644
--- a/pkgs/development/libraries/gstreamer/ugly/default.nix
+++ b/pkgs/development/libraries/gstreamer/ugly/default.nix
@@ -5,7 +5,7 @@
}:
stdenv.mkDerivation rec {
- name = "gst-plugins-ugly-1.8.1";
+ name = "gst-plugins-ugly-1.8.2";
meta = with stdenv.lib; {
description = "Gstreamer Ugly Plugins";
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "${meta.homepage}/src/gst-plugins-ugly/${name}.tar.xz";
- sha256 = "1kj6jijhwdknv362mcnhjm7zbcbhs0i2m3pvsdz7w3g67fd6lrcf";
+ sha256 = "9c5b33a2a98fc1d6d6c99a1b536b1fb2de45f53cc8bf8ab85a8b8141fed1a8ac";
};
outputs = [ "dev" "out" ];
diff --git a/pkgs/development/libraries/gstreamer/validate/default.nix b/pkgs/development/libraries/gstreamer/validate/default.nix
index 47a401b9011..a837a94eac7 100644
--- a/pkgs/development/libraries/gstreamer/validate/default.nix
+++ b/pkgs/development/libraries/gstreamer/validate/default.nix
@@ -3,7 +3,7 @@
}:
stdenv.mkDerivation rec {
- name = "gst-validate-1.8.1";
+ name = "gst-validate-1.8.2";
meta = {
description = "Integration testing infrastructure for the GStreamer framework";
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "${meta.homepage}/src/gst-validate/${name}.tar.xz";
- sha256 = "1gycl6bbrf9ryis6wdinv4zi7552lz9izw4ram8xr8nc2k00icm9";
+ sha256 = "33c5b585c5ca1659fe6c09fdf02e45d8132c0d386b405bf527b14ab481a0bafe";
};
outputs = [ "dev" "out" ];
diff --git a/pkgs/development/libraries/gtkspell/3.nix b/pkgs/development/libraries/gtkspell/3.nix
index b9f2f3c77e5..1b28477f1e0 100644
--- a/pkgs/development/libraries/gtkspell/3.nix
+++ b/pkgs/development/libraries/gtkspell/3.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "gtkspell-${version}";
- version = "3.0.7";
+ version = "3.0.8";
src = fetchurl {
url = "mirror://sourceforge/gtkspell/gtkspell3-${version}.tar.gz";
- sha256 = "1hiwzajf18v9ik4nai3s7frps4ccn9s20nggad1c4k2mwb9ydwhk";
+ sha256 = "1zrz5pz4ryvcssk898liynmy2wyxgj95ak7mp2jv7x62yzihq6h1";
};
buildInputs = [ aspell pkgconfig gtk3 enchant intltool ];
diff --git a/pkgs/development/libraries/gtkspellmm/default.nix b/pkgs/development/libraries/gtkspellmm/default.nix
index 44bb8051ea6..be2ae044022 100644
--- a/pkgs/development/libraries/gtkspellmm/default.nix
+++ b/pkgs/development/libraries/gtkspellmm/default.nix
@@ -4,7 +4,7 @@
}:
let
- version = "3.0.3";
+ version = "3.0.4";
in
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "mirror://sourceforge/project/gtkspell/gtkspellmm/" +
"${name}.tar.gz";
- sha256 = "f9dcc0991621c08e7a972f33487afd6b37491468f0b654f50c741a7e6d810624";
+ sha256 = "0x6zx928dl62f0c0x6b2s32i06lvn18wx7crrgs1j9yjgkim4k4k";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/libraries/icu/54.1.nix b/pkgs/development/libraries/icu/54.1.nix
new file mode 100644
index 00000000000..4d780341b3a
--- /dev/null
+++ b/pkgs/development/libraries/icu/54.1.nix
@@ -0,0 +1,12 @@
+{ stdenv, fetchurl, fixDarwinDylibNames }:
+
+let
+ icu = import ./default.nix { inherit stdenv fetchurl fixDarwinDylibNames; };
+in
+ stdenv.lib.overrideDerivation icu (attrs: {
+ src = fetchurl {
+ url = "http://download.icu-project.org/files/icu4c/54.1/icu4c-54_1-src.tgz";
+ md5 = "e844caed8f2ca24c088505b0d6271bc0";
+ };
+ })
+
diff --git a/pkgs/development/libraries/java/cup/builder.sh b/pkgs/development/libraries/java/cup/builder.sh
deleted file mode 100755
index 3cd75dd396c..00000000000
--- a/pkgs/development/libraries/java/cup/builder.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-set -e
-source $stdenv/setup
-
-tar zxvf $src
-
-$jdk/bin/javac java_cup/*.java
-$jdk/bin/javac java_cup/runtime/*.java
-
-mkdir -p $out/java_cup/runtime
-
-cp java_cup/*.class $out/java_cup
-cp java_cup/runtime/*.class $out/java_cup/runtime/
-
diff --git a/pkgs/development/libraries/java/cup/default.nix b/pkgs/development/libraries/java/cup/default.nix
index 1181cef074e..de031a08fe8 100644
--- a/pkgs/development/libraries/java/cup/default.nix
+++ b/pkgs/development/libraries/java/cup/default.nix
@@ -1,13 +1,38 @@
-{stdenv, fetchurl, jdk} :
+{ stdenv, fetchurl, jdk, ant } :
-stdenv.mkDerivation {
- name = "java-cup-10k";
- builder = ./builder.sh;
+stdenv.mkDerivation rec {
+ name = "java-cup-${version}";
+ version = "11b-20160615";
src = fetchurl {
- url = http://www.cs.princeton.edu/~appel/modern/java/CUP/java_cup_v10k.tar.gz;
- md5 = "8b11edfec13c590ea443d0f0ae0da479";
+ url = "http://www2.cs.tum.edu/projects/cup/releases/java-cup-src-${version}.tar.gz";
+ sha256 = "1ymz3plngxclh7x3xr31537rvvak7lwyd0qkmnl1mkj5drh77rz0";
};
- inherit jdk;
+ sourceRoot = ".";
+
+ nativeBuildInputs = [ jdk ant ];
+
+ patches = [ ./javacup-0.11b_beta20160615-build-xml-git.patch ];
+
+ buildPhase = "ant";
+
+ installPhase = ''
+ mkdir -p $out/{bin,share/{java,java-cup}}
+ cp dist/java-cup-11b.jar $out/share/java-cup/
+ cp dist/java-cup-11b-runtime.jar $out/share/java/
+ cat > $out/bin/javacup <
+
+
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+- ${changed}${gitversion}
+
+
+
+@@ -79,7 +59,7 @@
+
+
++ value='+ "v0.11b ${cupversion}"'>
+
+
+
diff --git a/pkgs/development/libraries/leatherman/default.nix b/pkgs/development/libraries/leatherman/default.nix
index bfb091f424a..3dfc9e2990e 100644
--- a/pkgs/development/libraries/leatherman/default.nix
+++ b/pkgs/development/libraries/leatherman/default.nix
@@ -2,10 +2,10 @@
stdenv.mkDerivation rec {
name = "leatherman-${version}";
- version = "0.7.0";
+ version = "0.7.5";
src = fetchFromGitHub {
- sha256 = "1m37zcr11a2g08wbkpxgav97m2fr14in2zhdhhv5krci5i2grzd7";
+ sha256 = "103qzhjhgw7jh0xcaxag735wfm6q35xprq5wmdimfhhmmrmjr51g";
rev = version;
repo = "leatherman";
owner = "puppetlabs";
diff --git a/pkgs/development/libraries/libarchive/CVE-2013-0211.patch b/pkgs/development/libraries/libarchive/CVE-2013-0211.patch
deleted file mode 100644
index 5b1a9831063..00000000000
--- a/pkgs/development/libraries/libarchive/CVE-2013-0211.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 22531545514043e04633e1c015c7540b9de9dbe4 Mon Sep 17 00:00:00 2001
-From: Tim Kientzle
-Date: Fri, 22 Mar 2013 23:48:41 -0700
-Subject: [PATCH] Limit write requests to at most INT_MAX. This prevents a
- certain common programming error (passing -1 to write) from leading to other
- problems deeper in the library.
-
----
- libarchive/archive_write.c | 5 +++++
- 1 file changed, 5 insertions(+)
-
-diff --git a/libarchive/archive_write.c b/libarchive/archive_write.c
-index eede5e0..be85621 100644
---- a/libarchive/archive_write.c
-+++ b/libarchive/archive_write.c
-@@ -673,8 +673,13 @@ static ssize_t
- _archive_write_data(struct archive *_a, const void *buff, size_t s)
- {
- struct archive_write *a = (struct archive_write *)_a;
-+ const size_t max_write = INT_MAX;
-+
- archive_check_magic(&a->archive, ARCHIVE_WRITE_MAGIC,
- ARCHIVE_STATE_DATA, "archive_write_data");
-+ /* In particular, this catches attempts to pass negative values. */
-+ if (s > max_write)
-+ s = max_write;
- archive_clear_error(&a->archive);
- return ((a->format_write_data)(a, buff, s));
- }
-
diff --git a/pkgs/development/libraries/libarchive/CVE-2015-1197.patch b/pkgs/development/libraries/libarchive/CVE-2015-1197.patch
deleted file mode 100644
index cb7be5f18cd..00000000000
--- a/pkgs/development/libraries/libarchive/CVE-2015-1197.patch
+++ /dev/null
@@ -1,143 +0,0 @@
-From 59357157706d47c365b2227739e17daba3607526 Mon Sep 17 00:00:00 2001
-From: Alessandro Ghedini
-Date: Sun, 1 Mar 2015 12:07:45 +0100
-Subject: [PATCH] Add ARCHIVE_EXTRACT_SECURE_NOABSOLUTEPATHS option
-
-This fixes a directory traversal in the cpio tool.
----
- cpio/bsdcpio.1 | 3 ++-
- cpio/cpio.c | 2 ++
- libarchive/archive.h | 2 ++
- libarchive/archive_write_disk.3 | 3 +++
- libarchive/archive_write_disk_posix.c | 14 +++++++++++---
- libarchive/test/test_write_disk_secure.c | 23 +++++++++++++++++++++++
- 6 files changed, 43 insertions(+), 4 deletions(-)
-
-diff --git a/cpio/bsdcpio.1 b/cpio/bsdcpio.1
-index f966aa0..e52546e 100644
---- a/cpio/bsdcpio.1
-+++ b/cpio/bsdcpio.1
-@@ -156,7 +156,8 @@ See above for description.
- .It Fl Fl insecure
- (i and p mode only)
- Disable security checks during extraction or copying.
--This allows extraction via symbolic links and path names containing
-+This allows extraction via symbolic links, absolute paths,
-+and path names containing
- .Sq ..
- in the name.
- .It Fl J , Fl Fl xz
-diff --git a/cpio/cpio.c b/cpio/cpio.c
-index 0acde11..b267e9b 100644
---- a/cpio/cpio.c
-+++ b/cpio/cpio.c
-@@ -171,6 +171,7 @@ main(int argc, char *argv[])
- cpio->extract_flags |= ARCHIVE_EXTRACT_NO_OVERWRITE_NEWER;
- cpio->extract_flags |= ARCHIVE_EXTRACT_SECURE_SYMLINKS;
- cpio->extract_flags |= ARCHIVE_EXTRACT_SECURE_NODOTDOT;
-+ cpio->extract_flags |= ARCHIVE_EXTRACT_SECURE_NOABSOLUTEPATHS;
- cpio->extract_flags |= ARCHIVE_EXTRACT_PERM;
- cpio->extract_flags |= ARCHIVE_EXTRACT_FFLAGS;
- cpio->extract_flags |= ARCHIVE_EXTRACT_ACL;
-@@ -256,6 +257,7 @@ main(int argc, char *argv[])
- case OPTION_INSECURE:
- cpio->extract_flags &= ~ARCHIVE_EXTRACT_SECURE_SYMLINKS;
- cpio->extract_flags &= ~ARCHIVE_EXTRACT_SECURE_NODOTDOT;
-+ cpio->extract_flags &= ~ARCHIVE_EXTRACT_SECURE_NOABSOLUTEPATHS;
- break;
- case 'L': /* GNU cpio */
- cpio->option_follow_links = 1;
-diff --git a/libarchive/archive.h b/libarchive/archive.h
-index 1f0fc38..ef635ac 100644
---- a/libarchive/archive.h
-+++ b/libarchive/archive.h
-@@ -649,6 +649,8 @@ __LA_DECL int archive_read_set_passphrase_callback(struct archive *,
- /* Default: Do not use HFS+ compression if it was not compressed. */
- /* This has no effect except on Mac OS v10.6 or later. */
- #define ARCHIVE_EXTRACT_HFS_COMPRESSION_FORCED (0x8000)
-+/* Default: Do not reject entries with absolute paths */
-+#define ARCHIVE_EXTRACT_SECURE_NOABSOLUTEPATHS (0x10000)
-
- __LA_DECL int archive_read_extract(struct archive *, struct archive_entry *,
- int flags);
-diff --git a/libarchive/archive_write_disk.3 b/libarchive/archive_write_disk.3
-index fa925cc..a2e7afa 100644
---- a/libarchive/archive_write_disk.3
-+++ b/libarchive/archive_write_disk.3
-@@ -177,6 +177,9 @@ The default is to not refuse such paths.
- Note that paths ending in
- .Pa ..
- always cause an error, regardless of this flag.
-+.It Cm ARCHIVE_EXTRACT_SECURE_NOABSOLUTEPATHS
-+Refuse to extract an absolute path.
-+The default is to not refuse such paths.
- .It Cm ARCHIVE_EXTRACT_SPARSE
- Scan data for blocks of NUL bytes and try to recreate them with holes.
- This results in sparse files, independent of whether the archive format
-diff --git a/libarchive/archive_write_disk_posix.c b/libarchive/archive_write_disk_posix.c
-index ab3bdac..c1290eb 100644
---- a/libarchive/archive_write_disk_posix.c
-+++ b/libarchive/archive_write_disk_posix.c
-@@ -2509,8 +2509,9 @@ cleanup_pathname_win(struct archive_write_disk *a)
- /*
- * Canonicalize the pathname. In particular, this strips duplicate
- * '/' characters, '.' elements, and trailing '/'. It also raises an
-- * error for an empty path, a trailing '..' or (if _SECURE_NODOTDOT is
-- * set) any '..' in the path.
-+ * error for an empty path, a trailing '..', (if _SECURE_NODOTDOT is
-+ * set) any '..' in the path or (if ARCHIVE_EXTRACT_SECURE_NOABSOLUTEPATHS
-+ * is set) if the path is absolute.
- */
- static int
- cleanup_pathname(struct archive_write_disk *a)
-@@ -2529,8 +2530,15 @@ cleanup_pathname(struct archive_write_disk *a)
- cleanup_pathname_win(a);
- #endif
- /* Skip leading '/'. */
-- if (*src == '/')
-+ if (*src == '/') {
-+ if (a->flags & ARCHIVE_EXTRACT_SECURE_NOABSOLUTEPATHS) {
-+ archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
-+ "Path is absolute");
-+ return (ARCHIVE_FAILED);
-+ }
-+
- separator = *src++;
-+ }
-
- /* Scan the pathname one element at a time. */
- for (;;) {
-diff --git a/libarchive/test/test_write_disk_secure.c b/libarchive/test/test_write_disk_secure.c
-index 31c5bfd..2c94206 100644
---- a/libarchive/test/test_write_disk_secure.c
-+++ b/libarchive/test/test_write_disk_secure.c
-@@ -178,6 +178,29 @@ DEFINE_TEST(test_write_disk_secure)
- assert(S_ISDIR(st.st_mode));
- archive_entry_free(ae);
-
-+ /*
-+ * Without security checks, we should be able to
-+ * extract an absolute path.
-+ */
-+ assert((ae = archive_entry_new()) != NULL);
-+ archive_entry_copy_pathname(ae, "/tmp/libarchive_test-test_write_disk_secure-absolute_path.tmp");
-+ archive_entry_set_mode(ae, S_IFREG | 0777);
-+ assert(0 == archive_write_header(a, ae));
-+ assert(0 == archive_write_finish_entry(a));
-+ assertFileExists("/tmp/libarchive_test-test_write_disk_secure-absolute_path.tmp");
-+ assert(0 == unlink("/tmp/libarchive_test-test_write_disk_secure-absolute_path.tmp"));
-+
-+ /* But with security checks enabled, this should fail. */
-+ assert(archive_entry_clear(ae) != NULL);
-+ archive_entry_copy_pathname(ae, "/tmp/libarchive_test-test_write_disk_secure-absolute_path.tmp");
-+ archive_entry_set_mode(ae, S_IFREG | 0777);
-+ archive_write_disk_set_options(a, ARCHIVE_EXTRACT_SECURE_NOABSOLUTEPATHS);
-+ failure("Extracting an absolute path should fail here.");
-+ assertEqualInt(ARCHIVE_FAILED, archive_write_header(a, ae));
-+ archive_entry_free(ae);
-+ assert(0 == archive_write_finish_entry(a));
-+ assertFileNotExists("/tmp/libarchive_test-test_write_disk_secure-absolute_path.tmp");
-+
- assertEqualInt(ARCHIVE_OK, archive_write_free(a));
-
- /* Test the entries on disk. */
diff --git a/pkgs/development/libraries/libarchive/default.nix b/pkgs/development/libraries/libarchive/default.nix
index 55ff770f4bd..0c5f900dd41 100644
--- a/pkgs/development/libraries/libarchive/default.nix
+++ b/pkgs/development/libraries/libarchive/default.nix
@@ -2,22 +2,14 @@
, sharutils }:
stdenv.mkDerivation rec {
- name = "libarchive-3.1.2";
+ name = "libarchive-${version}";
+ version = "3.2.1";
src = fetchurl {
- urls = [
- "http://pkgs.fedoraproject.org/repo/pkgs/libarchive/libarchive-3.1.2.tar.gz/efad5a503f66329bb9d2f4308b5de98a/${name}.tar.gz"
- "${meta.homepage}/downloads/${name}.tar.gz"
- ];
- sha256 = "0pixqnrcf35dnqgv0lp7qlcw7k13620qkhgxr288v7p4iz6ym1zb";
+ url = "${meta.homepage}/downloads/${name}.tar.gz";
+ sha256 = "1lngng84k1kkljl74q0cdqc3s82vn2kimfm02dgm4d6m7x71mvkj";
};
- patches = [
- ./CVE-2013-0211.patch # https://github.com/libarchive/libarchive/commit/22531545
- ./CVE-2015-1197.patch # https://github.com/NixOS/nixpkgs/issues/6799
- # ^ it's CVE-2015-2304 specific to libarchive
- ];
-
buildInputs = [ sharutils libxml2 zlib bzip2 openssl xz lzo ] ++
stdenv.lib.optionals stdenv.isLinux [ e2fsprogs attr acl ];
diff --git a/pkgs/development/libraries/libgphoto2/default.nix b/pkgs/development/libraries/libgphoto2/default.nix
index 55129a94476..af8c1a8f1a2 100644
--- a/pkgs/development/libraries/libgphoto2/default.nix
+++ b/pkgs/development/libraries/libgphoto2/default.nix
@@ -8,6 +8,12 @@ stdenv.mkDerivation rec {
sha256 = "1wjf79ipqwb5phfjjwf15rwgigakylnfqaj4crs5qnds6ba6i1ld";
};
+ patches = [(fetchurl {
+ url = "https://anonscm.debian.org/cgit/pkg-phototools/libgphoto2.git/plain"
+ + "/debian/patches/libjpeg_turbo_1.5.0_fix.patch?id=8ce79a2a02d";
+ sha256 = "114iyhk6idxz2jhnzpf1glqm6d0x0y8cqfpqxz9i96q9j7x3wwin";
+ })];
+
nativeBuildInputs = [ pkgconfig gettext ];
buildInputs = [ libtool libjpeg libusb1 ];
diff --git a/pkgs/development/libraries/libinput/default.nix b/pkgs/development/libraries/libinput/default.nix
index a8dc8f357a7..0efee5b94f7 100644
--- a/pkgs/development/libraries/libinput/default.nix
+++ b/pkgs/development/libraries/libinput/default.nix
@@ -3,6 +3,7 @@
, documentationSupport ? false, doxygen ? null, graphviz ? null # Documentation
, eventGUISupport ? false, cairo ? null, glib ? null, gtk3 ? null # GUI event viewer support
, testsSupport ? false, check ? null, valgrind ? null
+, autoconf, automake
}:
assert documentationSupport -> doxygen != null && graphviz != null;
@@ -32,13 +33,16 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ libevdev mtdev libwacom ]
+ buildInputs = [ libevdev mtdev libwacom autoconf automake ]
++ optionals eventGUISupport [ cairo glib gtk3 ]
++ optionals documentationSupport [ doxygen graphviz ]
++ optionals testsSupport [ check valgrind ];
propagatedBuildInputs = [ udev ];
+ patches = [ ./udev-absolute-path.patch ];
+ patchFlags = [ "-p0" ];
+
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/libinput/udev-absolute-path.patch b/pkgs/development/libraries/libinput/udev-absolute-path.patch
new file mode 100644
index 00000000000..2d3fa966b29
--- /dev/null
+++ b/pkgs/development/libraries/libinput/udev-absolute-path.patch
@@ -0,0 +1,12 @@
+--- configure.ac 2016-05-27 14:00:25.248388226 +0200
++++ configure.ac 2016-05-27 14:01:28.228943416 +0200
+@@ -214,7 +214,8 @@ AM_CONDITIONAL(BUILD_DOCS, [test "x$buil
+ # Used by the udev rules so we can use callouts during testing without
+ # installing everything first. Default is the empty string so the installed
+ # rule will use udev's default path. Override is in udev/Makefile.am
+-AC_SUBST(UDEV_TEST_PATH, "")
++UDEV_TEST_PATH="${UDEV_DIR}/"
++AC_SUBST(UDEV_TEST_PATH)
+ AC_PATH_PROG(SED, [sed])
+
+ AC_CONFIG_FILES([Makefile
diff --git a/pkgs/development/libraries/libjpeg-drop/default.nix b/pkgs/development/libraries/libjpeg-drop/default.nix
new file mode 100644
index 00000000000..ed1b5f5bdb0
--- /dev/null
+++ b/pkgs/development/libraries/libjpeg-drop/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchurl, static ? true }:
+
+with stdenv.lib;
+
+stdenv.mkDerivation rec {
+ name = "libjpeg-drop-9b";
+
+ srcs = [
+ (fetchurl {
+ url = http://www.ijg.org/files/jpegsrc.v9b.tar.gz;
+ sha256 = "0lnhpahgdwlrkd41lx6cr90r199f8mc6ydlh7jznj5klvacd63r4";
+ })
+ (fetchurl {
+ url = http://jpegclub.org/droppatch.v9b.tar.gz;
+ sha256 = "022bnvpird7w5pwbfqpq7j7pwja5kp6x9k3sdypcy3g2nwwy2wwk";
+ })
+ ];
+
+ postUnpack = ''
+ rm jpegtran
+ mv jpegtran.c jpeg-9b/jpegtran.c
+ mv transupp.c jpeg-9b/transupp.c
+ mv transupp.h jpeg-9b/transupp.h
+ '';
+
+ configureFlags = []
+ ++ optional static [ "--enable-static" "--disable-shared" ];
+
+ outputs = [ "dev" "out" "man" "bin" ];
+
+ meta = {
+ homepage = http://jpegclub.org/jpegtran/;
+ description = "Experimental lossless crop 'n' drop (cut & paste) patches for libjpeg";
+ license = stdenv.lib.licenses.free;
+ };
+}
diff --git a/pkgs/development/libraries/libjpeg-turbo/default.nix b/pkgs/development/libraries/libjpeg-turbo/default.nix
index c326e630bd0..7d8de0b40af 100644
--- a/pkgs/development/libraries/libjpeg-turbo/default.nix
+++ b/pkgs/development/libraries/libjpeg-turbo/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, nasm }:
stdenv.mkDerivation rec {
- name = "libjpeg-turbo-1.4.2";
+ name = "libjpeg-turbo-1.5.0";
src = fetchurl {
url = "mirror://sourceforge/libjpeg-turbo/${name}.tar.gz";
- sha256 = "0gi349hp1x7mb98s4mf66sb2xay2kjjxj9ihrriw0yiy0k9va6sj";
+ sha256 = "0pq3lav976d6a1d16yyqrj1b4gmhk1ca4zar6zp00avxlqqpqfcz";
};
patches =
diff --git a/pkgs/development/libraries/libmediainfo/default.nix b/pkgs/development/libraries/libmediainfo/default.nix
index 26416dc1ee1..90869a4c8a5 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.86";
+ version = "0.7.87";
name = "libmediainfo-${version}";
src = fetchurl {
url = "http://mediaarea.net/download/source/libmediainfo/${version}/libmediainfo_${version}.tar.xz";
- sha256 = "14m7cgd93mglc9a4x28pb4yc6nfxhqk7vfryca83vpn80la1lxy0";
+ sha256 = "1gvjvc809mrhpcqr62cihhc6jnwml197xjbgydnzvsghih8dq8s9";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
diff --git a/pkgs/development/libraries/libmsgpack/default.nix b/pkgs/development/libraries/libmsgpack/default.nix
index 5b2c7902c3c..2af7e31c889 100644
--- a/pkgs/development/libraries/libmsgpack/default.nix
+++ b/pkgs/development/libraries/libmsgpack/default.nix
@@ -1,12 +1,12 @@
{ callPackage, fetchFromGitHub, ... } @ args:
callPackage ./generic.nix (args // rec {
- version = "1.1.0";
+ version = "2.0.0";
src = fetchFromGitHub {
owner = "msgpack";
repo = "msgpack-c";
rev = "cpp-${version}";
- sha256 = "1hnpnin6gjiilbzfd75871kamfn9grrf53qpbs061sflvz56fddq";
+ sha256 = "189m44pwpcpf7g4yhzfla4djqyp2kl54wxmwfaj94gwgj5s370i7";
};
})
diff --git a/pkgs/development/libraries/liboauth/default.nix b/pkgs/development/libraries/liboauth/default.nix
index f62fb400199..855d921206e 100644
--- a/pkgs/development/libraries/liboauth/default.nix
+++ b/pkgs/development/libraries/liboauth/default.nix
@@ -9,7 +9,9 @@ stdenv.mkDerivation rec {
sha256 = "07w1aq8y8wld43wmbk2q8134p3bfkp2vma78mmsfgw2jn1bh3xhd";
};
- buildInputs = [ pkgconfig nss nspr ];
+ nativeBuildInputs = [ pkgconfig ];
+
+ propagatedBuildInputs = [ nss nspr ];
configureFlags = [ "--enable-nss" ];
diff --git a/pkgs/development/libraries/libpng/default.nix b/pkgs/development/libraries/libpng/default.nix
index 71b7b2e18ef..9c4a1b13e01 100644
--- a/pkgs/development/libraries/libpng/default.nix
+++ b/pkgs/development/libraries/libpng/default.nix
@@ -3,11 +3,11 @@
assert zlib != null;
let
- version = "1.6.21";
- sha256 = "10r0xqasm8fi0dx95bpca63ab4myb8g600ypyndj2r4jxd4ii3vc";
+ version = "1.6.23";
+ sha256 = "1wb2j8sba6g2h4vmv4pwsp93q74qw4gyqqs4b7vfjmpcv9xix4kd";
patch_src = fetchurl {
url = "mirror://sourceforge/libpng-apng/libpng-${version}-apng.patch.gz";
- sha256 = "0wwcc52yzjaxvpfkicz20j7yzpy02hpnsm4jjlvw74gy4qjhx9vd";
+ sha256 = "1lvsn1kmarzpn269zgykjfmxq16zrdhpd1a75nzgclx97436x408";
};
whenPatched = stdenv.lib.optionalString apngSupport;
@@ -21,17 +21,14 @@ in stdenv.mkDerivation rec {
postPatch = whenPatched "gunzip < ${patch_src} | patch -Np1";
outputs = [ "dev" "out" "man" ];
+ outputBin = "dev";
propagatedBuildInputs = [ zlib ];
- preConfigure = "export bin=$dev";
-
# it's hard to cross-run tests and some check programs didn't compile anyway
makeFlags = stdenv.lib.optional (!doCheck) "check_PROGRAMS=";
doCheck = ! stdenv ? cross;
- postInstall = ''mv "$out/bin" "$dev/bin"'';
-
passthru = { inherit zlib; };
meta = with stdenv.lib; {
diff --git a/pkgs/development/libraries/libqrencode/default.nix b/pkgs/development/libraries/libqrencode/default.nix
new file mode 100644
index 00000000000..1d0463c090a
--- /dev/null
+++ b/pkgs/development/libraries/libqrencode/default.nix
@@ -0,0 +1,34 @@
+{ stdenv, fetchurl, autoconf, automake, pkgconfig,
+ libtool, SDL2, libpng }:
+
+stdenv.mkDerivation rec {
+ name = "libqrencode-${version}";
+ version = "3.4.4";
+
+ src = fetchurl {
+ url = "https://fukuchi.org/works/qrencode/qrencode-${version}.tar.gz";
+ sha1 = "644054a76c8b593acb66a8c8b7dcf1b987c3d0b2";
+ sha256 = "0wiagx7i8p9zal53smf5abrnh9lr31mv0p36wg017401jrmf5577";
+ };
+
+ buildInputs = [ autoconf automake pkgconfig libtool SDL2 libpng ];
+
+ propagatedBuildInputs = [ SDL2 libpng ];
+
+ doCheck = true;
+
+ meta = with stdenv.lib; {
+ homepage = "http://fukuchi.org/works/qrencode/";
+ description = "A C library for encoding data in a QR Code symbol";
+
+ longDescription = ''
+ Libqrencode is a C library for encoding data in a QR Code symbol,
+ a kind of 2D symbology that can be scanned by handy terminals
+ such as a mobile phone with CCD.
+ '';
+
+ license = licenses.gpl2Plus;
+ maintainers = [ maintainers.adolfogc ];
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/development/libraries/libtomcrypt/default.nix b/pkgs/development/libraries/libtomcrypt/default.nix
index e960f5ef57f..896c907bbc8 100644
--- a/pkgs/development/libraries/libtomcrypt/default.nix
+++ b/pkgs/development/libraries/libtomcrypt/default.nix
@@ -4,7 +4,7 @@ stdenv.mkDerivation {
name = "libtomcrypt-1.17";
src = fetchurl {
- url = "http://libtom.org/files/crypt-1.17.tar.bz2";
+ url = "https://github.com/libtom/libtomcrypt/releases/download/1.17/crypt-1.17.tar.bz2";
sha256 = "e33b47d77a495091c8703175a25c8228aff043140b2554c08a3c3cd71f79d116";
};
diff --git a/pkgs/development/libraries/libtommath/default.nix b/pkgs/development/libraries/libtommath/default.nix
index d76237e141d..8e9b79b39d3 100644
--- a/pkgs/development/libraries/libtommath/default.nix
+++ b/pkgs/development/libraries/libtommath/default.nix
@@ -1,11 +1,11 @@
{stdenv, fetchurl, libtool}:
stdenv.mkDerivation {
- name = "libtommath-0.39";
+ name = "libtommath-1.0";
src = fetchurl {
- url = http://math.libtomcrypt.com/files/ltm-0.39.tar.bz2;
- sha256 = "1kjx8rrw62nanzc5qp8fj6r3ybhw8ca60ahkyb70f10aiij49zs2";
+ url = https://github.com/libtom/libtommath/releases/download/v1.0/ltm-1.0.tar.xz;
+ sha256 = "0v5mpd8zqjfs2hr900w1mxifz23xylyjdqyx1i1wl7q9xvwpsflr";
};
buildInputs = [libtool];
diff --git a/pkgs/development/libraries/libui/default.nix b/pkgs/development/libraries/libui/default.nix
new file mode 100644
index 00000000000..5fabd127580
--- /dev/null
+++ b/pkgs/development/libraries/libui/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchgit, cmake, pkgconfig, gtk3 }:
+
+stdenv.mkDerivation rec {
+ version = "3.1.a";
+ name = "libui-${version}";
+ src = fetchgit {
+ url = "https://github.com/andlabs/libui.git";
+ rev = "6ebdc96b93273c3cedf81159e7843025caa83058";
+ sha256 = "1lpbfa298c61aarlzgp7vghrmxg1274pzxh1j9isv8x758gk6mfn";
+ };
+
+ buildInputs = [ cmake pkgconfig gtk3 ];
+
+ installPhase = ''
+ mkdir -p $out
+ mv ./out/libui.so.0 $out/libui.so.0
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Simple and portable (but not inflexible) GUI library in C that uses the native GUI technologies of each platform it supports.";
+ homepage = https://github.com/andlabs/libui;
+ platforms = platforms.linux;
+ license = licenses.mit;
+ };
+}
diff --git a/pkgs/development/libraries/libvirt/default.nix b/pkgs/development/libraries/libvirt/default.nix
index 300f50d9044..12b4459cbca 100644
--- a/pkgs/development/libraries/libvirt/default.nix
+++ b/pkgs/development/libraries/libvirt/default.nix
@@ -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 systemd.udev.lib libcap_ng
+ libpciaccess devicemapper lvm2 utillinux systemd libcap_ng
libnl numad numactl xen zfs
] ++ stdenv.lib.optionals stdenv.isDarwin [
libiconv gmp
];
preConfigure = stdenv.lib.optionalString stdenv.isLinux ''
- PATH=${iproute}/sbin:${iptables}/sbin:${ebtables}/sbin:${lvm2}/sbin:${systemd.udev.bin}/bin:$PATH
+ PATH=${iproute}/sbin:${iptables}/sbin:${ebtables}/sbin:${lvm2}/sbin:${systemd}/bin:$PATH
substituteInPlace configure \
--replace 'as_dummy="/bin:/usr/bin:/usr/sbin"' 'as_dummy="${numad}/bin"'
'' + ''
diff --git a/pkgs/development/libraries/ncurses/default.nix b/pkgs/development/libraries/ncurses/default.nix
index edd26360596..c1037a81c85 100644
--- a/pkgs/development/libraries/ncurses/default.nix
+++ b/pkgs/development/libraries/ncurses/default.nix
@@ -1,24 +1,26 @@
-{ lib, stdenv, fetchurl
+{ lib, stdenv, fetchurl, pkgconfig
+, abiVersion
, mouseSupport ? false
, unicode ? true
, gpm
-
-# Extra Options
-, abiVersion ? "5"
}:
-
+let
+ version = if abiVersion == "5" then "5.9" else "6.0";
+ sha256 = if abiVersion == "5"
+ then "0fsn7xis81za62afan0vvm38bvgzg5wfmv1m86flqcj0nj7jjilh"
+ else "0q3jck7lna77z5r42f13c4xglc7azd19pxfrjrpgp2yf615w4lgm";
+in
stdenv.mkDerivation rec {
- name = "ncurses-5.9";
+ name = "ncurses-${version}";
src = fetchurl {
url = "mirror://gnu/ncurses/${name}.tar.gz";
- sha256 = "0fsn7xis81za62afan0vvm38bvgzg5wfmv1m86flqcj0nj7jjilh";
+ inherit sha256;
};
- # gcc-5.patch should be removed after 5.9
- patches = [ ./clang.patch ./gcc-5.patch ];
+ patches = [ ./clang.patch ] ++ lib.optional (abiVersion == "5" && stdenv.cc.isGNU) ./gcc-5.patch;
outputs = [ "dev" "out" "man" ];
setOutputFlags = false; # some aren't supported
@@ -33,6 +35,7 @@ stdenv.mkDerivation rec {
# Only the C compiler, and explicitly not C++ compiler needs this flag on solaris:
CFLAGS = lib.optionalString stdenv.isSunOS "-D_XOPEN_SOURCE_EXTENDED";
+ nativeBuildInputs = [ pkgconfig ];
buildInputs = lib.optional (mouseSupport && stdenv.isLinux) gpm;
preConfigure = ''
diff --git a/pkgs/development/libraries/netcdf/default.nix b/pkgs/development/libraries/netcdf/default.nix
index a65b41c0261..70426c00237 100644
--- a/pkgs/development/libraries/netcdf/default.nix
+++ b/pkgs/development/libraries/netcdf/default.nix
@@ -1,6 +1,5 @@
{ stdenv
, fetchurl
-, zlib
, hdf5
, m4
, curl # for DAP
@@ -16,7 +15,7 @@ in stdenv.mkDerivation rec {
sha256 = "06ds8zm4qvjlqvv4qb637cqr0xgvbhnghrddisad5vj81s5kvpmx";
};
- buildInputs = [ hdf5 zlib m4 curl mpi];
+ buildInputs = [ hdf5 m4 curl mpi];
passthru = {
mpiSupport = mpiSupport;
diff --git a/pkgs/development/libraries/osm-gps-map/default.nix b/pkgs/development/libraries/osm-gps-map/default.nix
new file mode 100644
index 00000000000..7dc8b8c6112
--- /dev/null
+++ b/pkgs/development/libraries/osm-gps-map/default.nix
@@ -0,0 +1,29 @@
+{ cairo, fetchzip, glib, gnome3, gobjectIntrospection, pkgconfig, stdenv }:
+
+stdenv.mkDerivation rec {
+ name = "osm-gps-map-${version}";
+ version = "1.1.0";
+
+ src = fetchzip {
+ url = "https://github.com/nzjrs/osm-gps-map/releases/download/${version}/osm-gps-map-${version}.tar.gz";
+ sha256 = "0fal3mqcf3yypir4f7njz0dm5wr7lqwpimjx28wz9imh48cqx9n9";
+ };
+
+ outputs = [ "dev" "out" "doc" ];
+
+ nativeBuildInputs = [ pkgconfig ];
+
+ buildInputs = [
+ cairo glib gobjectIntrospection
+ ] ++ (with gnome3; [
+ gnome_common gtk libsoup
+ ]);
+
+ meta = with stdenv.lib; {
+ description = "Gtk+ widget for displaying OpenStreetMap tiles";
+ homepage = https://nzjrs.github.io/osm-gps-map;
+ license = licenses.gpl2Plus;
+ maintainers = with maintainers; [ hrdinka ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/development/libraries/qrupdate/default.nix b/pkgs/development/libraries/qrupdate/default.nix
index aaa9ab8a61a..89cf865be25 100644
--- a/pkgs/development/libraries/qrupdate/default.nix
+++ b/pkgs/development/libraries/qrupdate/default.nix
@@ -28,7 +28,9 @@ stdenv.mkDerivation {
buildFlags = [ "lib" "solib" ];
- installTargets = "install";
+ installTargets = if stdenv.isDarwin
+ then ["install-staticlib" "install-shlib"]
+ else "install";
buildInputs = [ gfortran openblas ];
}
diff --git a/pkgs/development/libraries/qt-3/default.nix b/pkgs/development/libraries/qt-3/default.nix
index 40fa63d75ca..3b6d2a3cc69 100644
--- a/pkgs/development/libraries/qt-3/default.nix
+++ b/pkgs/development/libraries/qt-3/default.nix
@@ -25,7 +25,7 @@ stdenv.mkDerivation {
setupHook = ./setup-hook.sh;
src = fetchurl {
- url = ftp://ftp.trolltech.com/qt/source/qt-x11-free-3.3.8.tar.bz2;
+ url = http://download.qt.io/archive/qt/3/qt-x11-free-3.3.8.tar.bz2;
sha256 = "0jd4g3bwkgk2s4flbmgisyihm7cam964gzb3pawjlkhas01zghz8";
};
@@ -39,14 +39,14 @@ stdenv.mkDerivation {
-I${xextproto}/include
${if openglSupport then "-dlopen-opengl
-L${mesa}/lib -I${mesa}/include
- -L${libXmu}/lib -I${libXmu}/include" else ""}
+ -L${libXmu.out}/lib -I${libXmu.dev}/include" else ""}
${if threadSupport then "-thread" else "-no-thread"}
- ${if xrenderSupport then "-xrender -L${libXrender}/lib -I${libXrender}/include" else "-no-xrender"}
+ ${if xrenderSupport then "-xrender -L${libXrender.out}/lib -I${libXrender.dev}/include" else "-no-xrender"}
${if xrandrSupport then "-xrandr
- -L${libXrandr}/lib -I${libXrandr}/include
+ -L${libXrandr.out}/lib -I${libXrandr.dev}/include
-I${randrproto}/include" else "-no-xrandr"}
- ${if xineramaSupport then "-xinerama -L${libXinerama}/lib -I${libXinerama}/include" else "-no-xinerama"}
- ${if cursorSupport then "-L${libXcursor}/lib -I${libXcursor}/include" else ""}
+ ${if xineramaSupport then "-xinerama -L${libXinerama.out}/lib -I${libXinerama.dev}/include" else "-no-xinerama"}
+ ${if cursorSupport then "-L${libXcursor.out}/lib -I${libXcursor.dev}/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.out}/lib -I${libXft.dev}/include
diff --git a/pkgs/development/libraries/qt-5/5.5/default.nix b/pkgs/development/libraries/qt-5/5.5/default.nix
index 9cfc052e730..24b4c749853 100644
--- a/pkgs/development/libraries/qt-5/5.5/default.nix
+++ b/pkgs/development/libraries/qt-5/5.5/default.nix
@@ -49,6 +49,8 @@ let
outputs = args.outputs or [ "dev" "out" ];
setOutputFlags = args.setOutputFlags or false;
+ setupHook = ./setup-hook.sh;
+
enableParallelBuilding = args.enableParallelBuilding or true;
meta = self.qtbase.meta // (args.meta or {});
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 3b537430371..b0d0bec9e3f 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
@@ -2,11 +2,11 @@ wrapQtProgram() {
local prog="$1"
shift
wrapProgram "$prog" \
- --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 : "$NIX_WRAP_XDG_CONFIG_DIRS" \
- --prefix XDG_DATA_DIRS : "$NIX_WRAP_XDG_DATA_DIRS" \
+ --set QT_PLUGIN_PATH "$QT_PLUGIN_PATH" \
+ --set QML_IMPORT_PATH "$QML_IMPORT_PATH" \
+ --set QML2_IMPORT_PATH "$QML2_IMPORT_PATH" \
+ --prefix XDG_DATA_DIRS : "$RUNTIME_XDG_DATA_DIRS" \
+ --prefix XDG_CONFIG_DIRS : "$RUNTIME_XDG_CONFIG_DIRS" \
"$@"
}
@@ -16,11 +16,11 @@ makeQtWrapper() {
shift
shift
makeWrapper "$old" "$new" \
- --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 : "$NIX_WRAP_XDG_CONFIG_DIRS" \
- --prefix XDG_DATA_DIRS : "$NIX_WRAP_XDG_DATA_DIRS" \
+ --set QT_PLUGIN_PATH "$QT_PLUGIN_PATH" \
+ --set QML_IMPORT_PATH "$QML_IMPORT_PATH" \
+ --set QML2_IMPORT_PATH "$QML2_IMPORT_PATH" \
+ --prefix XDG_DATA_DIRS : "$RUNTIME_XDG_DATA_DIRS" \
+ --prefix XDG_CONFIG_DIRS : "$RUNTIME_XDG_CONFIG_DIRS" \
"$@"
}
@@ -29,10 +29,8 @@ _makeQtWrapperSetup() {
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"
+ export RUNTIME_XDG_DATA_DIRS="$XDG_DATA_DIRS${XDG_DATA_DIRS:+:}${!outputBin}/share"
+ export RUNTIME_XDG_CONFIG_DIRS="$XDG_CONFIG_DIRS${XDG_CONFIG_DIRS:+:}${!outputBin}/etc/xdg"
}
prePhases+=(_makeQtWrapperSetup)
diff --git a/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh b/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh
index 5401a71bc4c..696b4ea8dad 100644
--- a/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh
+++ b/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh
@@ -1,50 +1,16 @@
-if [[ -z "$QMAKE" ]]; then
+qmakeConfigurePhase() {
+ runHook preConfigure
-_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
+ qmake PREFIX=$out $qmakeFlags
+
+ runHook postConfigure
}
-_qtLinkModule() {
- if [ -d "$1/mkspecs" ]; then
- # $1 is a Qt module
- _qtLinkDependencyDir "$1" mkspecs
+if [ -z "$dontUseQmakeConfigure" -a -z "$configurePhase" ]; then
+ configurePhase=qmakeConfigurePhase
+fi
- for dir in bin include lib share; do
- if [ -d "$1/$dir" ]; then
- _qtLinkDependencyDir "$1" "$dir"
- fi
- done
- fi
-}
-
-_qtRmModules() {
- cat "$out/nix-support/qt-inputs" | while read file; do
- if [ -h "$out/$file" ]; then
- rm "$out/$file"
- fi
- done
-
- cat "$out/nix-support/qt-inputs" | while read file; do
- if [ -d "$out/$file" ]; then
- rmdir --ignore-fail-on-non-empty -p "$out/$file"
- fi
- done
-
- rm "$out/nix-support/qt-inputs"
-}
-
-_qtRmQmake() {
- rm "$qtOut/bin/qmake" "$qtOut/bin/qt.conf"
-}
-
-_qtSetQmakePath() {
- export PATH="$qtOut/bin${PATH:+:}$PATH"
-}
-
-_qtMultioutModuleDevs() {
+_qtModuleMultioutDevsPre() {
# We cannot simply set these paths in configureFlags because libQtCore retains
# references to the paths it was built with.
moveToOutput "bin" "${!outputDev}"
@@ -53,12 +19,14 @@ _qtMultioutModuleDevs() {
# The destination directory must exist or moveToOutput will do nothing
mkdir -p "${!outputDev}/share"
moveToOutput "share/doc" "${!outputDev}"
+}
+_qtModuleMultioutDevsPost() {
# Move libtool archives and qmake project files to $dev/lib
if [ "z${!outputLib}" != "z${!outputDev}" ]; then
pushd "${!outputLib}"
if [ -d "lib" ]; then
- find lib \( -name '*.a' -o -name '*.la' -o -name '*.prl' -print0 \) | \
+ find lib \( -name '*.a' -o -name '*.la' -o -name '*.prl' \) -print0 | \
while read -r -d $'\0' file; do
mkdir -p "${!outputDev}/$(dirname "$file")"
mv "${!outputLib}/$file" "${!outputDev}/$file"
@@ -68,53 +36,7 @@ _qtMultioutModuleDevs() {
fi
}
-_qtRmQtOut() {
- rm -fr "$qtOut"
-}
-
-qmakeConfigurePhase() {
- runHook preConfigure
-
- qmake PREFIX=$out $qmakeFlags
-
- runHook postConfigure
-}
-
-qtOut=""
-if [[ -z "$NIX_QT_SUBMODULE" ]]; then
- qtOut=`mktemp -d`
-else
- qtOut=$out
-fi
-
-mkdir -p "$qtOut/bin" "$qtOut/mkspecs" "$qtOut/include" "$qtOut/nix-support" "$qtOut/lib" "$qtOut/share"
-
-cp "@qt_dev@/bin/qmake" "$qtOut/bin"
-cat >"$qtOut/bin/qt.conf" <> "$NIX_QT5_TMP/nix-support/qt-inputs"
+ done
+
+ postHooks+=(_qtSetCMakePrefix)
+
+ cp "@dev@/bin/qmake" "$NIX_QT5_TMP/bin"
+ echo "bin/qmake" >> "$NIX_QT5_TMP/nix-support/qt-inputs"
+
+ cat >"$NIX_QT5_TMP/bin/qt.conf" <> "$NIX_QT5_TMP/nix-support/qt-inputs"
+
+ export QMAKE="$NIX_QT5_TMP/bin/qmake"
+
+ # Set PATH to find qmake first in a preConfigure hook
+ # It must run after all the envHooks!
+ preConfigureHooks+=(_qtSetQmakePath)
+fi
+
+qt5LinkModuleDir() {
+ if [ -d "$1/$2" ]; then
+ @lndir@/bin/lndir -silent "$1/$2" "$NIX_QT5_TMP/$2"
+ find "$1/$2" -printf "$2/%P\n" >> "$NIX_QT5_TMP/nix-support/qt-inputs"
+ fi
+}
+
+NIX_QT5_MODULES="${NIX_QT5_MODULES}${NIX_QT5_MODULES:+:}@out@"
+NIX_QT5_MODULES_DEV="${NIX_QT5_MODULES_DEV}${NIX_QT5_MODULES_DEV:+:}@dev@"
+
+_qtLinkAllModules() {
+ IFS=: read -a modules <<< $NIX_QT5_MODULES
+ for module in ${modules[@]}; do
+ qt5LinkModuleDir "$module" "lib"
+ done
+
+ IFS=: read -a modules <<< $NIX_QT5_MODULES_DEV
+ for module in ${modules[@]}; do
+ qt5LinkModuleDir "$module" "bin"
+ qt5LinkModuleDir "$module" "include"
+ qt5LinkModuleDir "$module" "lib"
+ qt5LinkModuleDir "$module" "mkspecs"
+ qt5LinkModuleDir "$module" "share"
+ done
+}
+
+preConfigureHooks+=(_qtLinkAllModules)
+
+_qtFixCMakePaths() {
+ find "${!outputLib}" -name "*.cmake" | while read file; do
+ substituteInPlace "$file" \
+ --subst-var-by NIX_OUT "${!outputLib}" \
+ --subst-var-by NIX_DEV "${!outputDev}"
+ done
+}
+
+if [ -n "$NIX_QT_SUBMODULE" ]; then
+ postInstallHooks+=(_qtFixCMakePaths)
+fi
diff --git a/pkgs/development/libraries/qt-5/5.5/qtlocation.nix b/pkgs/development/libraries/qt-5/5.5/qtlocation.nix
index 0e2ad8bafb3..bd11d4816ff 100644
--- a/pkgs/development/libraries/qt-5/5.5/qtlocation.nix
+++ b/pkgs/development/libraries/qt-5/5.5/qtlocation.nix
@@ -4,7 +4,6 @@ qtSubmodule {
name = "qtlocation";
qtInputs = [ qtbase qtmultimedia ];
postFixup = ''
- fixQtModuleCMakeConfig "Location"
fixQtModuleCMakeConfig "Positioning"
'';
}
diff --git a/pkgs/development/libraries/qt-5/5.5/setup-hook.sh b/pkgs/development/libraries/qt-5/5.5/setup-hook.sh
new file mode 100644
index 00000000000..e41433c1138
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.5/setup-hook.sh
@@ -0,0 +1,2 @@
+NIX_QT5_MODULES="${NIX_QT5_MODULES}${NIX_QT5_MODULES:+:}@out@"
+NIX_QT5_MODULES_DEV="${NIX_QT5_MODULES_DEV}${NIX_QT5_MODULES_DEV:+:}@dev@"
diff --git a/pkgs/development/libraries/qt-5/5.6/make-qt-wrapper.sh b/pkgs/development/libraries/qt-5/5.6/make-qt-wrapper.sh
index 3b537430371..b0d0bec9e3f 100644
--- a/pkgs/development/libraries/qt-5/5.6/make-qt-wrapper.sh
+++ b/pkgs/development/libraries/qt-5/5.6/make-qt-wrapper.sh
@@ -2,11 +2,11 @@ wrapQtProgram() {
local prog="$1"
shift
wrapProgram "$prog" \
- --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 : "$NIX_WRAP_XDG_CONFIG_DIRS" \
- --prefix XDG_DATA_DIRS : "$NIX_WRAP_XDG_DATA_DIRS" \
+ --set QT_PLUGIN_PATH "$QT_PLUGIN_PATH" \
+ --set QML_IMPORT_PATH "$QML_IMPORT_PATH" \
+ --set QML2_IMPORT_PATH "$QML2_IMPORT_PATH" \
+ --prefix XDG_DATA_DIRS : "$RUNTIME_XDG_DATA_DIRS" \
+ --prefix XDG_CONFIG_DIRS : "$RUNTIME_XDG_CONFIG_DIRS" \
"$@"
}
@@ -16,11 +16,11 @@ makeQtWrapper() {
shift
shift
makeWrapper "$old" "$new" \
- --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 : "$NIX_WRAP_XDG_CONFIG_DIRS" \
- --prefix XDG_DATA_DIRS : "$NIX_WRAP_XDG_DATA_DIRS" \
+ --set QT_PLUGIN_PATH "$QT_PLUGIN_PATH" \
+ --set QML_IMPORT_PATH "$QML_IMPORT_PATH" \
+ --set QML2_IMPORT_PATH "$QML2_IMPORT_PATH" \
+ --prefix XDG_DATA_DIRS : "$RUNTIME_XDG_DATA_DIRS" \
+ --prefix XDG_CONFIG_DIRS : "$RUNTIME_XDG_CONFIG_DIRS" \
"$@"
}
@@ -29,10 +29,8 @@ _makeQtWrapperSetup() {
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"
+ export RUNTIME_XDG_DATA_DIRS="$XDG_DATA_DIRS${XDG_DATA_DIRS:+:}${!outputBin}/share"
+ export RUNTIME_XDG_CONFIG_DIRS="$XDG_CONFIG_DIRS${XDG_CONFIG_DIRS:+:}${!outputBin}/etc/xdg"
}
prePhases+=(_makeQtWrapperSetup)
diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/setup-hook.sh b/pkgs/development/libraries/qt-5/5.6/qtbase/setup-hook.sh
index 8d1a453787f..6d8989281eb 100644
--- a/pkgs/development/libraries/qt-5/5.6/qtbase/setup-hook.sh
+++ b/pkgs/development/libraries/qt-5/5.6/qtbase/setup-hook.sh
@@ -28,7 +28,6 @@ _qtPropagate() {
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
@@ -43,9 +42,6 @@ _qtPropagateNative() {
for dir in "lib/qt5/plugins" "lib/qt5/qml" "lib/qt5/imports"; do
if [ -d "$1/$dir" ]; then
propagateOnce propagatedNativeBuildInputs "$1"
- if [ -z "$crossConfig" ]; then
- propagateOnce propagatedUserEnvPkgs "$1"
- fi
break
fi
done
diff --git a/pkgs/development/libraries/science/math/superlu/add-superlu-lib-as-dependency-for-the-unit-tests.patch b/pkgs/development/libraries/science/math/superlu/add-superlu-lib-as-dependency-for-the-unit-tests.patch
new file mode 100644
index 00000000000..29d86238af0
--- /dev/null
+++ b/pkgs/development/libraries/science/math/superlu/add-superlu-lib-as-dependency-for-the-unit-tests.patch
@@ -0,0 +1,7 @@
+--- a/TESTING/MATGEN/CMakeLists.txt
++++ b/TESTING/MATGEN/CMakeLists.txt
+@@ -97,3 +97,4 @@ if(enable_complex16)
+ endif()
+
+ add_library(matgen ${sources})
++target_link_libraries(matgen superlu)
diff --git a/pkgs/development/libraries/science/math/superlu/default.nix b/pkgs/development/libraries/science/math/superlu/default.nix
new file mode 100644
index 00000000000..9938a3096a0
--- /dev/null
+++ b/pkgs/development/libraries/science/math/superlu/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchurl, cmake,
+ gfortran, openblasCompat}:
+
+stdenv.mkDerivation rec {
+ version = "5.2.1";
+ name = "superlu-${version}";
+
+ src = fetchurl {
+ url = "http://crd-legacy.lbl.gov/~xiaoye/SuperLU/superlu_${version}.tar.gz";
+ sha256 = "0qzlb7cd608q62kyppd0a8c65l03vrwqql6gsm465rky23b6dyr8";
+ };
+
+ buildInputs = [ cmake gfortran ];
+
+ propagatedBuildInputs = [ openblasCompat ];
+
+ cmakeFlags = [
+ "-DBUILD_SHARED_LIBS=true"
+ "-DUSE_XSDK_DEFAULTS=true"
+ ];
+
+ patches = [
+ ./find-openblas-library.patch
+ ./add-superlu-lib-as-dependency-for-the-unit-tests.patch
+ ];
+
+ doCheck = true;
+ checkTarget = "test";
+
+ meta = {
+ homepage = http://crd-legacy.lbl.gov/~xiaoye/SuperLU/;
+ license = http://crd-legacy.lbl.gov/~xiaoye/SuperLU/License.txt;
+ description = "A library for the solution of large, sparse, nonsymmetric systems of linear equations";
+ platforms = stdenv.lib.platforms.unix;
+ };
+}
diff --git a/pkgs/development/libraries/science/math/superlu/find-openblas-library.patch b/pkgs/development/libraries/science/math/superlu/find-openblas-library.patch
new file mode 100644
index 00000000000..ce7bc6974c9
--- /dev/null
+++ b/pkgs/development/libraries/science/math/superlu/find-openblas-library.patch
@@ -0,0 +1,11 @@
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -75,6 +75,8 @@ set(CMAKE_C_FLAGS_RELEASE "-O3" CACHE STRING "")
+ ######################################################################
+ #
+ #--------------------- BLAS ---------------------
++find_package(OpenBLAS)
++set(TPL_BLAS_LIBRARIES ${OpenBLAS_LIBRARIES})
+ if(NOT enable_blaslib)
+ if (TPL_BLAS_LIBRARIES)
+ set(BLAS_FOUND TRUE)
diff --git a/pkgs/development/libraries/sqlite/default.nix b/pkgs/development/libraries/sqlite/default.nix
index 6dded64e0f5..1e59745b34a 100644
--- a/pkgs/development/libraries/sqlite/default.nix
+++ b/pkgs/development/libraries/sqlite/default.nix
@@ -3,11 +3,11 @@
assert interactive -> readline != null && ncurses != null;
stdenv.mkDerivation {
- name = "sqlite-3.12.2";
+ name = "sqlite-3.13.0";
src = fetchurl {
- url = "http://sqlite.org/2016/sqlite-autoconf-3120200.tar.gz";
- sha1 = "b43c2e7238e54c50b95fbbd85c48792f4f39af8c";
+ url = "http://sqlite.org/2016/sqlite-autoconf-3130000.tar.gz";
+ sha256 = "0sq88jbwsk48i41f7m7rkw9xvijq011nsbs7pl49s31inck70yg2";
};
outputs = [ "dev" "out" "bin" ];
diff --git a/pkgs/development/libraries/tk/generic.nix b/pkgs/development/libraries/tk/generic.nix
index c3bab0b2f86..934bfa6a9e9 100644
--- a/pkgs/development/libraries/tk/generic.nix
+++ b/pkgs/development/libraries/tk/generic.nix
@@ -17,9 +17,11 @@ stdenv.mkDerivation {
"--with-tcl=${tcl}/lib"
];
- buildInputs = [ pkgconfig tcl libXft ]
+ buildInputs = [ pkgconfig ]
++ stdenv.lib.optional stdenv.isDarwin fontconfig;
+ propagatedBuildInputs = [ tcl libXft ];
+
NIX_CFLAGS_LINK = if stdenv.isDarwin then "-lfontconfig" else null;
inherit tcl;
diff --git a/pkgs/development/libraries/unittest-cpp/default.nix b/pkgs/development/libraries/unittest-cpp/default.nix
new file mode 100644
index 00000000000..e0ce2ab224e
--- /dev/null
+++ b/pkgs/development/libraries/unittest-cpp/default.nix
@@ -0,0 +1,26 @@
+{stdenv, fetchFromGitHub, cmake}:
+
+with stdenv.lib;
+
+stdenv.mkDerivation rec {
+ name = "unittest-cpp-${version}";
+ version = "1.6.1";
+
+ src = fetchFromGitHub {
+ owner = "unittest-cpp";
+ repo = "unittest-cpp";
+ rev = "v${version}";
+ sha256 = "1sva2bm90z4vmwwvp0af82f7p4sdq5j2jjqzhs2ppihdkggn62d1";
+ };
+
+ buildInputs = [cmake];
+
+ doCheck = false;
+
+ meta = {
+ homepage = "https://github.com/unittest-cpp/unittest-cpp";
+ description = "Lightweight unit testing framework for C++";
+ license = licenses.mit;
+ maintainers = [maintainers.tohl];
+ };
+}
diff --git a/pkgs/development/libraries/webkitgtk/2.4.nix b/pkgs/development/libraries/webkitgtk/2.4.nix
index cc7644f742d..e6e61e0482c 100644
--- a/pkgs/development/libraries/webkitgtk/2.4.nix
+++ b/pkgs/development/libraries/webkitgtk/2.4.nix
@@ -15,7 +15,7 @@ assert stdenv.isDarwin -> !enableCredentialStorage;
with stdenv.lib;
stdenv.mkDerivation rec {
name = "webkitgtk-${version}";
- version = "2.4.9";
+ version = "2.4.11";
meta = with stdenv.lib; {
description = "Web content rendering engine, GTK+ port";
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "http://webkitgtk.org/releases/${name}.tar.xz";
- sha256 = "0r651ar3p0f8zwl7764kyimxk5hy88cwy116pv8cl5l8hbkjkpxg";
+ sha256 = "1xsvnvyvlywwyf6m9ainpsg87jkxjmd37q6zgz9cxb7v3c2ym2jq";
};
CC = "cc";
@@ -46,6 +46,7 @@ stdenv.mkDerivation rec {
configureFlags = with stdenv.lib; [
"--disable-geolocation"
+ "--disable-jit"
(optionalString enableIntrospection "--enable-introspection")
] ++ optional withGtk2 [
"--with-gtk=2.0"
diff --git a/pkgs/development/pharo/vm/default.nix b/pkgs/development/pharo/vm/default.nix
index 0ebbb34f8ae..aca5c37d265 100644
--- a/pkgs/development/pharo/vm/default.nix
+++ b/pkgs/development/pharo/vm/default.nix
@@ -16,12 +16,12 @@ rec {
};
pharo-spur = pharo-vm-build rec {
- version = "2016.05.04";
+ version = "2016.07.16";
name = "pharo-vm-spur-i386-${version}";
binary-basename = "pharo-spur-vm";
src = fetchurl {
url = "${base-url}/pharo-vm-spur-${version}.tar.bz2";
- sha256 = "01xvpcp9mslxmfjpi43jhgf8jnx20dqngwrfyi838il61128hwq2";
+ sha256 = "07nk4w5wh7gcf27cch5paqp9zdlshnknpv4y7imxlkjd76viac2b";
};
};
}
diff --git a/pkgs/development/python-modules/h5py/default.nix b/pkgs/development/python-modules/h5py/default.nix
index 5b1ca192790..37265a88e2c 100644
--- a/pkgs/development/python-modules/h5py/default.nix
+++ b/pkgs/development/python-modules/h5py/default.nix
@@ -1,17 +1,16 @@
{ stdenv, fetchurl, python, buildPythonPackage
, numpy, hdf5, cython, six, pkgconfig
-, mpiSupport ? false, mpi4py ? null, mpi ? null }:
+, mpi4py ? null }:
-assert mpiSupport == hdf5.mpiSupport;
-assert mpiSupport -> mpi != null
- && mpi4py != null
- && mpi == mpi4py.mpi
- && mpi == hdf5.mpi
- ;
+assert hdf5.mpiSupport -> mpi4py != null && hdf5.mpi == mpi4py.mpi;
with stdenv.lib;
-buildPythonPackage rec {
+let
+ mpi = hdf5.mpi;
+ mpiSupport = hdf5.mpiSupport;
+
+in buildPythonPackage rec {
name = "h5py-${version}";
version = "2.5.0";
diff --git a/pkgs/development/python-modules/pyqt/5.x.nix b/pkgs/development/python-modules/pyqt/5.x.nix
index 71fb5cb3657..7ec89ffd7ee 100644
--- a/pkgs/development/python-modules/pyqt/5.x.nix
+++ b/pkgs/development/python-modules/pyqt/5.x.nix
@@ -27,6 +27,8 @@ in stdenv.mkDerivation {
propagatedBuildInputs = [ sip ];
configurePhase = ''
+ runHook preConfigure
+
mkdir -p $out
lndir ${pythonDBus} $out
@@ -39,11 +41,14 @@ in stdenv.mkDerivation {
${python.executable} configure.py -w \
--confirm-license \
--dbus=$out/include/dbus-1.0 \
+ --qmake=$QMAKE \
--no-qml-plugin \
--bindir=$out/bin \
--destdir=$out/lib/${python.libPrefix}/site-packages \
--sipdir=$out/share/sip \
--designer-plugindir=$out/plugins/designer
+
+ runHook postConfigure
'';
postInstall = ''
diff --git a/pkgs/development/r-modules/default.nix b/pkgs/development/r-modules/default.nix
index c7eeb431bb6..92b3dc3c71c 100644
--- a/pkgs/development/r-modules/default.nix
+++ b/pkgs/development/r-modules/default.nix
@@ -1137,18 +1137,7 @@ let
"choroplethr" # depends on broken package acs
"acs" # broken build
"spray" # depends on broken package partitions
- "simmr" # depends on broken package rjags
- "morse" # depends on broken package rjags
- "gemtc" # depends on broken package rjags
- "EasyMARK" # depends on broken package rjags
- "PVAClone" # depends on broken package rjags
- "sharx" # depends on broken package rjags
- "dcmle" # depends on broken package rjags
- "dclone" # depends on broken package rjags
- "CNVrd2" # depends on broken package rjags
- "bayescount" # depends on broken package rjags
- "BANOVA" # depends on broken package rjags
- "rjags" # broken build
+ "CNVrd2" # broken build
"proteoQC" # depends on broken package rTANDEM
"PGA" # depends on broken package rTANDEM
"MBESS" # depends on broken package OpenMx
@@ -1211,13 +1200,11 @@ let
"ARTool" # depends on broken package nlopt
"AssetPricing" # broken build
"AtelieR" # broken build
- "auRoc" # depends on broken package rjags
+ "auRoc" # depends on broken package MBESS
"AutoModel" # depends on broken package car
"bamdit" # broken build
- "BANOVA" # broken build
"bapred" # depends on broken package lme4
"bartMachine" # depends on broken package nlopt
- "bayescount" # broken build
"bayesDem" # depends on broken package nlopt
"bayesLife" # depends on broken package nlopt
"BayesMed" # broken build
@@ -1283,7 +1270,6 @@ let
"covmat" # depends on broken package VIM
"cplexAPI" # build is broken
"cquad" # depends on broken package car
- "crmPack" # depends on broken package rjags
"CrypticIBDcheck" # depends on broken package nlopt
"ctsem" # depends on broken package OpenMx
"cudaBayesreg" # build is broken
@@ -1293,7 +1279,7 @@ let
"datafsm" # depends on broken package caret
"dbConnect" # broken build
"DBKGrad" # depends on broken package rpanel
- "dcmle" # broken build
+ #"dcmle" # broken build
"ddst" # broken build
"Deducer" # depends on broken package nlopt
"DeducerExtras" # depends on broken package nlopt
@@ -1318,7 +1304,6 @@ let
"drsmooth" # depends on broken package nlopt
"dynlm" # depends on broken package nlopt
"easyanova" # depends on broken package nlopt
- "EasyMARK" # broken build
"ecd" # depends on broken package polynom
"edge" # depends on broken package nlopt
"eeptools" # depends on broken package nlopt
@@ -1370,7 +1355,6 @@ let
"gcmr" # depends on broken package nlopt
"GDAtools" # depends on broken package nlopt
"gdtools" # broken build
- "gemtc" # broken build
"GENE_E" # depends on broken package rhdf5
"GENESIS" # broken build
"genridge" # depends on broken package nlopt
@@ -1499,7 +1483,6 @@ let
"mlVAR" # depends on broken package nlopt
"MM" # broken build
"mongolite" # build is broken
- "morse" # broken build
"mosaic" # depends on broken package nlopt
"mpoly" # broken build
"mRMRe" # broken build
@@ -1577,7 +1560,6 @@ let
"PSAboot" # depends on broken package nlopt
"ptw" # depends on broken nloptr
"PurBayes" # broken build
- "PVAClone" # broken build
"pvca" # depends on broken package nlopt
"PythonInR" # broken build
"QFRM" # broken build
@@ -1664,7 +1646,6 @@ let
"Rgnuplot" # broken build
"rhdf5" # build is broken
"rjade" # depends on broken package V8
- "rjags" # broken build
"rJPSGCS" # build is broken
"rLindo" # build is broken
"RLRsim" # depends on broken package lme4
@@ -1724,10 +1705,8 @@ let
"seqHMM" # depends on broken package nloptr
"seqTools" # build is broken
"SharpeR" # broken build
- "sharx" # broken build
"shinyTANDEM" # depends on broken package rTANDEM
"SIBER" # broken build
- "simmr" # broken build
"simPop" # depends on broken package VIM
"simr" # depends on broken package lme4
"SJava" # broken build
diff --git a/pkgs/development/tools/analysis/cppcheck/default.nix b/pkgs/development/tools/analysis/cppcheck/default.nix
index 778aaa90cbe..31d62bdae19 100644
--- a/pkgs/development/tools/analysis/cppcheck/default.nix
+++ b/pkgs/development/tools/analysis/cppcheck/default.nix
@@ -1,15 +1,13 @@
{ stdenv, fetchurl, libxslt, docbook_xsl, docbook_xml_dtd_45 }:
-let
- pname = "cppcheck";
-in
stdenv.mkDerivation rec {
+ pname = "cppcheck";
+ version = "1.74";
name = "${pname}-${version}";
- version = "1.73";
src = fetchurl {
url = "mirror://sourceforge/${pname}/${name}.tar.bz2";
- sha256 = "0l7yslf311h3kidi91q4zhqj3f3vsjp1gb2z50y20423fda87xin";
+ sha256 = "0m62byiprabm1m3mc4r2w54p7qyhgi8msipnpm66ychr8rz2yny0";
};
nativeBuildInputs = [ libxslt docbook_xsl docbook_xml_dtd_45 ];
@@ -27,8 +25,8 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "A static analysis tool for C/C++ code";
longDescription = ''
- Check C/C++ code for memory leaks, mismatching
- allocation-deallocation, buffer overruns and more.
+ Check C/C++ code for memory leaks, mismatching allocation-deallocation,
+ buffer overruns and more.
'';
homepage = http://cppcheck.sourceforge.net/;
license = licenses.gpl3Plus;
diff --git a/pkgs/development/tools/build-managers/gnumake/4.2/default.nix b/pkgs/development/tools/build-managers/gnumake/4.2/default.nix
index edb3f841069..323f33d7d6c 100644
--- a/pkgs/development/tools/build-managers/gnumake/4.2/default.nix
+++ b/pkgs/development/tools/build-managers/gnumake/4.2/default.nix
@@ -3,14 +3,14 @@
assert guileSupport -> ( pkgconfig != null && guile != null );
let
- version = "4.2";
+ version = "4.2.1";
in
stdenv.mkDerivation {
name = "gnumake-${version}";
src = fetchurl {
url = "mirror://gnu/make/make-${version}.tar.bz2";
- sha256 = "0pv5rvz5pp4njxiz3syf786d2xp4j7gzddwjvgw5zmz55yvf6p2f";
+ sha256 = "12f5zzyq2w56g95nni65hc0g5p7154033y2f3qmjvd016szn5qnn";
};
patchFlags = "-p0";
diff --git a/pkgs/development/tools/build-managers/gradle/default.nix b/pkgs/development/tools/build-managers/gradle/default.nix
index dabc7b0d7f2..533808243a2 100644
--- a/pkgs/development/tools/build-managers/gradle/default.nix
+++ b/pkgs/development/tools/build-managers/gradle/default.nix
@@ -51,11 +51,11 @@ rec {
};
gradleLatest = gradleGen rec {
- name = "gradle-2.14";
+ name = "gradle-2.14.1";
src = fetchurl {
url = "http://services.gradle.org/distributions/${name}-bin.zip";
- sha256 = "1m98m4cxnvyl5ymkj6z8xb9vpdna47hdh5qrfblqkijjnqrlyfwr";
+ sha256 = "0fggjxpsnakdaviw7bn2jmsl06997phlqr1251bjmlgjf7d1xing";
};
};
diff --git a/pkgs/development/tools/build-managers/icmake/default.nix b/pkgs/development/tools/build-managers/icmake/default.nix
index e4bad4f500c..8fd519073cc 100644
--- a/pkgs/development/tools/build-managers/icmake/default.nix
+++ b/pkgs/development/tools/build-managers/icmake/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, gcc5 }:
+{ stdenv, fetchFromGitHub, gcc }:
stdenv.mkDerivation rec {
name = "icmake-${version}";
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
sourceRoot = "icmake-${version}-src/icmake";
- buildInputs = [ gcc5 ];
+ buildInputs = [ gcc ];
preConfigure = ''
patchShebangs ./
diff --git a/pkgs/development/tools/continuous-integration/jenkins/default.nix b/pkgs/development/tools/continuous-integration/jenkins/default.nix
index 827fb4e05a5..01d1c97ba96 100644
--- a/pkgs/development/tools/continuous-integration/jenkins/default.nix
+++ b/pkgs/development/tools/continuous-integration/jenkins/default.nix
@@ -2,19 +2,23 @@
stdenv.mkDerivation rec {
name = "jenkins-${version}";
- version = "2.3";
+ version = "2.13";
src = fetchurl {
url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war";
- sha256 = "0x59dbvh6y25ki5jy51djbfbhf8g2j3yd9f3n66f7bkdfw8p78g1";
+ sha256 = "0rb3spml2c7cd34zjjc5mwsdcnwmcbcdc784nl8cczayiwz8nq3p";
};
+
+ buildCommand = ''
+ mkdir -p "$out/webapps"
+ cp "$src" "$out/webapps/jenkins.war"
+ '';
+
meta = with stdenv.lib; {
description = "An extendable open source continuous integration server";
homepage = http://jenkins-ci.org;
license = licenses.mit;
platforms = platforms.all;
- maintainers = [ maintainers.coconnor ];
+ maintainers = with maintainers; [ coconnor fpletz ];
};
-
- buildCommand = "cp $src $out";
}
diff --git a/pkgs/development/tools/doctl/default.nix b/pkgs/development/tools/doctl/default.nix
new file mode 100644
index 00000000000..4a7d1bf87e3
--- /dev/null
+++ b/pkgs/development/tools/doctl/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, buildGoPackage, fetchFromGitHub }:
+
+buildGoPackage rec {
+ name = "doctl-${version}";
+ version = "1.3.1";
+ rev = "a57555c195d06bc7aa5037af77fde0665ad1231f";
+ goPackagePath = "github.com/digitalocean/doctl";
+
+ src = fetchFromGitHub {
+ owner = "digitalocean";
+ repo = "doctl";
+ rev = "${rev}";
+ sha256 = "03z652fw0a628gv666w8vpi05a4sdilvs1j5scjhcbi82zsbkvma";
+ };
+
+ meta = {
+ description = "A command line tool for DigitalOcean services";
+ homepage = "https://github.com/digitalocean/doctl";
+ license = stdenv.lib.licenses.asl20;
+ platforms = stdenv.lib.platforms.all;
+ maintainers = [ stdenv.lib.maintainers.siddharthist ];
+ };
+}
diff --git a/pkgs/development/tools/galen/default.nix b/pkgs/development/tools/galen/default.nix
index 4b02ece0962..d553a574552 100644
--- a/pkgs/development/tools/galen/default.nix
+++ b/pkgs/development/tools/galen/default.nix
@@ -1,15 +1,15 @@
-{ stdenv, fetchurl, jdk, unzip }:
+{ stdenv, fetchurl, jre8, unzip }:
stdenv.mkDerivation rec {
pname = "galen";
- version = "2.2.4";
+ version = "2.3.0";
name = "${pname}-${version}";
- inherit jdk;
+ inherit jre8;
src = fetchurl {
url = "https://github.com/galenframework/galen/releases/download/galen-${version}/galen-bin-${version}.zip";
- sha256 = "0qx6pza6aw880ph76wbypcgy983pln8k4ad2indagb5qhiz4zw1d";
+ sha256 = "10z7vh3jiq7kbzzp3j0354swkr4xxz9qimi5c5bddbiy671k6cra";
};
buildInputs = [ unzip ];
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
'';
installPhase = ''
- cat galen | sed -e "s,java,$jdk/bin/java," > $out/bin/galen
+ cat galen | sed -e "s,java,$jre8/bin/java," > $out/bin/galen
chmod +x $out/bin/galen
cp galen.jar $out/bin
'';
diff --git a/pkgs/development/tools/misc/texinfo/6.0.nix b/pkgs/development/tools/misc/texinfo/6.1.nix
similarity index 92%
rename from pkgs/development/tools/misc/texinfo/6.0.nix
rename to pkgs/development/tools/misc/texinfo/6.1.nix
index 507ca22cd1a..f19ccb35508 100644
--- a/pkgs/development/tools/misc/texinfo/6.0.nix
+++ b/pkgs/development/tools/misc/texinfo/6.1.nix
@@ -3,11 +3,11 @@
with stdenv.lib;
stdenv.mkDerivation rec {
- name = "texinfo-6.0";
+ name = "texinfo-6.1";
src = fetchurl {
url = "mirror://gnu/texinfo/${name}.tar.xz";
- sha256 = "1r3i6jyynn6ab45fxw5bms8mflk9ry4qpj6gqyry72vfd5c47fhi";
+ sha256 = "1ll3d0l8izygdxqz96wfr2631kxahifwdknpgsx2090vw963js5c";
};
buildInputs = [ perl xz ]
@@ -30,6 +30,7 @@ stdenv.mkDerivation rec {
description = "The GNU documentation system";
license = licenses.gpl3Plus;
platforms = platforms.all;
+ maintainers = [ maintainers.vrthra ];
longDescription = ''
Texinfo is the official documentation format of the GNU project.
diff --git a/pkgs/development/tools/misc/tokei/default.nix b/pkgs/development/tools/misc/tokei/default.nix
new file mode 100644
index 00000000000..212ebd9c967
--- /dev/null
+++ b/pkgs/development/tools/misc/tokei/default.nix
@@ -0,0 +1,27 @@
+{ stdenv, fetchurl, rustPlatform }:
+
+with rustPlatform;
+
+buildRustPackage rec {
+ name = "tokei-${version}";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://github.com/Aaronepower/tokei/archive/${version}.tar.gz";
+ sha256 = "0xymz52gpasihzhxglzx4wh0312zkraxy4yrpxz694zalf2s5vj5";
+ };
+
+ depsSha256 = "1syx8qzjn357dk2bf4ndmgc4zvrglmw88qiw117h6s511qyz8z0z";
+
+ installPhase = ''
+ mkdir -p $out/bin
+ cp -p target/release/tokei $out/bin/
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Count code, quickly";
+ homepage = https://github.com/Aaronepower/tokei;
+ license = licenses.mit;
+ maintainers = with maintainers; [ gebner ];
+ platforms = platforms.all;
+ };
+}
diff --git a/pkgs/development/tools/misc/universal-ctags/default.nix b/pkgs/development/tools/misc/universal-ctags/default.nix
new file mode 100644
index 00000000000..9adaa368997
--- /dev/null
+++ b/pkgs/development/tools/misc/universal-ctags/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, perl }:
+
+stdenv.mkDerivation rec {
+ name = "universal-ctags-${version}";
+ version = "2016-07-06";
+
+ src = fetchFromGitHub {
+ owner = "universal-ctags";
+ repo = "ctags";
+ rev = "44a325a9db23063b231f6f041af9aaf19320d9b9";
+ sha256 = "11vq901h121ckqgw52k9x7way3q38b7jd08vr1n2sjz7kxh0zdd0";
+ };
+
+ buildInputs = [ autoreconfHook pkgconfig ];
+
+ autoreconfPhase = ''
+ ./autogen.sh --tmpdir
+ '';
+
+ postConfigure = ''
+ sed -i 's|/usr/bin/env perl|${perl}/bin/perl|' misc/optlib2c
+ '';
+
+ meta = with stdenv.lib; {
+ description = "A maintained ctags implementation";
+ homepage = "https://ctags.io/";
+ license = licenses.gpl2Plus;
+ platforms = platforms.unix;
+ # universal-ctags is preferred over emacs's ctags
+ priority = 1;
+ maintainers = [ maintainers.mimadrid ];
+ };
+}
diff --git a/pkgs/development/tools/mypy-lang/default.nix b/pkgs/development/tools/mypy-lang/default.nix
new file mode 100644
index 00000000000..ebce2b86c1f
--- /dev/null
+++ b/pkgs/development/tools/mypy-lang/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchurl, python35Packages }:
+
+python35Packages.buildPythonApplication rec {
+ name = "mypy-lang-${version}";
+ version = "0.4.3";
+
+ # Tests not included in pip package.
+ doCheck = false;
+
+ src = fetchurl {
+ url = "mirror://pypi/m/mypy-lang/${name}.tar.gz";
+ sha256 = "11d8195xg8hksyh2qapbv66jvjgfpjwkc61nwljcfq9si144f2nb";
+ };
+
+ propagatedBuildInputs = with python35Packages; [ lxml ];
+
+ meta = with stdenv.lib; {
+ description = "Optional static typing for Python";
+ homepage = "http://www.mypy-lang.org";
+ license = licenses.mit;
+ maintainers = with maintainers; [ martingms ];
+ };
+}
diff --git a/pkgs/development/tools/rust/racer/default.nix b/pkgs/development/tools/rust/racer/default.nix
index 0f4477c9b3f..3cb7a3e2346 100644
--- a/pkgs/development/tools/rust/racer/default.nix
+++ b/pkgs/development/tools/rust/racer/default.nix
@@ -31,5 +31,6 @@ buildRustPackage rec {
homepage = https://github.com/phildawes/racer;
license = stdenv.lib.licenses.mit;
maintainers = with maintainers; [ jagajaga globin ];
+ platforms = platforms.all;
};
}
diff --git a/pkgs/development/tools/rust/rustfmt/default.nix b/pkgs/development/tools/rust/rustfmt/default.nix
index 0fad7290df3..5e661a8afb8 100644
--- a/pkgs/development/tools/rust/rustfmt/default.nix
+++ b/pkgs/development/tools/rust/rustfmt/default.nix
@@ -20,5 +20,6 @@ buildRustPackage rec {
homepage = https://github.com/nrc/rustfmt;
license = with licenses; [ mit asl20 ];
maintainers = [ maintainers.globin ];
+ platforms = platforms.all;
};
}
diff --git a/pkgs/development/tools/scalafmt/default.nix b/pkgs/development/tools/scalafmt/default.nix
index 0a4855bdcb8..e434f381067 100644
--- a/pkgs/development/tools/scalafmt/default.nix
+++ b/pkgs/development/tools/scalafmt/default.nix
@@ -1,13 +1,13 @@
{ stdenv, fetchurl, unzip, jre }:
stdenv.mkDerivation rec {
- version = "0.2.5";
+ version = "0.2.11";
baseName = "scalafmt";
name = "${baseName}-${version}";
src = fetchurl {
url = "https://github.com/olafurpg/scalafmt/releases/download/v${version}/${baseName}.tar.gz";
- sha256 = "07l95xdwgdbdfa91pg1sds82aw3c60gxzdcvdhhhk6a7zwrl73cp";
+ sha256 = "044n00mhrdxij1kc8wplvni7pf8lnninxrsm9v41gicbk73cm2q8";
};
unpackPhase = "tar xvzf $src";
diff --git a/pkgs/development/tools/vagrant/default.nix b/pkgs/development/tools/vagrant/default.nix
index c970b319a94..6dfbb6978db 100644
--- a/pkgs/development/tools/vagrant/default.nix
+++ b/pkgs/development/tools/vagrant/default.nix
@@ -4,7 +4,7 @@
assert stdenv.system == "x86_64-linux" || stdenv.system == "i686-linux";
let
- version = "1.8.1";
+ version = "1.8.4";
rake = buildRubyGem {
inherit ruby;
gemName = "rake";
@@ -20,12 +20,12 @@ stdenv.mkDerivation rec {
if stdenv.system == "x86_64-linux" then
fetchurl {
url = "https://releases.hashicorp.com/vagrant/${version}/vagrant_${version}_x86_64.deb";
- sha256 = "0gb999ql4kfxd9473cx3xn6a11094dm4iyrx1dzd9v2sygh1l3pd";
+ sha256 = "fd38d8e00e494a617201facb42fc2cac627e5021db15e91c2a041eac6a2d8208";
}
else
fetchurl {
url = "https://releases.hashicorp.com/vagrant/${version}/vagrant_${version}_i686.deb";
- sha256 = "1nzg6i9i270xgaih381q096lb23rwxkif4ba9j62y3zjmj6az4xf";
+ sha256 = "555351717cacaa8660821df8988cc40a39923b06b698fca6bb90621008aab06f";
};
meta = with stdenv.lib; {
@@ -97,12 +97,12 @@ stdenv.mkDerivation rec {
preFixup = ''
# 'hide' the template file from shebang-patching
- chmod -x $out/opt/vagrant/embedded/gems/gems/bundler-1.10.6/lib/bundler/templates/Executable
+ chmod -x $out/opt/vagrant/embedded/gems/gems/bundler-1.12.5/lib/bundler/templates/Executable
chmod -x $out/opt/vagrant/embedded/gems/gems/vagrant-${version}/plugins/provisioners/salt/bootstrap-salt.sh
'';
postFixup = ''
- chmod +x $out/opt/vagrant/embedded/gems/gems/bundler-1.10.6/lib/bundler/templates/Executable
+ chmod +x $out/opt/vagrant/embedded/gems/gems/bundler-1.12.5/lib/bundler/templates/Executable
chmod +x $out/opt/vagrant/embedded/gems/gems/vagrant-${version}/plugins/provisioners/salt/bootstrap-salt.sh
'';
}
diff --git a/pkgs/development/web/minify/default.nix b/pkgs/development/web/minify/default.nix
new file mode 100644
index 00000000000..3248258d552
--- /dev/null
+++ b/pkgs/development/web/minify/default.nix
@@ -0,0 +1,18 @@
+{ stdenv, buildGoPackage, fetchFromGitHub }:
+
+buildGoPackage rec {
+ name = "minify-${version}";
+ version = "v2.0.0";
+ rev = "41f3effd65817bac8acea89d49b3982211803a4d";
+
+ goPackagePath = "github.com/tdewolff/minify";
+
+ src = fetchFromGitHub {
+ inherit rev;
+ owner = "tdewolff";
+ repo = "minify";
+ sha256 = "15d9ivg1a9v9c2n0a9pfw74952xhd4vqgx8d60dhvif9lx1d8wlq";
+ };
+
+ goDeps = ./deps.json;
+}
diff --git a/pkgs/development/web/minify/deps.json b/pkgs/development/web/minify/deps.json
new file mode 100644
index 00000000000..0b2fe810854
--- /dev/null
+++ b/pkgs/development/web/minify/deps.json
@@ -0,0 +1,15 @@
+[
+ {
+ "include": "../../libs.json",
+ "packages": [
+ "github.com/tdewolff/buffer",
+ "github.com/tdewolff/parse",
+ "github.com/tdewolff/strconv",
+ "github.com/dustin/go-humanize",
+ "github.com/fsnotify/fsnotify",
+ "github.com/matryer/try",
+ "github.com/ogier/pflag",
+ "golang.org/x/sys"
+ ]
+ }
+]
diff --git a/pkgs/development/web/nodejs/nodejs.nix b/pkgs/development/web/nodejs/nodejs.nix
index a04a0ed971b..debc571ea41 100644
--- a/pkgs/development/web/nodejs/nodejs.nix
+++ b/pkgs/development/web/nodejs/nodejs.nix
@@ -2,6 +2,7 @@
, pkgconfig, runCommand, which, libtool
, version
, src
+, preBuild ? ""
, ...
}:
@@ -25,9 +26,7 @@ let
in stdenv.mkDerivation {
- inherit version;
-
- inherit src;
+ inherit version src preBuild;
name = "nodejs-${version}";
@@ -53,7 +52,7 @@ in stdenv.mkDerivation {
description = "Event-driven I/O framework for the V8 JavaScript engine";
homepage = http://nodejs.org;
license = licenses.mit;
- maintainers = [ maintainers.goibhniu maintainers.havvy maintainers.gilligan ];
+ maintainers = [ maintainers.goibhniu maintainers.havvy maintainers.gilligan maintainers.cko ];
platforms = platforms.linux ++ platforms.darwin;
};
}
diff --git a/pkgs/development/web/nodejs/v5.nix b/pkgs/development/web/nodejs/v5.nix
index 12d0dca4503..2398ae4e739 100644
--- a/pkgs/development/web/nodejs/v5.nix
+++ b/pkgs/development/web/nodejs/v5.nix
@@ -4,9 +4,9 @@
}@args:
import ./nodejs.nix (args // rec {
- version = "5.11.1";
+ version = "5.12.0";
src = fetchurl {
url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.xz";
- sha256 = "07v60mhswj77m7516zakj3p1py7ixa5jbgj0m7zlr9vygrrc66zi";
+ sha256 = "4f926373f11f2a25156eee1804ec012eb912c42e5d34fc2909889da22efdadfe";
};
})
diff --git a/pkgs/development/web/nodejs/v6.nix b/pkgs/development/web/nodejs/v6.nix
index 43a39451f9b..bde9065d085 100644
--- a/pkgs/development/web/nodejs/v6.nix
+++ b/pkgs/development/web/nodejs/v6.nix
@@ -9,4 +9,8 @@ import ./nodejs.nix (args // rec {
url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.xz";
sha256 = "2dfeeddba750b52a528b38a1c31e35c1fb40b19cf28fbf430c3c8c7a6517005a";
};
+ preBuild = stdenv.lib.optionalString (stdenv.system == "x86_64-darwin") ''
+ sed -i -e "s|tr1/type_traits|type_traits|g" \
+ -e "s|std::tr1|std|" src/util.h
+ '';
})
diff --git a/pkgs/games/commandergenius/default.nix b/pkgs/games/commandergenius/default.nix
new file mode 100644
index 00000000000..007167dc696
--- /dev/null
+++ b/pkgs/games/commandergenius/default.nix
@@ -0,0 +1,54 @@
+{ lib, stdenv, fetchFromGitHub, SDL2, SDL2_image, pkgconfig
+, libvorbis, libogg, mesa, boost, curl, zlib, cmake }:
+
+
+stdenv.mkDerivation rec {
+ name = "commandergenius-${version}";
+ version = "194beta";
+
+ src = fetchFromGitHub {
+ owner = "gerstrong";
+ repo = "Commander-Genius";
+ rev = "v${version}";
+ sha256 = "0qxqzlmadxklrhxilbqj7y94fmbv0byj6vgpl59lb77lgs4y4x47";
+ };
+
+ buildInputs = [ SDL2 SDL2_image pkgconfig libvorbis libogg mesa boost curl zlib cmake ];
+
+ patchPhase = ''
+ cat >> lib/GsKit/CMakeLists.txt <"
+ )
+
+- if( APPLE )
++ #if( APPLE )
+ # In OS X El Capitan, Apple introduced System Integrity Protection.
+ # Amongst other things, this introduces features to the dynamic loader
+ # (dyld) which cause it to "sanitise" (and complain about) embedded
+@@ -354,15 +354,15 @@
+ # simply strip the rpath entry from the dylib. There's no way any
+ # @executable_path that python might have could be in any way useful to
+ # libclang.dylib, so this seems perfectly safe.
+- get_filename_component( LIBCLANG_TAIL ${LIBCLANG_TARGET} NAME )
+- add_custom_command( TARGET ${PROJECT_NAME}
+- POST_BUILD
+- COMMAND install_name_tool
+- "-delete_rpath"
+- "@executable_path/../lib"
+- "$/${LIBCLANG_TAIL}"
+- )
+- endif()
++ # get_filename_component( LIBCLANG_TAIL ${LIBCLANG_TARGET} NAME )
++ #add_custom_command( TARGET ${PROJECT_NAME}
++ # POST_BUILD
++ # COMMAND install_name_tool
++ # "-delete_rpath"
++ # "@executable_path/../lib"
++ # "$/${LIBCLANG_TAIL}"
++ # )
++ # endif()
+ endif()
+ endif()
+
diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names
index 7069a8021f3..bc040271cd9 100644
--- a/pkgs/misc/vim-plugins/vim-plugin-names
+++ b/pkgs/misc/vim-plugins/vim-plugin-names
@@ -21,8 +21,8 @@
"ghcmod"
"github:Chiel92/vim-autoformat"
"github:LnL7/vim-nix"
+"github:sbdchd/neoformat"
"github:Shougo/deoplete.nvim"
-"github:zchee/deoplete-jedi"
"github:ajh17/Spacegray.vim"
"github:alvan/vim-closetag"
"github:ap/vim-css-color"
@@ -33,11 +33,13 @@
"github:ctrlpvim/ctrlp.vim"
"github:digitaltoad/vim-jade"
"github:eagletmt/neco-ghc"
+"github:elmcast/elm-vim"
"github:embear/vim-localvimrc"
"github:enomsg/vim-haskellConcealPlus"
"github:esneider/YUNOcommit.vim"
"github:fatih/vim-go"
"github:flazz/vim-colorschemes"
+"github:floobits/floobits-neovim"
"github:frigoeu/psc-ide-vim"
"github:google/vim-jsonnet"
"github:hecal3/vim-leader-guide"
@@ -73,6 +75,7 @@
"github:racer-rust/vim-racer"
"github:raichoo/purescript-vim"
"github:rust-lang/rust.vim"
+"github:sheerun/vim-polyglot"
"github:shougo/neocomplete.vim"
"github:shougo/neosnippet-snippets"
"github:shougo/neosnippet.vim"
@@ -102,6 +105,7 @@
"github:vim-scripts/wombat256.vim"
"github:wakatime/vim-wakatime"
"github:wincent/command-t"
+"github:zchee/deoplete-jedi"
"goyo"
"matchit.zip"
"pathogen"
diff --git a/pkgs/misc/vim-plugins/vim-utils.nix b/pkgs/misc/vim-plugins/vim-utils.nix
index f39d7093c73..acb5b4fcbe1 100644
--- a/pkgs/misc/vim-plugins/vim-utils.nix
+++ b/pkgs/misc/vim-plugins/vim-utils.nix
@@ -330,7 +330,7 @@ rec {
vimHelpTags = ''
vimHelpTags(){
if [ -d "$1/doc" ]; then
- ${vim}/bin/vim -N -u NONE -i NONE -n -e -s -c "helptags $1/doc" +quit!
+ ${vim}/bin/vim -N -u NONE -i NONE -n -E -s -c "helptags $1/doc" +quit! || echo "docs to build failed"
fi
}
'';
diff --git a/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme b/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme
index a27b1f053a2..4b81be5205b 100644
--- a/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme
+++ b/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme
@@ -4,8 +4,11 @@
llvmPackages.llvm
] ++ stdenv.lib.optional stdenv.isDarwin Cocoa;
- propogatedBuildInputs = [
- rustracerd
+ propagatedBuildInputs = stdenv.lib.optional (!stdenv.isDarwin) rustracerd;
+
+ patches = [
+ ./patches/youcompleteme/1-top-cmake.patch
+ ./patches/youcompleteme/2-ycm-cmake.patch
];
buildPhase = ''
diff --git a/pkgs/os-specific/linux/busybox/default.nix b/pkgs/os-specific/linux/busybox/default.nix
index fa6591701a6..296b19bc5b6 100644
--- a/pkgs/os-specific/linux/busybox/default.nix
+++ b/pkgs/os-specific/linux/busybox/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, musl
+{ stdenv, lib, fetchurl, glibc, musl
, enableStatic ? false
, enableMinimal ? false
, useMusl ? false
@@ -48,7 +48,7 @@ stdenv.mkDerivation rec {
CONFIG_LFS y
- ${stdenv.lib.optionalString enableStatic ''
+ ${lib.optionalString enableStatic ''
CONFIG_STATIC y
''}
@@ -56,22 +56,32 @@ stdenv.mkDerivation rec {
CONFIG_FEATURE_MOUNT_CIFS n
CONFIG_FEATURE_MOUNT_HELPERS y
+ # Set paths for console fonts.
+ CONFIG_DEFAULT_SETFONT_DIR "/etc/kbd"
+
${extraConfig}
$extraCrossConfig
EOF
make oldconfig
- '' + stdenv.lib.optionalString useMusl ''
+
+ runHook postConfigure
+ '';
+
+ postConfigure = lib.optionalString useMusl ''
makeFlagsArray+=("CC=gcc -isystem ${musl}/include -B${musl}/lib -L${musl}/lib")
'';
+ buildInputs = lib.optionals (enableStatic && !useMusl) [ glibc glibc.static ];
+
crossAttrs = {
extraCrossConfig = ''
CONFIG_CROSS_COMPILER_PREFIX "${stdenv.cross.config}-"
- '' +
- (if stdenv.cross.platform.kernelMajor == "2.4" then ''
- CONFIG_IONICE n
- '' else "");
+ '';
+
+ postConfigure = stdenv.lib.optionalString useMusl ''
+ makeFlagsArray+=("CC=$crossConfig-gcc -isystem ${musl.crossDrv}/include -B${musl.crossDrv}/lib -L${musl.crossDrv}/lib")
+ '';
};
enableParallelBuilding = true;
diff --git a/pkgs/os-specific/linux/conky/default.nix b/pkgs/os-specific/linux/conky/default.nix
index 660c0bc0572..37ad34d8b64 100644
--- a/pkgs/os-specific/linux/conky/default.nix
+++ b/pkgs/os-specific/linux/conky/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, pkgconfig, cmake
# dependencies
-, glib
+, glib, libXinerama
# optional features without extra dependencies
, mpdSupport ? true
@@ -62,13 +62,13 @@ with stdenv.lib;
stdenv.mkDerivation rec {
name = "conky-${version}";
- version = "1.10.1";
+ version = "1.10.3";
src = fetchFromGitHub {
owner = "brndnmtthws";
repo = "conky";
rev = "v${version}";
- sha256 = "0k93nqx8mxz2z84zzwpwfp7v7dwxwg1di1a2yb137lk7l157azw6";
+ sha256 = "0sa2jl159jk5p2hr37adwq84m0ynva7v87qrwj1xv0kw8l4qzhjs";
};
postPatch = ''
@@ -87,7 +87,7 @@ stdenv.mkDerivation rec {
NIX_LDFLAGS = "-lgcc_s";
- buildInputs = [ pkgconfig glib cmake ]
+ buildInputs = [ pkgconfig glib cmake libXinerama ]
++ optionals docsSupport [ docbook2x libxslt man less ]
++ optional ncursesSupport ncurses
++ optional x11Support xlibsWrapper
diff --git a/pkgs/os-specific/linux/ena/default.nix b/pkgs/os-specific/linux/ena/default.nix
new file mode 100644
index 00000000000..7a047e9f233
--- /dev/null
+++ b/pkgs/os-specific/linux/ena/default.nix
@@ -0,0 +1,34 @@
+{ lib, stdenv, fetchFromGitHub, kernel, kmod }:
+
+stdenv.mkDerivation rec {
+ name = "ena-20160629-${kernel.version}";
+
+ src = fetchFromGitHub {
+ owner = "amzn";
+ repo = "amzn-drivers";
+ rev = "b594ac1ea9e0c70e8e95803a0cfd9f5f06ac097e";
+ sha256 = "03w6xgv3lfn28n38mj9cdi3px5zjyrbxnflpd3ggivkv6grf9fp7";
+ };
+
+ configurePhase =
+ ''
+ cd kernel/linux/ena
+ substituteInPlace Makefile --replace '/lib/modules/$(BUILD_KERNEL)' ${kernel.dev}/lib/modules/${kernel.modDirVersion}
+ '';
+
+ installPhase =
+ ''
+ strip -S ena.ko
+ dest=$out/lib/modules/${kernel.modDirVersion}/misc
+ mkdir -p $dest
+ cp ena.ko $dest/
+ xz $dest/ena.ko
+ '';
+
+ meta = {
+ description = "Amazon Elastic Network Adapter (ENA) driver for Linux";
+ homepage = https://github.com/amzn/amzn-drivers;
+ license = lib.licenses.gpl2;
+ maintainers = [ lib.maintainers.eelco ];
+ };
+}
diff --git a/pkgs/os-specific/linux/eventstat/default.nix b/pkgs/os-specific/linux/eventstat/default.nix
index d6122202b82..49eab1fe254 100644
--- a/pkgs/os-specific/linux/eventstat/default.nix
+++ b/pkgs/os-specific/linux/eventstat/default.nix
@@ -1,12 +1,13 @@
-{ stdenv, lib, fetchzip }:
+{ stdenv, lib, fetchzip, ncurses }:
stdenv.mkDerivation rec {
name = "eventstat-${version}";
- version = "0.02.02";
+ version = "0.03.02";
src = fetchzip {
url = "http://kernel.ubuntu.com/~cking/tarballs/eventstat/eventstat-${version}.tar.gz";
- sha256 = "1l1shcj3c0pxv1g6sqc10ka1crbx0cm2gldxbyrzqv2lmlfnmm44";
+ sha256 = "1bwv0m9pk9l0jfibvsfjggc5pp9lyyrsfr10h6jm6kf1v6r6hf5s";
};
+ buildInputs = [ ncurses ];
installFlags = [ "DESTDIR=$(out)" ];
postInstall = ''
mv $out/usr/* $out
diff --git a/pkgs/os-specific/linux/firmware/firmware-linux-nonfree/default.nix b/pkgs/os-specific/linux/firmware/firmware-linux-nonfree/default.nix
index 992d42e2e12..8e0f807e08e 100644
--- a/pkgs/os-specific/linux/firmware/firmware-linux-nonfree/default.nix
+++ b/pkgs/os-specific/linux/firmware/firmware-linux-nonfree/default.nix
@@ -2,7 +2,7 @@
stdenv.mkDerivation rec {
name = "firmware-linux-nonfree-${version}";
- version = "2016-05-18";
+ version = "2016-07-12";
# This repo is built by merging the latest versions of
# http://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/
@@ -14,8 +14,8 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "wkennington";
repo = "linux-firmware";
- rev = "19495832c6899bd811874439376d513290773c31";
- sha256 = "1700a24sfw6xa3q3r8aa5wfhydgix83m57plpfirdmc9qr4isrr0";
+ rev = "cccb6a0da98372bd66787710249727ad6b0aaf72";
+ sha256 = "1c7h8i37nbyy37zqhybxd3y6aqabfv4nrdkjg789w67mdnn6hka0";
};
preInstall = ''
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
homepage = http://packages.debian.org/sid/firmware-linux-nonfree;
license = licenses.unfreeRedistributableFirmware;
platforms = platforms.linux;
- maintainers = with maintainers; [ wkennington ];
+ maintainers = with maintainers; [ wkennington fpletz ];
priority = 6; # give precedence to kernel firmware
};
diff --git a/pkgs/os-specific/linux/fnotifystat/default.nix b/pkgs/os-specific/linux/fnotifystat/default.nix
new file mode 100644
index 00000000000..5708ed7c4df
--- /dev/null
+++ b/pkgs/os-specific/linux/fnotifystat/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, lib, fetchurl }:
+
+stdenv.mkDerivation rec {
+ name = "fnotifystat-${version}";
+ version = "0.01.14";
+ src = fetchurl {
+ url = "http://kernel.ubuntu.com/~cking/tarballs/fnotifystat/fnotifystat-${version}.tar.gz";
+ sha256 = "1cc3w94v8b4nfpkgr33gfzxpwaf43brqyc0fla9p70gk3hxjqzi5";
+ };
+ installFlags = [ "DESTDIR=$(out)" ];
+ postInstall = ''
+ mv $out/usr/* $out
+ rm -r $out/usr
+ '';
+ meta = with lib; {
+ description = "File activity monitoring tool";
+ homepage = http://kernel.ubuntu.com/~cking/fnotifystat/;
+ license = licenses.gpl2;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ womfoo ];
+ };
+}
diff --git a/pkgs/os-specific/linux/forkstat/default.nix b/pkgs/os-specific/linux/forkstat/default.nix
new file mode 100644
index 00000000000..3a253003e8e
--- /dev/null
+++ b/pkgs/os-specific/linux/forkstat/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, lib, fetchurl }:
+
+stdenv.mkDerivation rec {
+ name = "forkstat-${version}";
+ version = "0.01.13";
+ src = fetchurl {
+ url = "http://kernel.ubuntu.com/~cking/tarballs/forkstat/forkstat-${version}.tar.gz";
+ sha256 = "12dmqpv0q3x166sya93rhcj7vs4868x7y7lwfwv9l54hhirpamhq";
+ };
+ installFlags = [ "DESTDIR=$(out)" ];
+ postInstall = ''
+ mv $out/usr/* $out
+ rm -r $out/usr
+ '';
+ meta = with lib; {
+ description = "Process fork/exec/exit monitoring tool";
+ homepage = http://kernel.ubuntu.com/~cking/forkstat/;
+ license = licenses.gpl2;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ womfoo ];
+ };
+}
diff --git a/pkgs/os-specific/linux/gfxtablet/default.nix b/pkgs/os-specific/linux/gfxtablet/default.nix
index 36397b77b77..9fc052c5ac1 100644
--- a/pkgs/os-specific/linux/gfxtablet/default.nix
+++ b/pkgs/os-specific/linux/gfxtablet/default.nix
@@ -1,32 +1,30 @@
-{stdenv, fetchgit, linuxHeaders}:
-let
- s = # Generated upstream information
- rec {
- version="git-2013-10-21";
- name = "gfxtablet-uinput-driver-${version}";
- rev = "c4e337ae0b53a8ccdfe11b904ff129714bd25ec4";
- sha256 = "14ll9rls2mamllmpwjiv2dc6165plazv7ny9cliylafrwgb55l7p";
- url = "https://github.com/rfc2822/GfxTablet.git";
- };
+{stdenv, fetchFromGitHub, linuxHeaders}:
+
+stdenv.mkDerivation rec {
+ version = "1.4";
+ name = "gfxtablet-uinput-driver-${version}";
+
buildInputs = [
linuxHeaders
];
-in
-stdenv.mkDerivation {
- inherit (s) name version;
- inherit buildInputs;
- src = fetchgit {
- inherit (s) url sha256 rev;
+
+ src = fetchFromGitHub {
+ owner = "rfc2822";
+ repo = "GfxTablet";
+ rev = "android-app-${version}";
+ sha256 = "1i2m98yypfa9phshlmvjlgw7axfisxmldzrvnbzm5spvv5s4kvvb";
};
+
preBuild = ''cd driver-uinput'';
+
installPhase = ''
mkdir -p "$out/bin"
cp networktablet "$out/bin"
mkdir -p "$out/share/doc/gfxtablet/"
cp ../*.md "$out/share/doc/gfxtablet/"
'';
+
meta = {
- inherit (s) version;
description = ''Uinput driver for Android GfxTablet tablet-as-input-device app'';
license = stdenv.lib.licenses.mit ;
maintainers = [stdenv.lib.maintainers.raskin];
diff --git a/pkgs/os-specific/linux/kbd/default.nix b/pkgs/os-specific/linux/kbd/default.nix
index fddaa84a824..a3f21b51b06 100644
--- a/pkgs/os-specific/linux/kbd/default.nix
+++ b/pkgs/os-specific/linux/kbd/default.nix
@@ -1,42 +1,27 @@
-{ stdenv, fetchurl, autoreconfHook, gzip, bzip2, pkgconfig, check, pam }:
+{ stdenv, fetchurl, autoreconfHook, gzip, bzip2, pkgconfig, flex, check, pam }:
stdenv.mkDerivation rec {
- name = "kbd-2.0.3";
+ name = "kbd-${version}";
+ version = "2.0.3";
src = fetchurl {
url = "mirror://kernel/linux/utils/kbd/${name}.tar.xz";
sha256 = "0ppv953gn2zylcagr4z6zg5y2x93dxrml29plypg6xgbq3hrv2bs";
};
- /* Get the dvorak programmer keymap (present in X but not in kbd) */
- dvpSrc = fetchurl {
- url = "http://kaufmann.no/downloads/linux/dvp-1_2_1.map.gz";
- sha256 = "0e859211cfe16a18a3b9cbf2ca3e280a23a79b4e40b60d8d01d0fde7336b6d50";
- };
-
- neoSrc = fetchurl {
- name = "neo.map";
- url = "https://svn.neo-layout.org/linux/console/neo.map?r=2455";
- sha256 = "1wlgp09wq84hml60hi4ls6d4zna7vhycyg40iipyh1279i91hsx7";
- };
-
configureFlags = [
"--enable-optional-progs"
"--enable-libkeymap"
"--disable-nls"
];
- patches = [ ./console-fix.patch ];
+ patches = [ ./console-fix.patch ./search-paths.patch ];
postPatch =
''
- mkdir -p data/keymaps/i386/neo
- cat "$neoSrc" > data/keymaps/i386/neo/neo.map
+ # Add Neo keymap subdirectory
sed -i -e 's,^KEYMAPSUBDIRS *= *,&i386/neo ,' data/Makefile.am
- # Add the dvp keyboard in the dvorak folder
- ${gzip}/bin/gzip -c -d ${dvpSrc} > data/keymaps/i386/dvorak/dvp.map
-
# Fix the path to gzip/bzip2.
substituteInPlace src/libkeymap/findfile.c \
--replace gzip ${gzip}/bin/gzip \
@@ -49,13 +34,15 @@ stdenv.mkDerivation rec {
''}
'';
- buildInputs = [ autoreconfHook pkgconfig check pam ];
+ buildInputs = [ check pam ];
+ nativeBuildInputs = [ autoreconfHook pkgconfig flex ];
- makeFlags = "setowner= ";
+ makeFlags = [ "setowner=" ];
- meta = {
+ meta = with stdenv.lib; {
homepage = ftp://ftp.altlinux.org/pub/people/legion/kbd/;
description = "Linux keyboard utilities and keyboard maps";
- platforms = stdenv.lib.platforms.linux;
+ platforms = platforms.linux;
+ licenses = licenses.gpl2Plus;
};
}
diff --git a/pkgs/os-specific/linux/kbd/keymaps.nix b/pkgs/os-specific/linux/kbd/keymaps.nix
new file mode 100644
index 00000000000..ecb7045ed27
--- /dev/null
+++ b/pkgs/os-specific/linux/kbd/keymaps.nix
@@ -0,0 +1,35 @@
+{ stdenv, lib, fetchurl, gzip }:
+
+{
+ dvp = stdenv.mkDerivation rec {
+ name = "dvp-${version}";
+ version = "1.2.1";
+
+ src = fetchurl {
+ url = "http://kaufmann.no/downloads/linux/dvp-${lib.replaceStrings ["."] ["_"] version}.map.gz";
+ sha256 = "0e859211cfe16a18a3b9cbf2ca3e280a23a79b4e40b60d8d01d0fde7336b6d50";
+ };
+
+ nativeBuildInputs = [ gzip ];
+
+ buildCommand = ''
+ mkdir -p $out/share/keymaps/i386/dvorak
+ gzip -c -d $src > $out/share/keymaps/i386/dvorak/dvp.map
+ '';
+ };
+
+ neo = stdenv.mkDerivation rec {
+ name = "neo-${version}";
+ version = "2476";
+
+ src = fetchurl {
+ name = "neo.map";
+ url = "https://svn.neo-layout.org/linux/console/neo.map?r=${version}";
+ sha256 = "19mfrd31vzpsjiwc7pshxm0b0sz5dd17xrz6k079cy4im1vf0r4g";
+ };
+
+ buildCommand = ''
+ install -D $src $out/share/keymaps/i386/neo/neo.map
+ '';
+ };
+}
diff --git a/pkgs/os-specific/linux/kbd/search-paths.patch b/pkgs/os-specific/linux/kbd/search-paths.patch
new file mode 100644
index 00000000000..66a56041481
--- /dev/null
+++ b/pkgs/os-specific/linux/kbd/search-paths.patch
@@ -0,0 +1,77 @@
+diff -ru3 kbd-2.0.3-old/src/libkeymap/analyze.l kbd-2.0.3/src/libkeymap/analyze.l
+--- kbd-2.0.3-old/src/libkeymap/analyze.l 2016-07-03 02:31:28.258958092 +0300
++++ kbd-2.0.3/src/libkeymap/analyze.l 2016-07-03 02:44:53.042592223 +0300
+@@ -99,6 +99,9 @@
+ static const char *const include_dirpath0[] = { "", 0 };
+ static const char *const include_dirpath1[] = { "", "../include/", "../../include/", 0 };
+ static const char *const include_dirpath3[] = {
++ "/etc/kbd/" KEYMAPDIR "/include/",
++ "/etc/kbd/" KEYMAPDIR "/i386/include/",
++ "/etc/kbd/" KEYMAPDIR "/mac/include/",
+ DATADIR "/" KEYMAPDIR "/include/",
+ DATADIR "/" KEYMAPDIR "/i386/include/",
+ DATADIR "/" KEYMAPDIR "/mac/include/", 0
+diff -ru3 kbd-2.0.3-old/src/loadkeys.c kbd-2.0.3/src/loadkeys.c
+--- kbd-2.0.3-old/src/loadkeys.c 2016-07-03 02:31:28.260958091 +0300
++++ kbd-2.0.3/src/loadkeys.c 2016-07-03 02:34:34.123871103 +0300
+@@ -26,7 +26,7 @@
+ #include "keymap.h"
+
+ static const char *progname = NULL;
+-static const char *const dirpath1[] = { "", DATADIR "/" KEYMAPDIR "/**", KERNDIR "/", 0 };
++static const char *const dirpath1[] = { "", "/etc/kbd/" KEYMAPDIR "/**", DATADIR "/" KEYMAPDIR "/**", 0 };
+ static const char *const suffixes[] = { "", ".kmap", ".map", 0 };
+
+ static void __attribute__ ((noreturn))
+diff -ru3 kbd-2.0.3-old/src/loadunimap.c kbd-2.0.3/src/loadunimap.c
+--- kbd-2.0.3-old/src/loadunimap.c 2016-07-03 02:31:28.259958091 +0300
++++ kbd-2.0.3/src/loadunimap.c 2016-07-03 02:33:06.803911971 +0300
+@@ -28,7 +28,7 @@
+ extern char *progname;
+ extern int force;
+
+-static const char *const unidirpath[] = { "", DATADIR "/" UNIMAPDIR "/", 0 };
++static const char *const unidirpath[] = { "", "/etc/kbd/" UNIMAPDIR "/", DATADIR "/" UNIMAPDIR "/", 0 };
+ static const char *const unisuffixes[] = { "", ".uni", ".sfm", 0 };
+
+ #ifdef MAIN
+diff -ru3 kbd-2.0.3-old/src/mapscrn.c kbd-2.0.3/src/mapscrn.c
+--- kbd-2.0.3-old/src/mapscrn.c 2016-07-03 02:31:28.260958091 +0300
++++ kbd-2.0.3/src/mapscrn.c 2016-07-03 02:33:21.119905270 +0300
+@@ -25,7 +25,7 @@
+ static int ctoi (char *);
+
+ /* search for the map file in these directories (with trailing /) */
+-static const char *const mapdirpath[] = { "", DATADIR "/" TRANSDIR "/", 0 };
++static const char *const mapdirpath[] = { "", "/etc/kbd/" TRANSDIR "/", DATADIR "/" TRANSDIR "/", 0 };
+ static const char *const mapsuffixes[] = { "", ".trans", "_to_uni.trans", ".acm", 0 };
+
+ #ifdef MAIN
+diff -ru3 kbd-2.0.3-old/src/resizecons.c kbd-2.0.3/src/resizecons.c
+--- kbd-2.0.3-old/src/resizecons.c 2016-07-03 02:31:28.260958091 +0300
++++ kbd-2.0.3/src/resizecons.c 2016-07-03 02:33:32.253900060 +0300
+@@ -100,7 +100,7 @@
+ static void vga_set_cursor(int, int);
+ static void vga_set_verticaldisplayend_lowbyte(int);
+
+-const char *const dirpath[] = { "", DATADIR "/" VIDEOMODEDIR "/", 0};
++const char *const dirpath[] = { "", "/etc/kbd/" VIDEOMODEDIR "/", DATADIR "/" VIDEOMODEDIR "/", 0};
+ const char *const suffixes[] = { "", 0 };
+
+ int
+diff -ru3 kbd-2.0.3-old/src/setfont.c kbd-2.0.3/src/setfont.c
+--- kbd-2.0.3-old/src/setfont.c 2016-07-03 02:31:28.260958091 +0300
++++ kbd-2.0.3/src/setfont.c 2016-07-03 02:33:54.315889734 +0300
+@@ -51,10 +51,10 @@
+ int debug = 0;
+
+ /* search for the font in these directories (with trailing /) */
+-const char *const fontdirpath[] = { "", DATADIR "/" FONTDIR "/", 0 };
++const char *const fontdirpath[] = { "", "/etc/kbd/" FONTDIR "/", DATADIR "/" FONTDIR "/", 0 };
+ const char *const fontsuffixes[] = { "", ".psfu", ".psf", ".cp", ".fnt", 0 };
+ /* hide partial fonts a bit - loading a single one is a bad idea */
+-const char *const partfontdirpath[] = { "", DATADIR "/" FONTDIR "/" PARTIALDIR "/", 0 };
++const char *const partfontdirpath[] = { "", "/etc/kbd/" FONTDIR "/" PARTIALDIR "/", DATADIR "/" FONTDIR "/" PARTIALDIR "/", 0 };
+ const char *const partfontsuffixes[] = { "", 0 };
+
+ static inline int
diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix
index 1e9f2cb6a65..37e3859cd05 100644
--- a/pkgs/os-specific/linux/kernel/common-config.nix
+++ b/pkgs/os-specific/linux/kernel/common-config.nix
@@ -10,7 +10,7 @@
`versionAtLeast`.
Then do test your change by building all the kernels (or at least
- their configs) in nixpkgs or else you will guarantee lots and lots
+ their configs) in Nixpkgs or else you will guarantee lots and lots
of pain to users trying to switch to an older kernel because of some
hardware problems with a new one.
@@ -42,6 +42,12 @@ with stdenv.lib;
SCHEDSTATS n
DETECT_HUNG_TASK y
+ # Bump the maximum number of CPUs to support systems like EC2 x1.*
+ # instances and Xeon Phi.
+ ${optionalString (stdenv.system == "x86_64-linux") ''
+ NR_CPUS 384
+ ''}
+
# Unix domain sockets.
UNIX y
@@ -61,6 +67,7 @@ with stdenv.lib;
${optionalString (versionOlder version "3.10") ''
USB_SUSPEND y
''}
+ PM_WAKELOCKS y
# Support drivers that need external firmware.
STANDALONE n
@@ -92,9 +99,6 @@ with stdenv.lib;
DONGLE y # Serial dongle support
HIPPI y
MTD_COMPLEX_MAPPINGS y # needed for many devices
- ${optionalString (versionOlder version "3.2") ''
- NET_POCKET y # enable pocket and portable adapters
- ''}
SCSI_LOWLEVEL y # enable lots of SCSI devices
SCSI_LOWLEVEL_PCMCIA y
SCSI_SAS_ATA y # added to enable detection of hard drive
@@ -131,9 +135,7 @@ with stdenv.lib;
HOSTAP_FIRMWARE_NVRAM? y
ATH9K_PCI? y # Detect Atheros AR9xxx cards on PCI(e) bus
ATH9K_AHB? y # Ditto, AHB bus
- ${optionalString (versionAtLeast version "3.2") ''
- B43_PHY_HT? y
- ''}
+ B43_PHY_HT? y
BCMA_HOST_PCI? y
# Enable various FB devices.
@@ -151,7 +153,7 @@ with stdenv.lib;
FB_VESA y
FRAMEBUFFER_CONSOLE y
FRAMEBUFFER_CONSOLE_ROTATION y
- ${optionalString (versionOlder version "3.9" || stdenv.system == "i686-linux") ''
+ ${optionalString (stdenv.system == "i686-linux") ''
FB_GEODE y
''}
@@ -162,11 +164,7 @@ with stdenv.lib;
''}
# Allow specifying custom EDID on the kernel command line
DRM_LOAD_EDID_FIRMWARE y
- ${optionalString (versionOlder version "3.9") ''
- DRM_RADEON_KMS? y
- ''}
- # Hybrid graphics support
- VGA_SWITCHEROO y
+ VGA_SWITCHEROO y # Hybrid graphics support
# Sound.
SND_DYNAMIC_MINORS y
@@ -225,9 +223,7 @@ with stdenv.lib;
NFSD_V4_SECURITY_LABEL y
''}
NFS_FSCACHE y
- ${optionalString (versionAtLeast version "3.6") ''
- NFS_SWAP y
- ''}
+ NFS_SWAP y
NFS_V3_ACL y
${optionalString (versionAtLeast version "3.11") ''
NFS_V4_1 y # NFSv4.1 client support
@@ -259,6 +255,7 @@ with stdenv.lib;
DEBUG_SET_MODULE_RONX? y # Detect writes to read-only module pages
# Security related features.
+ RANDOMIZE_BASE y
STRICT_DEVMEM y # Filter access to /dev/mem
SECURITY_SELINUX_BOOTPARAM_VALUE 0 # Disable SELinux by default
DEVKMEM n # Disable /dev/kmem
@@ -297,34 +294,31 @@ with stdenv.lib;
${optionalString (versionOlder version "4.4") ''
B43_PCMCIA? y
''}
- BLK_DEV_CMD640_ENHANCED y # CMD640 enhanced support
- BLK_DEV_IDEACPI y # IDE ACPI support
BLK_DEV_INTEGRITY y
BSD_PROCESS_ACCT_V3 y
BT_HCIUART_BCSP? y
BT_HCIUART_H4? y # UART (H4) protocol support
BT_HCIUART_LL? y
- ${optionalString (versionAtLeast version "3.4") ''
- BT_RFCOMM_TTY? y # RFCOMM TTY support
- ''}
+ BT_RFCOMM_TTY? y # RFCOMM TTY support
+ CLEANCACHE? y
CRASH_DUMP? n
- ${optionalString (versionOlder version "3.1") ''
- DMAR? n # experimental
- ''}
DVB_DYNAMIC_MINORS? y # we use udev
- ${optionalString (versionAtLeast version "3.3") ''
- EFI_STUB y # EFI bootloader in the bzImage itself
- ''}
+ EFI_STUB y # EFI bootloader in the bzImage itself
FHANDLE y # used by systemd
+ FRONTSWAP y
FUSION y # Fusion MPT device support
- IDE_GD_ATAPI y # ATAPI floppy support
+ IDE n # deprecated IDE support
+ ${optionalString (versionAtLeast version "4.3") ''
+ IDLE_PAGE_TRACKING y
+ ''}
IRDA_ULTRA y # Ultra (connectionless) protocol
JOYSTICK_IFORCE_232? y # I-Force Serial joysticks and wheels
JOYSTICK_IFORCE_USB? y # I-Force USB joysticks and wheels
JOYSTICK_XPAD_FF? y # X-Box gamepad rumble support
JOYSTICK_XPAD_LEDS? y # LED Support for Xbox360 controller 'BigX' LED
+ KEXEC_FILE? y
+ KEXEC_JUMP? y
LDM_PARTITION y # Windows Logical Disk Manager (Dynamic Disk) support
- LEDS_TRIGGER_IDE_DISK y # LED IDE Disk Trigger
LOGIRUMBLEPAD2_FF y # Logitech Rumblepad 2 force feedback
LOGO n # not needed
MEDIA_ATTACH y
@@ -343,12 +337,9 @@ with stdenv.lib;
PPP_MULTILINK y # PPP multilink support
PPP_FILTER y
REGULATOR y # Voltage and Current Regulator Support
- ${optionalString (versionAtLeast version "3.6") ''
- RC_DEVICES? y # Enable IR devices
- ''}
- ${optionalString (versionAtLeast version "3.10") ''
- RT2800USB_RT55XX y
- ''}
+ RC_DEVICES? y # Enable IR devices
+ RT2800USB_RT55XX y
+ SCHED_AUTOGROUP y
SCSI_LOGGING y # SCSI logging facility
SERIAL_8250 y # 8250/16550 and compatible serial support
SLIP_COMPRESSED y # CSLIP compressed headers
@@ -363,6 +354,9 @@ with stdenv.lib;
''}
USB_EHCI_ROOT_HUB_TT y # Root Hub Transaction Translators
USB_EHCI_TT_NEWSCHED y # Improved transaction translator scheduling
+ ${optionalString (versionAtLeast version "4.3") ''
+ USERFAULTFD y
+ ''}
X86_CHECK_BIOS_CORRUPTION y
X86_MCE y
@@ -373,16 +367,14 @@ with stdenv.lib;
NAMESPACES? y # Required by 'unshare' used by 'nixos-install'
RT_GROUP_SCHED? y
CGROUP_DEVICE? y
- ${if versionAtLeast version "3.6" then ''
- MEMCG y
- MEMCG_SWAP y
- '' else ''
- CGROUP_MEM_RES_CTLR y
- CGROUP_MEM_RES_CTLR_SWAP y
- ''}
+ MEMCG y
+ MEMCG_SWAP y
${optionalString (versionOlder version "4.7") "DEVPTS_MULTIPLE_INSTANCES y"}
BLK_DEV_THROTTLING y
CFQ_GROUP_IOSCHED y
+ ${optionalString (versionAtLeast version "4.3") ''
+ CGROUP_PIDS y
+ ''}
# Enable staging drivers. These are somewhat experimental, but
# they generally don't hurt.
@@ -400,9 +392,7 @@ with stdenv.lib;
FTRACE_SYSCALLS y
SCHED_TRACER y
STACK_TRACER y
- ${optionalString (versionAtLeast version "3.10") ''
- UPROBE_EVENT y
- ''}
+ UPROBE_EVENT y
${optionalString (versionAtLeast version "4.4") ''
BPF_SYSCALL y
BPF_EVENTS y
@@ -414,28 +404,18 @@ with stdenv.lib;
DEVTMPFS y
# Easier debugging of NFS issues.
- ${optionalString (versionAtLeast version "3.4") ''
- SUNRPC_DEBUG y
- ''}
+ SUNRPC_DEBUG y
# Virtualisation.
PARAVIRT? y
- ${if versionAtLeast version "3.10" then ''
- HYPERVISOR_GUEST y
- '' else ''
- PARAVIRT_GUEST? y
- ''}
+ HYPERVISOR_GUEST y
+ PARAVIRT_SPINLOCKS? y
KVM_APIC_ARCHITECTURE y
KVM_ASYNC_PF y
- ${optionalString (versionOlder version "3.7") ''
- KVM_CLOCK? y
- ''}
${optionalString (versionAtLeast version "4.0") ''
KVM_COMPAT? y
''}
- ${optionalString (versionAtLeast version "3.10") ''
- KVM_DEVICE_ASSIGNMENT? y
- ''}
+ KVM_DEVICE_ASSIGNMENT? y
${optionalString (versionAtLeast version "4.0") ''
KVM_GENERIC_DIRTYLOG_READ_PROTECT y
''}
@@ -470,28 +450,22 @@ with stdenv.lib;
${optionalString (!stdenv.is64bit) ''
HIGHMEM64G? y # We need 64 GB (PAE) support for Xen guest support.
''}
- ${optionalString (versionAtLeast version "3.9" && stdenv.is64bit) ''
+ ${optionalString (stdenv.is64bit) ''
VFIO_PCI_VGA y
''}
VIRT_DRIVERS y
# Media support.
- ${optionalString (versionAtLeast version "3.6") ''
- MEDIA_DIGITAL_TV_SUPPORT y
- MEDIA_CAMERA_SUPPORT y
- MEDIA_RC_SUPPORT y
- ''}
- ${optionalString (versionAtLeast version "3.7") ''
- MEDIA_USB_SUPPORT y
- ${optionalString (!(features.chromiumos or false)) ''
- MEDIA_PCI_SUPPORT y
- ''}
+ MEDIA_DIGITAL_TV_SUPPORT y
+ MEDIA_CAMERA_SUPPORT y
+ MEDIA_RC_SUPPORT y
+ MEDIA_USB_SUPPORT y
+ ${optionalString (!(features.chromiumos or false)) ''
+ MEDIA_PCI_SUPPORT y
''}
# Our initrd init uses shebang scripts, so can't be modular.
- ${optionalString (versionAtLeast version "3.10") ''
- BINFMT_SCRIPT y
- ''}
+ BINFMT_SCRIPT y
# For systemd-binfmt
BINFMT_MISC? y
@@ -506,10 +480,9 @@ with stdenv.lib;
TRANSPARENT_HUGEPAGE_MADVISE? y
# zram support (e.g for in-memory compressed swap).
- ${optionalString (versionAtLeast version "3.4") ''
- ZSMALLOC y
- ''}
+ ZSMALLOC y
ZRAM m
+ ZSWAP y
# Enable PCIe and USB for the brcmfmac driver
BRCMFMAC_USB? y
diff --git a/pkgs/os-specific/linux/kernel/ecryptfs-fix-mmap-bug.patch b/pkgs/os-specific/linux/kernel/ecryptfs-fix-mmap-bug.patch
new file mode 100644
index 00000000000..7f94669a9f4
--- /dev/null
+++ b/pkgs/os-specific/linux/kernel/ecryptfs-fix-mmap-bug.patch
@@ -0,0 +1,20 @@
+Signed-off-by: Tyler Hicks
+Tested-by: Tyler Hicks # 4.4.y, 3.18.y
+Cc: # 4.5-
+---
+ fs/ecryptfs/kthread.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/fs/ecryptfs/kthread.c b/fs/ecryptfs/kthread.c
+index e818f5a..b9faeab 100644
+--- a/fs/ecryptfs/kthread.c
++++ b/fs/ecryptfs/kthread.c
+@@ -171,7 +171,7 @@ int ecryptfs_privileged_open(struct file **lower_file,
+ goto out;
+ }
+ have_file:
+- if ((*lower_file)->f_op->mmap == NULL) {
++ if ((*lower_file)->f_op->mmap == NULL && !d_is_dir(lower_dentry)) {
+ fput(*lower_file);
+ *lower_file = NULL;
+ rc = -EMEDIUMTYPE;
diff --git a/pkgs/os-specific/linux/kernel/grsecurity-nixos-config.nix b/pkgs/os-specific/linux/kernel/grsecurity-nixos-config.nix
index 894f2d8e364..67bad8aeb40 100644
--- a/pkgs/os-specific/linux/kernel/grsecurity-nixos-config.nix
+++ b/pkgs/os-specific/linux/kernel/grsecurity-nixos-config.nix
@@ -14,7 +14,7 @@ GRKERNSEC_CONFIG_VIRT_KVM y
GRKERNSEC_CONFIG_PRIORITY_SECURITY y
PAX_PT_PAX_FLAGS y
-PAX_XATTR_PAX_FLAGS n
+PAX_XATTR_PAX_FLAGS y
PAX_EI_PAX n
GRKERNSEC_PROC_GID 0
diff --git a/pkgs/os-specific/linux/kernel/linux-4.6.nix b/pkgs/os-specific/linux/kernel/linux-4.6.nix
index d5ea9039891..c0849942f4f 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.6.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.6.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
import ./generic.nix (args // rec {
- version = "4.6.3";
+ version = "4.6.4";
extraMeta.branch = "4.6";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "0rq9cciabw5gfi2z30fcwh6z4zm2fgp938xmblfw59hyjj98h60k";
+ sha256 = "0zpz29hgwdwkil6rakn08bdq77qjcz8q18qlkfc43s84f4fd8s45";
};
kernelPatches = args.kernelPatches;
diff --git a/pkgs/os-specific/linux/kernel/linux-grsecurity.nix b/pkgs/os-specific/linux/kernel/linux-grsecurity.nix
index d5ea9039891..c0849942f4f 100644
--- a/pkgs/os-specific/linux/kernel/linux-grsecurity.nix
+++ b/pkgs/os-specific/linux/kernel/linux-grsecurity.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
import ./generic.nix (args // rec {
- version = "4.6.3";
+ version = "4.6.4";
extraMeta.branch = "4.6";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "0rq9cciabw5gfi2z30fcwh6z4zm2fgp938xmblfw59hyjj98h60k";
+ sha256 = "0zpz29hgwdwkil6rakn08bdq77qjcz8q18qlkfc43s84f4fd8s45";
};
kernelPatches = args.kernelPatches;
diff --git a/pkgs/os-specific/linux/kernel/linux-testing.nix b/pkgs/os-specific/linux/kernel/linux-testing.nix
index 27e3681fdba..37e5da5a905 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.7-rc6";
- modDirVersion = "4.7.0-rc6";
+ version = "4.7-rc7";
+ modDirVersion = "4.7.0-rc7";
extraMeta.branch = "4.7";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz";
- sha256 = "1kli8m6xkpdp45ryx6aq894q5dvrl1s7h3g1akk0l7xp6grshk8r";
+ sha256 = "11c87rhxlrmag9hhg1m8zfff0d52yrzvhyjj9dxfa3nmxj4sfbb7";
};
features.iwlwifi = true;
diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix
index 103e2235532..ddb1ccce91b 100644
--- a/pkgs/os-specific/linux/kernel/patches.nix
+++ b/pkgs/os-specific/linux/kernel/patches.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgs }:
+{ stdenv, fetchurl, fetchpatch, pkgs }:
let
@@ -93,9 +93,9 @@ rec {
grsecurity_4_4 = throw "grsecurity stable is no longer supported";
grsecurity_testing = grsecPatch
- { kver = "4.6.3";
- grrev = "201607070721";
- sha256 = "1858zc77x1qbwwfhjlmffd21w4adsw9f3sycg6bksw2jxrhlzww5";
+ { kver = "4.6.4";
+ grrev = "201607192040";
+ sha256 = "14l52halck6lwbpahz3fmv7q5cx22r77k1hqfnn29a66ws9ra6sz";
};
# This patch relaxes grsec constraints on the location of usermode helpers,
@@ -140,4 +140,16 @@ rec {
{ name = "qat_common_Makefile";
patch = ./qat_common_Makefile.patch;
};
+
+ hiddev_CVE_2016_5829 =
+ { name = "hiddev_CVE_2016_5829";
+ patch = fetchpatch {
+ url = "https://sources.debian.net/data/main/l/linux/4.6.3-1/debian/patches/bugfix/all/HID-hiddev-validate-num_values-for-HIDIOCGUSAGES-HID.patch";
+ sha256 = "14rm1qr87p7a5prz8g5fwbpxzdp3ighj095x8rvhm8csm20wspyy";
+ };
+ };
+ ecryptfs_fix_mmap_bug =
+ { name = "ecryptfs_fix_mmap_bug";
+ patch = ./ecryptfs-fix-mmap-bug.patch;
+ };
}
diff --git a/pkgs/os-specific/linux/lightum/default.nix b/pkgs/os-specific/linux/lightum/default.nix
index 0ef447ed924..3eaf4363195 100644
--- a/pkgs/os-specific/linux/lightum/default.nix
+++ b/pkgs/os-specific/linux/lightum/default.nix
@@ -18,6 +18,11 @@ stdenv.mkDerivation {
systemd
];
+ patchPhase = ''
+ substituteInPlace Makefile \
+ --replace "libsystemd-login" "libsystemd"
+ '';
+
installPhase = ''
make install prefix=$out bindir=$out/bin docdir=$out/share/doc \
mandir=$out/share/man INSTALL="install -c" INSTALLDATA="install -c -m 644"
diff --git a/pkgs/os-specific/linux/lxc/default.nix b/pkgs/os-specific/linux/lxc/default.nix
index eda1863ec97..f15f72ca5bc 100644
--- a/pkgs/os-specific/linux/lxc/default.nix
+++ b/pkgs/os-specific/linux/lxc/default.nix
@@ -12,11 +12,11 @@ in
with stdenv.lib;
stdenv.mkDerivation rec {
name = "lxc-${version}";
- version = "2.0.1";
+ version = "2.0.3";
src = fetchurl {
url = "https://linuxcontainers.org/downloads/lxc/lxc-${version}.tar.gz";
- sha256 = "0l4fs6ckvip5akfa0vbjfk34ddvcv0c84mmpj9yrcfl67qwn31z9";
+ sha256 = "1mp83r1v9bcxjl7a441sm6plipj8aglhnmkxczp3jinlrnh41pw2";
};
nativeBuildInputs = [
diff --git a/pkgs/os-specific/linux/plymouth/default.nix b/pkgs/os-specific/linux/plymouth/default.nix
index 00d330ca955..b1b1a4649ba 100644
--- a/pkgs/os-specific/linux/plymouth/default.nix
+++ b/pkgs/os-specific/linux/plymouth/default.nix
@@ -1,27 +1,32 @@
-{ stdenv, fetchurl, autoreconfHook, cairo, docbook_xsl, gtk
-, libdrm, libpng, libxslt, makeWrapper, pango, pkgconfig, udev
+{ stdenv, fetchurl, autoreconfHook, pkgconfig, libxslt, docbook_xsl
+, gtk3, udev, systemd
}:
stdenv.mkDerivation rec {
name = "plymouth-${version}";
- version = "0.9.0";
+ version = "0.9.2";
src = fetchurl {
url = "http://www.freedesktop.org/software/plymouth/releases/${name}.tar.bz2";
- sha256 = "0kfdwv179brg390ma003pmdqfvqlbybqiyp9fxrxx0wa19sjxqnk";
+ sha256 = "0zympsgy5bbfl2ag5nc1jxlshpx8r1s1yyjisanpx76g88hfh31g";
};
- buildInputs = [
- autoreconfHook cairo docbook_xsl gtk libdrm libpng
- libxslt makeWrapper pango pkgconfig udev
+ nativeBuildInputs = [
+ autoreconfHook pkgconfig libxslt docbook_xsl
];
- prePatch = ''
- sed -e "s#\$(\$PKG_CONFIG --variable=systemdsystemunitdir systemd)#$out/etc/systemd/system#g" \
- -i configure.ac
- '';
+ buildInputs = [
+ gtk3 udev systemd
+ ];
postPatch = ''
+ sed -i \
+ -e "s#\$(\$PKG_CONFIG --variable=systemdsystemunitdir systemd)#$out/etc/systemd/system#g" \
+ -e "s#plymouthplugindir=.*#plymouthplugindir=/etc/plymouth/plugins/#" \
+ -e "s#plymouththemedir=.*#plymouththemedir=/etc/plymouth/themes#" \
+ -e "s#plymouthpolicydir=.*#plymouthpolicydir=/etc/plymouth/#" \
+ configure.ac
+
configureFlags="
--prefix=$out
--bindir=$out/bin
@@ -29,15 +34,24 @@ stdenv.mkDerivation rec {
--exec-prefix=$out
--libdir=$out/lib
--libexecdir=$out/lib
- --sysconfdir=$out/etc
+ --sysconfdir=/etc
--localstatedir=/var
- --with-log-viewer
+ --with-logo=/etc/plymouth/logo.png
+ --with-background-color=0x000000
+ --with-background-start-color-stop=0x000000
+ --with-background-end-color-stop=0x000000
+ --with-release-file=/etc/os-release
--without-system-root-install
--without-rhgb-compat-link
--enable-tracing
--enable-systemd-integration
--enable-pango
+ --enable-gdm-transition
--enable-gtk"
+
+ installFlags="
+ plymouthd_defaultsdir=$out/share/plymouth
+ plymouthd_confdir=$out/etc/plymouth"
'';
meta = with stdenv.lib; {
diff --git a/pkgs/os-specific/linux/powerstat/default.nix b/pkgs/os-specific/linux/powerstat/default.nix
new file mode 100644
index 00000000000..9604a67ddd9
--- /dev/null
+++ b/pkgs/os-specific/linux/powerstat/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, lib, fetchurl }:
+
+stdenv.mkDerivation rec {
+ name = "powerstat-${version}";
+ version = "0.02.10";
+ src = fetchurl {
+ url = "http://kernel.ubuntu.com/~cking/tarballs/powerstat/powerstat-${version}.tar.gz";
+ sha256 = "11n2k20h27j7m8j0l524w23xlkjhapsb3ml1qpx1si7gf0pkglcl";
+ };
+ installFlags = [ "DESTDIR=$(out)" ];
+ postInstall = ''
+ mv $out/usr/* $out
+ rm -r $out/usr
+ '';
+ meta = with lib; {
+ description = "Laptop power measuring tool";
+ homepage = http://kernel.ubuntu.com/~cking/powerstat/;
+ license = licenses.gpl2;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ womfoo ];
+ };
+}
diff --git a/pkgs/os-specific/linux/smemstat/default.nix b/pkgs/os-specific/linux/smemstat/default.nix
new file mode 100644
index 00000000000..a38c819bc6f
--- /dev/null
+++ b/pkgs/os-specific/linux/smemstat/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, lib, fetchurl }:
+
+stdenv.mkDerivation rec {
+ name = "smemstat-${version}";
+ version = "0.01.14";
+ src = fetchurl {
+ url = "http://kernel.ubuntu.com/~cking/tarballs/smemstat/smemstat-${version}.tar.gz";
+ sha256 = "0qkpbg0n40d8m9jzf3ylpdp65zzs344zbjn8khha4plbwg00ijrw";
+ };
+ installFlags = [ "DESTDIR=$(out)" ];
+ postInstall = ''
+ mv $out/usr/* $out
+ rm -r $out/usr
+ '';
+ meta = with lib; {
+ description = "Memory usage monitoring tool";
+ homepage = http://kernel.ubuntu.com/~cking/smemstat/;
+ license = licenses.gpl2;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ womfoo ];
+ };
+}
diff --git a/pkgs/os-specific/linux/sysdig/default.nix b/pkgs/os-specific/linux/sysdig/default.nix
index 82e088b76c2..39ce6d588f8 100644
--- a/pkgs/os-specific/linux/sysdig/default.nix
+++ b/pkgs/os-specific/linux/sysdig/default.nix
@@ -3,10 +3,10 @@ let
inherit (stdenv.lib) optional optionalString;
s = rec {
baseName="sysdig";
- version = "0.9.0";
+ version = "0.10.0";
name="${baseName}-${version}";
url="https://github.com/draios/sysdig/archive/${version}.tar.gz";
- sha256 = "198x1zmlydvi4i1sfvs8xjh9z5pb47l6xs4phrnkwwak46rhka3j";
+ sha256 = "0hs0r9z9j7padqdcj69bwx52iw6gvdl0w322qwivpv12j3prcpsj";
};
buildInputs = [
cmake zlib luajit ncurses perl jsoncpp libb64 openssl curl
diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix
index 0ba6c431c9f..05cef1ffd50 100644
--- a/pkgs/os-specific/linux/systemd/default.nix
+++ b/pkgs/os-specific/linux/systemd/default.nix
@@ -16,12 +16,10 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "NixOS";
repo = "systemd";
- rev = "4ccee551f2ba8383c8b9bd06590a3cd1dfdf690f";
- sha256 = "1i4my5z7f8g5bykv1vxyw1az66s087lfqrck79kdm4hgvb4lsk6y";
+ rev = "81d5aaac06b43fd72f5ab02734a17cbfb55d1f5b";
+ sha256 = "1ig7jwmvaa1r4qlngjpnvvvvxhmzbxr171d257q4ryf87l93g1an";
};
- patches = [ ./hwdb-location.diff ];
-
/* gave up for now!
outputs = [ "out" "libudev" "doc" ]; # maybe: "dev"
# note: there are many references to ${systemd}/...
@@ -99,7 +97,8 @@ stdenv.mkDerivation rec {
--replace /bin/echo ${coreutils}/bin/echo \
--replace /bin/cat ${coreutils}/bin/cat \
--replace /sbin/sulogin ${utillinux.bin}/sbin/sulogin \
- --replace /usr/lib/systemd/systemd-fsck $out/lib/systemd/systemd-fsck
+ --replace /usr/lib/systemd/systemd-fsck $out/lib/systemd/systemd-fsck \
+ --replace /bin/plymouth /run/current-system/sw/bin/plymouth # To avoid dependency
done
substituteInPlace src/journal/catalog.c \
diff --git a/pkgs/os-specific/linux/systemd/hwdb-location.diff b/pkgs/os-specific/linux/systemd/hwdb-location.diff
deleted file mode 100644
index 31e7a027f50..00000000000
--- a/pkgs/os-specific/linux/systemd/hwdb-location.diff
+++ /dev/null
@@ -1,19 +0,0 @@
-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/v4l-utils/default.nix b/pkgs/os-specific/linux/v4l-utils/default.nix
index 476f3ffcac6..dbb3e60c335 100644
--- a/pkgs/os-specific/linux/v4l-utils/default.nix
+++ b/pkgs/os-specific/linux/v4l-utils/default.nix
@@ -16,11 +16,11 @@ let
in
stdenv.mkDerivation rec {
- name = "v4l-utils-1.6.3";
+ name = "v4l-utils-1.10.1";
src = fetchurl {
url = "http://linuxtv.org/downloads/v4l-utils/${name}.tar.bz2";
- sha256 = "0k46z5gqjzg702m2vs4sv6sxynq1sj14m0pgwvl2gkgg3dfbyjhn";
+ sha256 = "1h1nhg5cmmzlbipak526nk4bm6d0yb217mll75f3rpg7kz1cqiv1";
};
outputs = [ "dev" "out" ];
diff --git a/pkgs/os-specific/linux/wireguard/default.nix b/pkgs/os-specific/linux/wireguard/default.nix
new file mode 100644
index 00000000000..3e5f6ae7480
--- /dev/null
+++ b/pkgs/os-specific/linux/wireguard/default.nix
@@ -0,0 +1,55 @@
+{ stdenv, fetchgit, libmnl, kernel ? null }:
+
+let
+ name = "wireguard-${version}";
+
+ version = "20160708";
+
+ src = fetchgit {
+ url = "https://git.zx2c4.com/WireGuard";
+ rev = "dcc2583fe0618931e51aedaeeddde356d123acb2";
+ sha256 = "1ciyjpp8c3fv95y1cypk9qyqynp8cqyh2676afq2hd33110d37ni";
+ };
+
+ meta = with stdenv.lib; {
+ homepage = https://www.wireguard.io/;
+ description = "Fast, modern, secure VPN tunnel";
+ license = licenses.gpl2;
+ platforms = platforms.linux;
+ };
+
+ module = stdenv.mkDerivation {
+ inherit src meta name;
+
+ preConfigure = ''
+ cd src
+ sed -i '/depmod/,+1d' Makefile
+ '';
+
+ KERNELDIR = "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build";
+ INSTALL_MOD_PATH = "\${out}";
+
+ buildPhase = "make module";
+
+ };
+
+ tools = stdenv.mkDerivation {
+ inherit src meta name;
+
+ preConfigure = "cd src";
+
+ buildInputs = [ libmnl ];
+
+ makeFlags = [
+ "DESTDIR=$(out)"
+ "PREFIX=/"
+ "-C" "tools"
+ ];
+
+ buildPhase = "make tools";
+
+ };
+
+in if kernel == null
+ then tools
+ else module
diff --git a/pkgs/servers/computing/storm/default.nix b/pkgs/servers/computing/storm/default.nix
index cab91409654..cf57e653c49 100644
--- a/pkgs/servers/computing/storm/default.nix
+++ b/pkgs/servers/computing/storm/default.nix
@@ -1,49 +1,65 @@
-{ stdenv, fetchurl, zip, unzip, jzmq, jdk, lib, python, logsDir ? "", confFile ? "", extraLibraryPaths ? [], extraJars ? [] }:
+{ stdenv, lib, fetchurl, zip, unzip, makeWrapper
+, jzmq, jdk, python
+, logsDir ? "", confFile ? "", extraLibraryPaths ? [], extraJars ? [] }:
-stdenv.mkDerivation {
- name = "storm-0.8.2";
+stdenv.mkDerivation rec {
+ name = "apache-storm-" + version;
+ version = "1.0.1";
src = fetchurl {
- url = https://dl.dropbox.com/u/133901206/storm-0.8.2.zip;
- sha256 = "8761aea0b54e5bab4a68b259bbe6b5b2f8226204488b5559eba57a0c458b2bbc";
+ url =
+ "mirror://apache/storm/${name}/${name}.tar.gz";
+ sha256 = "1gr00s0fhf8ci0faf3x5dinkiw9mlnc1x1vqki8cfszvij6w0x0m";
};
buildInputs = [ zip unzip jzmq ];
installPhase = ''
- # Remove junk
- rm -f lib/jzmq*
- mkdir -p $out/bin
- mv bin/storm $out/bin/
- rm -R bin conf logs
+ mkdir -p $out/share/${name}
+ mv public $out/docs
+ mv examples $out/share/${name}/.
- # Fix shebang header for python scripts
- sed -i -e "s|#!/usr/bin/.*python|#!${python}/bin/python|" $out/bin/storm;
+ rm -f lib/jzmq* || exit 1
+ mv lib $out/.
+ mv external extlib* $out/lib/.
+ mv conf bin $out/.
+ mv log4j2 $out/conf/.
+ '';
- mkdir -p $out/conf
- cp -av * $out
-
- cd $out;
- ${if logsDir != "" then ''ln -s ${logsDir} logs'' else ""}
-
- # Extract, delete from zip; and optionally append to defaults.yaml
- unzip storm-*.jar defaults.yaml;
- zip -d storm-*.jar defaults.yaml;
- echo 'java.library.path: "${jzmq}/lib:${lib.concatStringsSep ":" extraLibraryPaths}"' >> defaults.yaml;
+ fixupPhase = ''
+ # Fix python reference
+ sed -i \
+ -e '19iPYTHON=${python}/bin/python' \
+ -e 's|#!/usr/bin/.*python|#!${python}/bin/python|' \
+ $out/bin/storm
+ sed -i \
+ -e 's|#!/usr/bin/.*python|#!${python}/bin/python|' \
+ -e "s|STORM_CONF_DIR = .*|STORM_CONF_DIR = os.getenv('STORM_CONF_DIR','$out/conf')|" \
+ -e 's|STORM_LOG4J2_CONF_DIR =.*|STORM_LOG4J2_CONF_DIR = os.path.join(STORM_CONF_DIR, "log4j2")|' \
+ $out/bin/storm.py
+ # Default jdk location
+ sed -i -e 's|#.*export JAVA_HOME=.*|export JAVA_HOME="${jdk.home}"|' \
+ $out/conf/storm-env.sh
+ unzip $out/lib/storm-core-${version}.jar defaults.yaml;
+ zip -d $out/lib/storm-core-${version}.jar defaults.yaml;
+ sed -i \
+ -e 's|java.library.path: .*|java.library.path: "${jzmq}/lib:${lib.concatStringsSep ":" extraLibraryPaths}"|' \
+ -e 's|storm.log4j2.conf.dir: .*|storm.log4j2.conf.dir: "conf/log4j2"|' \
+ defaults.yaml
${if confFile != "" then ''cat ${confFile} >> defaults.yaml'' else ""}
- mv defaults.yaml conf;
+ mv defaults.yaml $out/conf;
# Link to jzmq jar and extra jars
- cd lib;
+ cd $out/lib;
ln -s ${jzmq}/share/java/*.jar;
${lib.concatMapStrings (jar: "ln -s ${jar};\n") extraJars}
'';
dontStrip = true;
- meta = {
- homepage = "http://storm-project.net";
+ meta = with stdenv.lib; {
+ homepage = "http://storm.apache.org";
description = "Distributed realtime computation system";
- license = stdenv.lib.licenses.epl10;
- maintainers = [ lib.maintainers.vizanto ];
+ license = licenses.asl20;
+ maintainers = with maintainers; [ edwtjo vizanto ];
};
}
diff --git a/pkgs/servers/emby/default.nix b/pkgs/servers/emby/default.nix
index e1325ec38c1..1d9d9772706 100644
--- a/pkgs/servers/emby/default.nix
+++ b/pkgs/servers/emby/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "emby-${version}";
- version = "3.0.5972";
+ version = "3.0.5986";
src = fetchurl {
url = "https://github.com/MediaBrowser/Emby/archive/${version}.tar.gz";
- sha256 = "0dxm7m8q9w9cknp24gp30v7v8a9q8qph6gy2s1vfli38rwcnakix";
+ sha256 = "0lccyvwk9pm9vn3fg4pa9956f4xn6fcqzlyj8rkxgwf7avzibxix";
};
propagatedBuildInputs = with pkgs; [
diff --git a/pkgs/servers/etcd/default.nix b/pkgs/servers/etcd/default.nix
index 782d7001dee..2c76dfc8e31 100644
--- a/pkgs/servers/etcd/default.nix
+++ b/pkgs/servers/etcd/default.nix
@@ -2,7 +2,7 @@
buildGoPackage rec {
name = "etcd-${version}";
- version = "2.3.0";
+ version = "2.3.7";
rev = "v${version}";
goPackagePath = "github.com/coreos/etcd";
@@ -11,7 +11,7 @@ buildGoPackage rec {
inherit rev;
owner = "coreos";
repo = "etcd";
- sha256 = "1cchlhsdbbqal145cvdiq7rzqqi131iq7z0r2hmzwx414k04wyn7";
+ sha256 = "07rdnhcpnvnkxj5pqacxz669rzn5vw2i1zmf6dd4nv7wpfscdw9f";
};
goDeps = ./deps.json;
diff --git a/pkgs/servers/http/lighttpd/default.nix b/pkgs/servers/http/lighttpd/default.nix
index af029cc4db2..8f75461070f 100644
--- a/pkgs/servers/http/lighttpd/default.nix
+++ b/pkgs/servers/http/lighttpd/default.nix
@@ -7,11 +7,11 @@ assert enableMagnet -> lua5_1 != null;
assert enableMysql -> mysql != null;
stdenv.mkDerivation rec {
- name = "lighttpd-1.4.39";
+ name = "lighttpd-1.4.40";
src = fetchurl {
url = "http://download.lighttpd.net/lighttpd/releases-1.4.x/${name}.tar.xz";
- sha256 = "0nrnhxl1ypzgsms0ky6zdf6ib94vf8x77c422s2xav9x7j2s3fby";
+ sha256 = "13agkmxii11kyary7pmv8kw4w1rp15swx800d98nqkb0yzy0sic0";
};
buildInputs = [ pkgconfig pcre libxml2 zlib attr bzip2 which file openssl ]
diff --git a/pkgs/servers/http/nginx/default.nix b/pkgs/servers/http/nginx/generic.nix
similarity index 94%
rename from pkgs/servers/http/nginx/default.nix
rename to pkgs/servers/http/nginx/generic.nix
index 394a20420c7..6817f18bd1d 100644
--- a/pkgs/servers/http/nginx/default.nix
+++ b/pkgs/servers/http/nginx/generic.nix
@@ -3,17 +3,17 @@
, withStream ? false
, modules ? []
, hardening ? true
+, version, sha256, ...
}:
with stdenv.lib;
-stdenv.mkDerivation rec {
+stdenv.mkDerivation {
name = "nginx-${version}";
- version = "1.10.1";
src = fetchurl {
url = "http://nginx.org/download/nginx-${version}.tar.gz";
- sha256 = "00d8hxj8453c7989qd7z4f1mjp0k3ib8k29i1qyf11b4ar35ilqz";
+ inherit sha256;
};
diff --git a/pkgs/servers/http/nginx/mainline.nix b/pkgs/servers/http/nginx/mainline.nix
new file mode 100644
index 00000000000..6e4c49abc5b
--- /dev/null
+++ b/pkgs/servers/http/nginx/mainline.nix
@@ -0,0 +1,6 @@
+{ callPackage, ... }@args:
+
+callPackage ./generic.nix (args // {
+ version = "1.11.2";
+ sha256 = "02khwad28ar2jjdfssysx262bgwgirm9967gnfhw9ga7wvipncm0";
+})
diff --git a/pkgs/servers/http/nginx/unstable.upstream b/pkgs/servers/http/nginx/mainline.upstream
similarity index 100%
rename from pkgs/servers/http/nginx/unstable.upstream
rename to pkgs/servers/http/nginx/mainline.upstream
diff --git a/pkgs/servers/http/nginx/stable.nix b/pkgs/servers/http/nginx/stable.nix
new file mode 100644
index 00000000000..e677b181bb5
--- /dev/null
+++ b/pkgs/servers/http/nginx/stable.nix
@@ -0,0 +1,6 @@
+{ callPackage, ... } @ args:
+
+callPackage ./generic.nix (args // {
+ version = "1.10.1";
+ sha256 = "00d8hxj8453c7989qd7z4f1mjp0k3ib8k29i1qyf11b4ar35ilqz";
+})
diff --git a/pkgs/servers/http/nginx/default.upstream b/pkgs/servers/http/nginx/stable.upstream
similarity index 100%
rename from pkgs/servers/http/nginx/default.upstream
rename to pkgs/servers/http/nginx/stable.upstream
diff --git a/pkgs/servers/monitoring/grafana/default.nix b/pkgs/servers/monitoring/grafana/default.nix
index 28bf83a247f..884785699a6 100644
--- a/pkgs/servers/monitoring/grafana/default.nix
+++ b/pkgs/servers/monitoring/grafana/default.nix
@@ -1,7 +1,8 @@
-{ lib, buildGoPackage, fetchurl, fetchFromGitHub }:
+{ lib, buildGoPackage, fetchurl, fetchFromGitHub, phantomjs2 }:
buildGoPackage rec {
- version = "3.0.1";
+ version = "3.1.0";
+ ts = "1468321182";
name = "grafana-v${version}";
goPackagePath = "github.com/grafana/grafana";
@@ -9,19 +10,20 @@ buildGoPackage rec {
rev = "v${version}";
owner = "grafana";
repo = "grafana";
- sha256 = "1zykgf8xq7m040d4yljcbz23gh8ppaqnxj50ncj1cjyi5k88i3i9";
+ sha256 = "1p3qp3p4wsb7m2lvdcrc1wz5mxqwqsj5xfqp28hkbfdqh3lblh42";
};
srcStatic = fetchurl {
- url = "https://grafanarel.s3.amazonaws.com/builds/grafana-${version}-.linux-x64.tar.gz";
- sha256 = "14wq2cbf4djnwbbyfbhnwmwqpfh5g4yp1dckg5zzf2109ymkjrqd";
+ url = "https://grafanarel.s3.amazonaws.com/builds/grafana-${version}-${ts}.linux-x64.tar.gz";
+ sha256 = "174w0bx5cqriy77dyk9xsnmdskykzmgbyjczwb5kkp6j8vp7b0fs";
};
preBuild = "export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/${goPackagePath}/Godeps/_workspace";
postInstall = ''
tar -xvf $srcStatic
mkdir -p $bin/share/grafana
- mv grafana-*/{public,conf} $bin/share/grafana/
+ mv grafana-*/{public,conf,vendor} $bin/share/grafana/
+ ln -sf ${phantomjs2}/bin/phantomjs $bin/share/grafana/vendor/phantomjs/phantomjs
'';
meta = with lib; {
diff --git a/pkgs/servers/monitoring/prometheus/alertmanager.nix b/pkgs/servers/monitoring/prometheus/alertmanager.nix
index 330a528ef2f..55ac38f2e37 100644
--- a/pkgs/servers/monitoring/prometheus/alertmanager.nix
+++ b/pkgs/servers/monitoring/prometheus/alertmanager.nix
@@ -2,8 +2,8 @@
buildGoPackage rec {
name = "alertmanager-${version}";
- version = "0.1.0";
- rev = "${version}";
+ version = "0.3.0";
+ rev = "v${version}";
goPackagePath = "github.com/prometheus/alertmanager";
@@ -11,7 +11,7 @@ buildGoPackage rec {
inherit rev;
owner = "prometheus";
repo = "alertmanager";
- sha256 = "1ya465bns6cj2lqbipmfm13wz8kxii5h9mm7lc0ba1xv26xx5zs7";
+ sha256 = "0ychc2qvn3lzs4rg5f5sslil7clvcpzclcmfj83qjqp8krpg72b5";
};
# Tests exist, but seem to clash with the firewall.
diff --git a/pkgs/servers/monitoring/prometheus/collectd-exporter.nix b/pkgs/servers/monitoring/prometheus/collectd-exporter.nix
index bcb1889224c..dc9b6fd843e 100644
--- a/pkgs/servers/monitoring/prometheus/collectd-exporter.nix
+++ b/pkgs/servers/monitoring/prometheus/collectd-exporter.nix
@@ -2,7 +2,7 @@
buildGoPackage rec {
name = "collectd-exporter-${version}";
- version = "0.1.0";
+ version = "0.3.1";
rev = version;
goPackagePath = "github.com/prometheus/collectd_exporter";
@@ -11,14 +11,14 @@ buildGoPackage rec {
inherit rev;
owner = "prometheus";
repo = "collectd_exporter";
- sha256 = "165zsdn0lffb6fvxz75szmm152a6wmia5skb96k1mv59qbmn9fi1";
+ sha256 = "1p0kb7c8g0r0sp5a6xrx8vnwbw14hhwlqzk4n2xx2y8pvnbivajz";
};
goDeps = ./collectd-exporter_deps.json;
meta = with stdenv.lib; {
description = "Relay server for exporting metrics from collectd to Prometheus";
- homepage = https://github.com/prometheus/alertmanager;
+ homepage = https://github.com/prometheus/collectd_exporter;
license = licenses.asl20;
maintainers = with maintainers; [ benley ];
platforms = platforms.unix;
diff --git a/pkgs/servers/monitoring/prometheus/default.nix b/pkgs/servers/monitoring/prometheus/default.nix
index 1fbcd50d733..ad9143ec33f 100644
--- a/pkgs/servers/monitoring/prometheus/default.nix
+++ b/pkgs/servers/monitoring/prometheus/default.nix
@@ -2,8 +2,8 @@
buildGoPackage rec {
name = "prometheus-${version}";
- version = "0.17.0";
- rev = "${version}";
+ version = "1.0.0";
+ rev = "v${version}";
goPackagePath = "github.com/prometheus/prometheus";
@@ -11,7 +11,7 @@ buildGoPackage rec {
inherit rev;
owner = "prometheus";
repo = "prometheus";
- sha256 = "176198krna2i37dfhwsqi7m36sqn175yiny6n52vj27mc9s8ggzx";
+ sha256 = "0wb6aj2019b2bkaai94mxdy8gr6gs7jpkm7ms8h9n2ms041gdsff";
};
docheck = true;
diff --git a/pkgs/servers/monitoring/prometheus/haproxy-exporter.nix b/pkgs/servers/monitoring/prometheus/haproxy-exporter.nix
index 7de99ecd395..f2afd2aa273 100644
--- a/pkgs/servers/monitoring/prometheus/haproxy-exporter.nix
+++ b/pkgs/servers/monitoring/prometheus/haproxy-exporter.nix
@@ -2,7 +2,7 @@
buildGoPackage rec {
name = "haproxy_exporter-${version}";
- version = "0.4.0";
+ version = "0.7.0";
rev = version;
goPackagePath = "github.com/prometheus/haproxy_exporter";
@@ -11,7 +11,7 @@ buildGoPackage rec {
inherit rev;
owner = "prometheus";
repo = "haproxy_exporter";
- sha256 = "0cwls1d4hmzjkwc50mjkxjb4sa4q6yq581wlc5sg9mdvl6g91zxr";
+ sha256 = "1jkijdawmnj5yps0yaj47nyfmcah0krwmqsjvicm3sl0dhwmac4w";
};
goDeps = ./haproxy-exporter_deps.json;
diff --git a/pkgs/servers/monitoring/prometheus/mysqld-exporter.nix b/pkgs/servers/monitoring/prometheus/mysqld-exporter.nix
index f7256287955..64a9e6cc28e 100644
--- a/pkgs/servers/monitoring/prometheus/mysqld-exporter.nix
+++ b/pkgs/servers/monitoring/prometheus/mysqld-exporter.nix
@@ -2,7 +2,7 @@
buildGoPackage rec {
name = "mysqld_exporter-${version}";
- version = "0.1.0";
+ version = "0.8.1";
rev = version;
goPackagePath = "github.com/prometheus/mysqld_exporter";
@@ -11,7 +11,7 @@ buildGoPackage rec {
inherit rev;
owner = "prometheus";
repo = "mysqld_exporter";
- sha256 = "10xnyxyb6saz8pq3ijp424hxy59cvm1b5c9zcbw7ddzzkh1f6jd9";
+ sha256 = "0pwf2vii9n9zgad1lxgw28c2743yc9c3qc03516fiwvlqc1cpddr";
};
goDeps = ./mysqld-exporter_deps.json;
diff --git a/pkgs/servers/monitoring/prometheus/nginx-exporter.nix b/pkgs/servers/monitoring/prometheus/nginx-exporter.nix
index c3b25e2fcc5..9adfdda1d07 100644
--- a/pkgs/servers/monitoring/prometheus/nginx-exporter.nix
+++ b/pkgs/servers/monitoring/prometheus/nginx-exporter.nix
@@ -4,7 +4,7 @@ buildGoPackage rec {
name = "nginx_exporter-${version}";
version = "20160524-${stdenv.lib.strings.substring 0 7 rev}";
rev = "2cf16441591f6b6e58a8c0439dcaf344057aea2b";
-
+
goPackagePath = "github.com/discordianfish/nginx_exporter";
src = fetchgit {
diff --git a/pkgs/servers/monitoring/prometheus/node-exporter.nix b/pkgs/servers/monitoring/prometheus/node-exporter.nix
index a5dd161b55e..161b56c1d2d 100644
--- a/pkgs/servers/monitoring/prometheus/node-exporter.nix
+++ b/pkgs/servers/monitoring/prometheus/node-exporter.nix
@@ -2,21 +2,20 @@
buildGoPackage rec {
name = "node_exporter-${version}";
- version = "0.11.0";
+ version = "0.12.0";
rev = version;
-
+
goPackagePath = "github.com/prometheus/node_exporter";
src = fetchFromGitHub {
inherit rev;
owner = "prometheus";
repo = "node_exporter";
- sha256 = "149fs9yxnbiyd4ww7bxsv730mcskblpzb3cs4v12jnq2v84a4kk4";
+ sha256 = "0ih8w9ji0fw1smsi45jgvrpqfzm3f5bvk9q3nwrl0my5xkksnr8g";
};
- goDeps = ./node-exporter_deps.json;
-
- doCheck = true;
+ # FIXME: megacli test fails
+ doCheck = false;
meta = with stdenv.lib; {
description = "Prometheus exporter for machine metrics";
diff --git a/pkgs/servers/monitoring/prometheus/node-exporter_deps.json b/pkgs/servers/monitoring/prometheus/node-exporter_deps.json
deleted file mode 100644
index 68020e73b1c..00000000000
--- a/pkgs/servers/monitoring/prometheus/node-exporter_deps.json
+++ /dev/null
@@ -1,18 +0,0 @@
-[
- {
- "include": "../../libs.json",
- "packages": [
- "github.com/soundcloud/go-runit",
- "github.com/beevik/ntp",
- "github.com/prometheus/client_golang",
- "github.com/prometheus/client_model",
- "bitbucket.org/ww/goautoneg",
- "github.com/Sirupsen/logrus",
- "github.com/beorn7/perks",
- "github.com/matttproud/golang_protobuf_extensions",
- "github.com/prometheus/log",
- "github.com/golang/protobuf",
- "github.com/prometheus/procfs"
- ]
- }
-]
diff --git a/pkgs/servers/monitoring/prometheus/pushgateway.nix b/pkgs/servers/monitoring/prometheus/pushgateway.nix
index a1944608ce0..65dda2403fc 100644
--- a/pkgs/servers/monitoring/prometheus/pushgateway.nix
+++ b/pkgs/servers/monitoring/prometheus/pushgateway.nix
@@ -2,16 +2,16 @@
buildGoPackage rec {
name = "pushgateway-${version}";
- version = "0.1.1";
+ version = "0.3.0";
rev = version;
-
+
goPackagePath = "github.com/prometheus/pushgateway";
src = fetchFromGitHub {
inherit rev;
owner = "prometheus";
repo = "pushgateway";
- sha256 = "17q5z9msip46wh3vxcsq9lvvhbxg75akjjcr2b29zrky8bp2m230";
+ sha256 = "1bj0s4s3gbcnlp2z2yx7jf3jx14cdg2v4pr0yciai0g6jwwg63hd";
};
goDeps = ./pushgateway_deps.json;
diff --git a/pkgs/servers/monitoring/prometheus/statsd-bridge.nix b/pkgs/servers/monitoring/prometheus/statsd-bridge.nix
index 0d9f0bb9885..935692bfa2e 100644
--- a/pkgs/servers/monitoring/prometheus/statsd-bridge.nix
+++ b/pkgs/servers/monitoring/prometheus/statsd-bridge.nix
@@ -2,16 +2,16 @@
buildGoPackage rec {
name = "statsd_bridge-${version}";
- version = "0.1.0";
+ version = "0.3.0";
rev = version;
-
+
goPackagePath = "github.com/prometheus/statsd_bridge";
src = fetchFromGitHub {
inherit rev;
owner = "prometheus";
- repo = "statsd_bridge";
- sha256 = "1fndpmd1k0a3ar6f7zpisijzc60f2dng5399nld1i1cbmd8jybjr";
+ repo = "statsd_exporter";
+ sha256 = "1gg9v224n05khcwy27637w3rwh0cymm7hx6bginfxd7730rmpp2r";
};
goDeps = ./statsd-bridge_deps.json;
diff --git a/pkgs/servers/plex/default.nix b/pkgs/servers/plex/default.nix
index 50fc85d48b3..f31971bf4c1 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.5.1966";
- vsnHash = "81a3bf0";
- sha256 = "1sgdd3r067j9ysfp90wjx6zi01s00wzgzs27l8xdlsbnvjr8zmf8";
+ version = "1.0.1.2396";
+ vsnHash = "c094d0d";
+ sha256 = "0bhbpaj88989zn1q590mkcqshcpir87yiac9x1dl0afzpxj09lcz";
} else {
- version = "0.9.16.4.1911";
- vsnHash = "ee6e505";
- sha256 = "0lq0lcynmc09d0whynb0x2zgd39dp7z7k86ndgm2clay3zbzqpfd";
+ version = "1.0.0.2261";
+ vsnHash = "a17e99e";
+ sha256 = "14li33ni6aaa1qwvc02a066k52s1qwhpv55prvlmq3m5jm3iv0lr";
};
in stdenv.mkDerivation rec {
diff --git a/pkgs/servers/sonarr/default.nix b/pkgs/servers/sonarr/default.nix
new file mode 100644
index 00000000000..91e292944a6
--- /dev/null
+++ b/pkgs/servers/sonarr/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, fetchurl, mono, libmediainfo, sqlite, makeWrapper, ... }:
+
+stdenv.mkDerivation rec {
+ name = "sonarr-${version}";
+ version = "2.0.0.4230";
+
+ src = fetchurl {
+ url = "http://download.sonarr.tv/v2/master/mono/NzbDrone.master.${version}.mono.tar.gz";
+ sha256 = "16nx0v5hpqlwna2hzpcpzvm7qc361yjxbqnwz5bfnnkb0h7ik5m6";
+ };
+
+ buildInputs = [
+ makeWrapper
+ ];
+
+ installPhase = ''
+ mkdir -p $out/bin
+ cp -r * $out/bin/
+
+ makeWrapper "${mono}/bin/mono" $out/bin/NzbDrone \
+ --add-flags "$out/bin/NzbDrone.exe" \
+ --prefix LD_LIBRARY_PATH ':' "${sqlite.out}/lib" \
+ --prefix LD_LIBRARY_PATH ':' "${libmediainfo}/lib"
+ '';
+
+ meta = {
+ description = "Smart PVR for newsgroup and bittorrent users";
+ homepage = https://sonarr.tv/;
+ license = stdenv.lib.licenses.gpl3;
+ maintainers = [ stdenv.lib.maintainers.fadenb ];
+ platforms = stdenv.lib.platforms.all;
+ };
+}
diff --git a/pkgs/servers/x11/xorg/default.nix b/pkgs/servers/x11/xorg/default.nix
index 32303dac386..63e628bf29e 100644
--- a/pkgs/servers/x11/xorg/default.nix
+++ b/pkgs/servers/x11/xorg/default.nix
@@ -611,6 +611,17 @@ let
meta.platforms = stdenv.lib.platforms.unix;
}) // {inherit ;};
+ intelgputools = (mkDerivation "intelgputools" {
+ name = "intel-gpu-tools-1.15";
+ builder = ./builder.sh;
+ src = fetchurl {
+ url = mirror://xorg/individual/app/intel-gpu-tools-1.15.tar.bz2;
+ sha256 = "1gb22hvj4gdjj92iqbwcp44kf2znk2l1fvbcrr4sm4i65l8mdwnw";
+ };
+ buildInputs = [pkgconfig dri2proto libdrm udev libpciaccess python libX11 libXext libXrandr libXv ];
+ meta.platforms = stdenv.lib.platforms.unix;
+ }) // {inherit dri2proto libdrm udev libpciaccess python libX11 libXext libXrandr libXv ;};
+
kbproto = (mkDerivation "kbproto" {
name = "kbproto-1.0.7";
builder = ./builder.sh;
diff --git a/pkgs/servers/x11/xorg/extra.list b/pkgs/servers/x11/xorg/extra.list
index 56a7b1f76a9..3129e090e6b 100644
--- a/pkgs/servers/x11/xorg/extra.list
+++ b/pkgs/servers/x11/xorg/extra.list
@@ -9,3 +9,4 @@ http://xcb.freedesktop.org/dist/xcb-util-renderutil-0.3.9.tar.bz2
http://xcb.freedesktop.org/dist/xcb-util-wm-0.4.1.tar.bz2
http://xcb.freedesktop.org/dist/xcb-util-errors-1.0.tar.bz2
mirror://xorg/individual/app/appres-1.0.4.tar.bz2
+mirror://xorg/individual/app/intel-gpu-tools-1.15.tar.bz2
diff --git a/pkgs/servers/x11/xorg/overrides.nix b/pkgs/servers/x11/xorg/overrides.nix
index 99964bd77c3..bc00df85bda 100644
--- a/pkgs/servers/x11/xorg/overrides.nix
+++ b/pkgs/servers/x11/xorg/overrides.nix
@@ -57,6 +57,10 @@ in
tradcpp = if stdenv.isDarwin then args.tradcpp else null;
};
+ intelgputools = attrs: attrs // {
+ buildInputs = attrs.buildInputs ++ [ args.cairo args.libunwind ];
+ };
+
mkfontdir = attrs: attrs // {
preBuild = "substituteInPlace mkfontdir.in --replace @bindir@ ${xorg.mkfontscale}/bin";
};
diff --git a/pkgs/shells/oh-my-zsh/default.nix b/pkgs/shells/oh-my-zsh/default.nix
index 5191e7cd45c..5bb3b1de7ed 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-06-18";
+ version = "2016-07-15";
src = fetchgit {
url = "https://github.com/robbyrussell/oh-my-zsh";
- rev = "d012402dada1ec7d8796f2f4b04744d817137b4d";
- sha256 = "1965k91jdhjpy2dkklzwcxmq6qqjc7cnwl8x670g51jr4ihawkx1";
+ rev = "96a2092e377139fbcd95d7b7ac703b740daa22f6";
+ sha256 = "0v3hzpfj98mfz0y06qch2hf14iz0vpb9pfysw8hc4mnp0jzh5vz1";
};
phases = "installPhase";
diff --git a/pkgs/stdenv/linux/default.nix b/pkgs/stdenv/linux/default.nix
index fbadfa80fe1..e3aeafe178d 100644
--- a/pkgs/stdenv/linux/default.nix
+++ b/pkgs/stdenv/linux/default.nix
@@ -42,10 +42,7 @@ rec {
builder = bootstrapFiles.busybox;
- args = if system == "armv5tel-linux" then
- [ "ash" "-e" ./scripts/unpack-bootstrap-tools-arm.sh ]
- else
- [ "ash" "-e" ./scripts/unpack-bootstrap-tools.sh ];
+ args = [ "ash" "-e" ./scripts/unpack-bootstrap-tools.sh ];
tarball = bootstrapFiles.bootstrapTools;
diff --git a/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix b/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix
index 6dfe1bf41e4..522c28905a8 100644
--- a/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix
+++ b/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix
@@ -8,9 +8,9 @@ let
sheevaplugCrossSystem = {
crossSystem = rec {
- config = "armv5tel-unknown-linux-gnueabi";
+ config = "arm-linux-gnueabi";
bigEndian = false;
- arch = "arm";
+ arch = "armv5te";
float = "soft";
withTLS = true;
libc = "glibc";
@@ -21,9 +21,9 @@ let
raspberrypiCrossSystem = {
crossSystem = rec {
- config = "armv6l-unknown-linux-gnueabi";
+ config = "arm-linux-gnueabihf";
bigEndian = false;
- arch = "arm";
+ arch = "armv6";
float = "hard";
fpu = "vfp";
withTLS = true;
@@ -36,9 +36,9 @@ let
armv7l-hf-multiplatform-crossSystem = {
crossSystem = rec {
- config = "armv7l-unknown-linux-gnueabi";
+ config = "arm-linux-gnueabihf";
bigEndian = false;
- arch = "arm";
+ arch = "armv7-a";
float = "hard";
fpu = "vfpv3-d16";
withTLS = true;
@@ -65,7 +65,6 @@ let
gnused = pkgs.gnused.crossDrv;
gnugrep = pkgs.gnugrep.crossDrv;
gawk = pkgs.gawk.crossDrv;
- gnutar = pkgs.gnutar.crossDrv;
gzip = pkgs.gzip.crossDrv;
bzip2 = pkgs.bzip2.crossDrv;
gnumake = pkgs.gnumake.crossDrv;
@@ -74,19 +73,18 @@ let
gcc = pkgs.gcc.cc.crossDrv;
gmpxx = pkgs.gmpxx.crossDrv;
mpfr = pkgs.mpfr.crossDrv;
- ppl = pkgs.ppl.crossDrv;
- cloogppl = pkgs.cloogppl.crossDrv;
- cloog = pkgs.cloog.crossDrv;
zlib = pkgs.zlib.crossDrv;
- isl = pkgs.isl.crossDrv;
libmpc = pkgs.libmpc.crossDrv;
binutils = pkgs.binutils.crossDrv;
libelf = pkgs.libelf.crossDrv;
+ # Keep these versions in sync with the versions used in the current GCC!
+ isl = pkgs.isl_0_14.crossDrv;
in
rec {
+
coreutilsMinimal = (pkgs.coreutils.override (args: {
# We want coreutils without ACL support.
aclSupport = false;
@@ -94,15 +92,10 @@ rec {
singleBinary = "symlinks";
})).crossDrv;
- curlMinimal = (pkgs.curl.override {
- zlibSupport = false;
- sslSupport = false;
- scpSupport = false;
- }).crossDrv;
+ tarMinimal = (pkgs.gnutar.override { acl = null; }).crossDrv;
busyboxMinimal = (pkgs.busybox.override {
- # TBD: uClibc is broken.
- # useUclibc = true;
+ useMusl = true;
enableStatic = true;
enableMinimal = true;
extraConfig = ''
@@ -116,19 +109,16 @@ rec {
'';
}).crossDrv;
- inherit pkgs;
-
build =
stdenv.mkDerivation {
- name = "build";
+ name = "stdenv-bootstrap-tools-cross";
+ crossConfig = stdenv.cross.config;
buildInputs = [nukeReferences cpio binutilsCross];
- crossConfig = stdenv.cross.config;
-
buildCommand = ''
- set -x
+ set -x
mkdir -p $out/bin $out/lib $out/libexec
# Copy what we need of Glibc.
@@ -146,7 +136,15 @@ rec {
cp -d ${glibc.out}/lib/crt?.o $out/lib
cp -rL ${glibc.dev}/include $out
- chmod -R u+w $out/include
+ chmod -R u+w "$out"
+
+ # glibc can contain linker scripts: find them, copy their deps,
+ # and get rid of absolute paths (nuke-refs would make them useless)
+ local lScripts=$(grep --files-with-matches --max-count=1 'GNU ld script' -R "$out/lib")
+ cp -d -t "$out/lib/" $(cat $lScripts | tr " " "\n" | grep -F '${glibc.out}' | sort -u)
+ for f in $lScripts; do
+ substituteInPlace "$f" --replace '${glibc.out}/lib/' ""
+ done
# Hopefully we won't need these.
rm -rf $out/include/mtd $out/include/rdma $out/include/sound $out/include/video
@@ -166,24 +164,22 @@ rec {
cp -d ${gnugrep}/bin/grep $out/bin
cp ${gawk}/bin/gawk $out/bin
cp -d ${gawk}/bin/awk $out/bin
- cp ${gnutar}/bin/tar $out/bin
+ cp ${tarMinimal}/bin/tar $out/bin
cp ${gzip}/bin/gzip $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 ${curlMinimal}/bin/curl $out/bin
- cp -d ${curlMinimal}/lib/libcurl* $out/lib
- cp -d ${gnugrep.pcre.crossDrv}/lib/libpcre*.so* $out/lib # needed by grep
+ cp -d ${gnugrep.pcre.crossDrv.out}/lib/libpcre*.so* $out/lib # needed by grep
# Copy what we need of GCC.
- cp -d ${gcc}/bin/gcc $out/bin
- cp -d ${gcc}/bin/cpp $out/bin
- cp -d ${gcc}/bin/g++ $out/bin
- cp -d ${gcc}/lib*/libgcc_s.so* $out/lib
- cp -d ${gcc}/lib*/libstdc++.so* $out/lib
- cp -rd ${gcc}/lib/gcc $out/lib
+ cp -d ${gcc.out}/bin/gcc $out/bin
+ cp -d ${gcc.out}/bin/cpp $out/bin
+ cp -d ${gcc.out}/bin/g++ $out/bin
+ cp -d ${gcc.lib}/lib*/libgcc_s.so* $out/lib
+ cp -d ${gcc.lib}/lib*/libstdc++.so* $out/lib
+ cp -rd ${gcc.out}/lib/gcc $out/lib
chmod -R u+w $out/lib
rm -f $out/lib/gcc/*/*/include*/linux
rm -f $out/lib/gcc/*/*/include*/sound
@@ -191,29 +187,32 @@ rec {
rm -f $out/lib/gcc/*/*/include-fixed/asm
rm -rf $out/lib/gcc/*/*/plugin
#rm -f $out/lib/gcc/*/*/*.a
- cp -rd ${gcc}/libexec/* $out/libexec
+ cp -rd ${gcc.out}/libexec/* $out/libexec
chmod -R u+w $out/libexec
rm -rf $out/libexec/gcc/*/*/plugin
mkdir $out/include
- cp -rd ${gcc}/include/c++ $out/include
+ cp -rd ${gcc.out}/include/c++ $out/include
chmod -R u+w $out/include
rm -rf $out/include/c++/*/ext/pb_ds
rm -rf $out/include/c++/*/ext/parallel
- cp -d ${gmpxx}/lib/libgmp*.so* $out/lib
+ cp -d ${gmpxx.out}/lib/libgmp*.so* $out/lib
cp -d ${mpfr.out}/lib/libmpfr*.so* $out/lib
- cp -d ${libmpc}/lib/libmpc*.so* $out/lib
+ cp -d ${libmpc.out}/lib/libmpc*.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?
- cp -d ${cloogppl}/lib/libcloog*.so* $out/lib
- cp -d ${cloog}/lib/libcloog*.so* $out/lib
+ # These needed for cross but not native tools because the stdenv
+ # GCC has certain things built in statically. See
+ # pkgs/stdenv/linux/default.nix for the details.
cp -d ${isl}/lib/libisl*.so* $out/lib
+ # Also this is needed since bzip2 uses a custom build system
+ # for native builds but autoconf (via a patch) for cross builds
+ cp -d ${bzip2.out}/lib/libbz2.so* $out/lib
# Copy binutils.
for i in as ld ar ranlib nm strip readelf objdump; do
- cp ${binutils}/bin/$i $out/bin
+ cp ${binutils.out}/bin/$i $out/bin
done
cp -d ${binutils.out}/lib/lib*.so* $out/lib
@@ -236,7 +235,7 @@ rec {
mv $out/.pack $out/pack
mkdir $out/on-server
- tar cvfJ $out/on-server/bootstrap-tools.tar.xz -C $out/pack .
+ tar cvfJ $out/on-server/bootstrap-tools.tar.xz --hard-dereference --sort=name --numeric-owner --owner=0 --group=0 --mtime=@1 -C $out/pack .
cp ${busyboxMinimal}/bin/busybox $out/on-server
chmod u+w $out/on-server/busybox
nuke-refs $out/on-server/busybox
@@ -248,6 +247,15 @@ rec {
allowedReferences = [];
};
+ dist = stdenv.mkDerivation {
+ name = "stdenv-bootstrap-tools-cross";
+
+ buildCommand = ''
+ mkdir -p $out/nix-support
+ echo "file tarball ${build}/on-server/bootstrap-tools.tar.xz" >> $out/nix-support/hydra-build-products
+ echo "file busybox ${build}/on-server/busybox" >> $out/nix-support/hydra-build-products
+ '';
+ };
}
); in {
diff --git a/pkgs/stdenv/linux/make-bootstrap-tools.nix b/pkgs/stdenv/linux/make-bootstrap-tools.nix
index 866906662ae..1ecb222af3e 100644
--- a/pkgs/stdenv/linux/make-bootstrap-tools.nix
+++ b/pkgs/stdenv/linux/make-bootstrap-tools.nix
@@ -146,7 +146,7 @@ rec {
mv $out/.pack $out/pack
mkdir $out/on-server
- tar cvfJ $out/on-server/bootstrap-tools.tar.xz -C $out/pack .
+ tar cvfJ $out/on-server/bootstrap-tools.tar.xz --hard-dereference --sort=name --numeric-owner --owner=0 --group=0 --mtime=@1 -C $out/pack .
cp ${busyboxMinimal}/bin/busybox $out/on-server
chmod u+w $out/on-server/busybox
nuke-refs $out/on-server/busybox
diff --git a/pkgs/stdenv/linux/scripts/unpack-bootstrap-tools-arm.sh b/pkgs/stdenv/linux/scripts/unpack-bootstrap-tools-arm.sh
deleted file mode 100644
index 4fe86776e3b..00000000000
--- a/pkgs/stdenv/linux/scripts/unpack-bootstrap-tools-arm.sh
+++ /dev/null
@@ -1,64 +0,0 @@
-set -e
-
-# Unpack the bootstrap tools tarball.
-echo Unpacking the bootstrap tools...
-$builder mkdir $out
-< $tarball $builder unxz | $builder tar x -C $out
-
-# Set the ELF interpreter / RPATH in the bootstrap binaries.
-echo Patching the bootstrap tools...
-
-# On x86_64, ld-linux-x86-64.so.2 barfs on patchelf'ed programs. So
-# use a copy of patchelf.
-LD_LIBRARY_PATH=$out/lib $out/lib/ld-linux*.so.? $out/bin/cp $out/bin/patchelf .
-
-for i in $out/bin/* $out/libexec/gcc/*/*/* $out/lib/librt*; do
- if test ${i%.la} != $i; then continue; fi
- if test ${i%*.so*} != $i; then continue; fi
- if ! test -f $i; then continue; fi
- if test -L $i; then continue; fi
- echo patching $i
- LD_LIBRARY_PATH=$out/lib $out/lib/ld-linux*.so.? \
- $out/bin/patchelf --set-interpreter $out/lib/ld-linux*.so.? --set-rpath $out/lib --force-rpath $i
- LD_LIBRARY_PATH=$out/lib $out/lib/ld-linux*.so.? \
- $out/bin/patchelf --set-interpreter $out/lib/ld-linux*.so.? --set-rpath $out/lib --force-rpath $i
-done
-for i in $out/lib/librt* $out/lib/libcloog* $out/lib/libppl* $out/lib/libgmp* $out/lib/libpcre*; do
- if ! test -f $i; then continue; fi
- if test -L $i; then continue; fi
- echo patching $i
- LD_LIBRARY_PATH=$out/lib $out/lib/ld-linux*.so.? \
- $out/bin/patchelf --set-rpath $out/lib --force-rpath $i
- LD_LIBRARY_PATH=$out/lib $out/lib/ld-linux*.so.? \
- $out/bin/patchelf --set-rpath $out/lib --force-rpath $i
-done
-
-# Fix the libc linker script.
-export PATH=$out/bin
-cat $out/lib/libc.so | sed "s|/nix/store/e*-[^/]*/|$out/|g" > $out/lib/libc.so.tmp
-mv $out/lib/libc.so.tmp $out/lib/libc.so
-cat $out/lib/libpthread.so | sed "s|/nix/store/e*-[^/]*/|$out/|g" > $out/lib/libpthread.so.tmp
-mv $out/lib/libpthread.so.tmp $out/lib/libpthread.so
-
-# Provide some additional symlinks.
-ln -s bash $out/bin/sh
-ln -s bzip2 $out/bin/bunzip2
-
-# Provide a gunzip script
-cat > $out/bin/gunzip < $out/bin/egrep
-echo "exec $out/bin/grep -E \"\$@\"" >> $out/bin/egrep
-echo "#! $out/bin/sh" > $out/bin/fgrep
-echo "exec $out/bin/grep -F \"\$@\"" >> $out/bin/fgrep
-
-# Provide xz (actually only xz -d will work).
-echo "#! $out/bin/sh" > $out/bin/xz
-echo "exec $builder unxz \"\$@\"" >> $out/bin/xz
-
-chmod +x $out/bin/egrep $out/bin/fgrep $out/bin/xz
diff --git a/pkgs/tools/archivers/p7zip/default.nix b/pkgs/tools/archivers/p7zip/default.nix
index 63487b46034..7c952a8f729 100644
--- a/pkgs/tools/archivers/p7zip/default.nix
+++ b/pkgs/tools/archivers/p7zip/default.nix
@@ -1,14 +1,12 @@
{ stdenv, fetchurl }:
-let
- version = "15.14.1";
-in
stdenv.mkDerivation rec {
name = "p7zip-${version}";
+ version = "16.02";
src = fetchurl {
url = "mirror://sourceforge/p7zip/p7zip_${version}_src_all.tar.bz2";
- sha256 = "1m15iwglyjpiw82m7dbpykz8s55imch34w20w09l34116vdb97b9";
+ sha256 = "5eb20ac0e2944f6cb9c2d51dd6c4518941c185347d4089ea89087ffdd6e2341f";
};
preConfigure = ''
diff --git a/pkgs/tools/archivers/xarchiver/default.nix b/pkgs/tools/archivers/xarchiver/default.nix
index ea59cb8319e..507e777a7c3 100644
--- a/pkgs/tools/archivers/xarchiver/default.nix
+++ b/pkgs/tools/archivers/xarchiver/default.nix
@@ -1,18 +1,20 @@
-{ stdenv, fetchurl, gtk2, pkgconfig, intltool }:
+{ stdenv, fetchFromGitHub, gtk, pkgconfig, intltool }:
stdenv.mkDerivation rec {
- version = "0.5.4";
+ version = "0.5.4.6";
name = "xarchiver-${version}";
- src = fetchurl {
- url = "mirror://sourceforge/xarchiver/${name}.tar.bz2";
- sha256 = "1x1f8m71cvv2p1364rz99iqs2caxj7yrb46aikz6xigwg4wsfgz6";
+ src = fetchFromGitHub {
+ owner = "ib";
+ repo = "xarchiver";
+ rev = "${name}";
+ sha256 = "1w6b4cchd4prswrn981a7bkq44ad51xm2qiwlpzy43ynql14q877";
};
- buildInputs = [ gtk2 pkgconfig intltool ];
+ buildInputs = [ gtk pkgconfig intltool ];
meta = {
- description = "GTK+2 only frontend to 7z,zip,rar,tar,bzip2, gzip,arj, lha, rpm and deb (open and extract only)";
+ description = "GTK+ frontend to 7z,zip,rar,tar,bzip2, gzip,arj, lha, rpm and deb (open and extract only)";
homepage = http://sourceforge.net/projects/xarchiver/;
maintainers = [ stdenv.lib.maintainers.domenkozar ];
license = stdenv.lib.licenses.gpl2;
diff --git a/pkgs/tools/filesystems/zerofree/default.nix b/pkgs/tools/filesystems/zerofree/default.nix
index 4e027a53ffc..994777680db 100644
--- a/pkgs/tools/filesystems/zerofree/default.nix
+++ b/pkgs/tools/filesystems/zerofree/default.nix
@@ -1,11 +1,12 @@
{ stdenv, fetchurl, e2fsprogs }:
stdenv.mkDerivation rec {
- name = "zerofree-1.0.3";
+ name = "zerofree-${version}";
+ version = "1.0.4";
src = fetchurl {
- url = "http://intgat.tigress.co.uk/rmy/uml/zerofree-1.0.3.tgz";
- sha256 = "3acfda860be0f0ddcb5c982ff3b4475b1ee8cc35a90ae2a910e93261dbe0ccf6";
+ url = "http://frippery.org/uml/${name}.tgz";
+ sha256 = "0f38mvn3wfacapayl54q04qlz4in417pfm6gapgm7dhyjs9y5yd7";
};
buildInputs = [ e2fsprogs ];
@@ -16,7 +17,7 @@ stdenv.mkDerivation rec {
'';
meta = {
- homepage = http://intgat.tigress.co.uk/rmy/uml/index.html;
+ homepage = http://frippery.org/uml/index.html;
description = "Zero free blocks from ext2, ext3 and ext4 file-systems";
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.theuni ];
diff --git a/pkgs/tools/graphics/nip2/default.nix b/pkgs/tools/graphics/nip2/default.nix
index e61488e202d..fb88a8c37d4 100644
--- a/pkgs/tools/graphics/nip2/default.nix
+++ b/pkgs/tools/graphics/nip2/default.nix
@@ -1,17 +1,17 @@
{ stdenv, fetchurl, pkgconfig, glib, libxml2, flex, bison, vips, gnome,
-fftw, gsl, goffice_0_8, libgsf }:
+fftw, gsl, goffice, libgsf }:
stdenv.mkDerivation rec {
- name = "nip2-8.0";
+ name = "nip2-8.3.0";
src = fetchurl {
url = "http://www.vips.ecs.soton.ac.uk/supported/current/${name}.tar.gz";
- sha256 = "10ybac0qrz63x1yk1d0gpv9z1vzpadyii2qhrai6lllplzw6jqx7";
+ sha256 = "0vr12gyfvhxx2a28y74lzfg379d1fk0g9isc69k0vdgpn4y1i8aa";
};
buildInputs =
[ pkgconfig glib libxml2 flex bison vips
- gnome.gtk fftw gsl goffice_0_8 libgsf
+ gnome.gtk fftw gsl goffice libgsf
];
meta = with stdenv.lib; {
diff --git a/pkgs/tools/graphics/vips/default.nix b/pkgs/tools/graphics/vips/default.nix
index 7b0cbc16e11..6ff2ee5cd44 100644
--- a/pkgs/tools/graphics/vips/default.nix
+++ b/pkgs/tools/graphics/vips/default.nix
@@ -4,11 +4,11 @@
}:
stdenv.mkDerivation rec {
- name = "vips-8.2.2";
+ name = "vips-8.3.1";
src = fetchurl {
url = "http://www.vips.ecs.soton.ac.uk/supported/current/${name}.tar.gz";
- sha256 = "12b319aicr129cpi5sixwd3q91y97vwwva6b044zy54px4s8ls0g";
+ sha256 = "01hh1baar2r474kny24fcq6ddshcvq104207mqxnkis0as6pzjq9";
};
buildInputs =
diff --git a/pkgs/tools/inputmethods/fcitx/default.nix b/pkgs/tools/inputmethods/fcitx/default.nix
index ba3a3f76ed9..69e4425d8c3 100644
--- a/pkgs/tools/inputmethods/fcitx/default.nix
+++ b/pkgs/tools/inputmethods/fcitx/default.nix
@@ -1,51 +1,11 @@
-{ stdenv, fetchurl, pkgconfig, cmake, intltool, gettext
-, libxml2, enchant, isocodes, icu, libpthreadstubs
-, pango, cairo, libxkbfile, libXau, libXdmcp, libxkbcommon
-, dbus, gtk2, gtk3, qt4, kde5
-}:
+{ callPackage, plugins ? [] }:
-stdenv.mkDerivation rec {
- name = "fcitx-${version}";
- version = "4.2.9.1";
-
- src = fetchurl {
- url = "http://download.fcitx-im.org/fcitx/${name}_dict.tar.xz";
- sha256 = "0xvcmm4yi7kagf55d0yl3ql5ssbkm9410fwbz3kd988pchichdsk";
+let
+ unwrapped = callPackage ./unwrapped.nix { };
+ wrapped = callPackage ./wrapper.nix {
+ plugins = plugins;
+ fcitx = unwrapped;
};
-
- postUnpack = ''
- ln -s ${kde5.extra-cmake-modules}/share/ECM/modules/ECMFindModuleHelpers.cmake \
- $sourceRoot/cmake/
- '';
-
- patches = [ ./fcitx-ecm.patch ];
-
- postPatch = ''
- substituteInPlace src/frontend/qt/CMakeLists.txt \
- --replace $\{QT_PLUGINS_DIR} $out/lib/qt4/plugins
- '';
-
- buildInputs = [
- cmake enchant gettext isocodes pkgconfig intltool icu
- libpthreadstubs libXau libXdmcp libxkbfile libxkbcommon libxml2
- dbus cairo gtk2 gtk3 pango qt4
- ];
-
- cmakeFlags = ''
- -DENABLE_QT_IM_MODULE=ON
- -DENABLE_GTK2_IM_MODULE=ON
- -DENABLE_GTK3_IM_MODULE=ON
- -DENABLE_GIR=OFF
- -DENABLE_OPENCC=OFF
- -DENABLE_PRESAGE=OFF
- -DENABLE_XDGAUTOSTART=OFF
- '';
-
- meta = with stdenv.lib; {
- homepage = "https://github.com/fcitx/fcitx";
- description = "A Flexible Input Method Framework";
- license = licenses.gpl2;
- platforms = platforms.linux;
- maintainers = with maintainers; [ ericsagnes ];
- };
-}
+in if plugins == []
+ then unwrapped
+ else wrapped
diff --git a/pkgs/tools/inputmethods/fcitx/unwrapped.nix b/pkgs/tools/inputmethods/fcitx/unwrapped.nix
new file mode 100644
index 00000000000..ba3a3f76ed9
--- /dev/null
+++ b/pkgs/tools/inputmethods/fcitx/unwrapped.nix
@@ -0,0 +1,51 @@
+{ stdenv, fetchurl, pkgconfig, cmake, intltool, gettext
+, libxml2, enchant, isocodes, icu, libpthreadstubs
+, pango, cairo, libxkbfile, libXau, libXdmcp, libxkbcommon
+, dbus, gtk2, gtk3, qt4, kde5
+}:
+
+stdenv.mkDerivation rec {
+ name = "fcitx-${version}";
+ version = "4.2.9.1";
+
+ src = fetchurl {
+ url = "http://download.fcitx-im.org/fcitx/${name}_dict.tar.xz";
+ sha256 = "0xvcmm4yi7kagf55d0yl3ql5ssbkm9410fwbz3kd988pchichdsk";
+ };
+
+ postUnpack = ''
+ ln -s ${kde5.extra-cmake-modules}/share/ECM/modules/ECMFindModuleHelpers.cmake \
+ $sourceRoot/cmake/
+ '';
+
+ patches = [ ./fcitx-ecm.patch ];
+
+ postPatch = ''
+ substituteInPlace src/frontend/qt/CMakeLists.txt \
+ --replace $\{QT_PLUGINS_DIR} $out/lib/qt4/plugins
+ '';
+
+ buildInputs = [
+ cmake enchant gettext isocodes pkgconfig intltool icu
+ libpthreadstubs libXau libXdmcp libxkbfile libxkbcommon libxml2
+ dbus cairo gtk2 gtk3 pango qt4
+ ];
+
+ cmakeFlags = ''
+ -DENABLE_QT_IM_MODULE=ON
+ -DENABLE_GTK2_IM_MODULE=ON
+ -DENABLE_GTK3_IM_MODULE=ON
+ -DENABLE_GIR=OFF
+ -DENABLE_OPENCC=OFF
+ -DENABLE_PRESAGE=OFF
+ -DENABLE_XDGAUTOSTART=OFF
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = "https://github.com/fcitx/fcitx";
+ description = "A Flexible Input Method Framework";
+ license = licenses.gpl2;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ ericsagnes ];
+ };
+}
diff --git a/pkgs/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix
index 4ed43a18988..ea9ee271ebf 100644
--- a/pkgs/tools/misc/coreutils/default.nix
+++ b/pkgs/tools/misc/coreutils/default.nix
@@ -3,7 +3,7 @@
, selinuxSupport? false, libselinux ? null, libsepol ? null
, autoconf, automake114x, texinfo
, withPrefix ? false
-, singleBinary ? true # you can also pass "symlinks", for example
+, singleBinary ? "symlinks" # you can also pass "shebangs" or false
}:
assert aclSupport -> acl != null;
diff --git a/pkgs/tools/misc/disper/default.nix b/pkgs/tools/misc/disper/default.nix
index 777f7b48675..449f0f20b80 100644
--- a/pkgs/tools/misc/disper/default.nix
+++ b/pkgs/tools/misc/disper/default.nix
@@ -1,14 +1,19 @@
-{stdenv, fetchurl, python}:
+{stdenv, fetchurl, python, xorg, makeWrapper}:
stdenv.mkDerivation rec {
name = "disper-0.3.1";
- buildInputs = [python];
+ buildInputs = [python makeWrapper];
preConfigure = ''
export makeFlags="PREFIX=$out"
'';
+ postInstall = ''
+ wrapProgram $out/bin/disper \
+ --prefix "LD_LIBRARY_PATH" : "${xorg.libXrandr.out}/lib:${xorg.libX11.out}/lib"
+ '';
+
src = fetchurl {
url = http://ppa.launchpad.net/disper-dev/ppa/ubuntu/pool/main/d/disper/disper_0.3.1.tar.gz;
sha256 = "1l8brcpfn4iascb454ym0wrv5kqyz4f0h8k6db54nc3zhfwy7vvw";
diff --git a/pkgs/tools/misc/ethtool/default.nix b/pkgs/tools/misc/ethtool/default.nix
index 9ffc4723dfd..363aaf3f389 100644
--- a/pkgs/tools/misc/ethtool/default.nix
+++ b/pkgs/tools/misc/ethtool/default.nix
@@ -1,11 +1,12 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
- name = "ethtool-4.5";
+ name = "ethtool-${version}";
+ version = "4.6";
src = fetchurl {
url = "mirror://kernel/software/network/ethtool/${name}.tar.xz";
- sha256 = "0fyakzpcrjb7hkaj9ccpcgza7r2im17qzxy9w6xzbiss5hrk8a5v";
+ sha256 = "e90589a9349d008cce8c0510ac4e8878efdc0ddb1b732a9a4cc333b101313415";
};
meta = with stdenv.lib; {
diff --git a/pkgs/tools/misc/fzf/default.nix b/pkgs/tools/misc/fzf/default.nix
index e8c8d9830c7..6ba2b881784 100644
--- a/pkgs/tools/misc/fzf/default.nix
+++ b/pkgs/tools/misc/fzf/default.nix
@@ -2,7 +2,7 @@
buildGoPackage rec {
name = "fzf-${version}";
- version = "0.13.2";
+ version = "0.13.3";
rev = "${version}";
goPackagePath = "github.com/junegunn/fzf";
@@ -11,13 +11,13 @@ buildGoPackage rec {
inherit rev;
owner = "junegunn";
repo = "fzf";
- sha256 = "12dr0wib2ajs64a8d3l3zmgj2y8rklkc3xrvgscxgiv29lrlmvfz";
+ sha256 = "0mfrlb91akzrj0qpjpaa9bkp6m9z95z56glamry73qy21vbnj58m";
};
buildInputs = [ ncurses ];
goDeps = ./deps.json;
-
+
patchPhase = ''
sed -i -e "s|expand(':h:h').'/bin/fzf'|'$bin/bin/fzf'|" plugin/fzf.vim
sed -i -e "s|expand(':h:h').'/bin/fzf-tmux'|'$bin/bin/fzf-tmux'|" plugin/fzf.vim
@@ -28,4 +28,11 @@ buildGoPackage rec {
mkdir -p $out/share/vim-plugins
ln -s $out/share/go/src/github.com/junegunn/fzf $out/share/vim-plugins/${name}
'';
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/junegunn/fzf;
+ description = "A command-line fuzzy finder written in Go";
+ license = licenses.mit;
+ platforms = platforms.unix;
+ };
}
diff --git a/pkgs/tools/misc/gti/default.nix b/pkgs/tools/misc/gti/default.nix
index 39e28073abc..3705dd832e9 100644
--- a/pkgs/tools/misc/gti/default.nix
+++ b/pkgs/tools/misc/gti/default.nix
@@ -11,6 +11,10 @@ stdenv.mkDerivation rec {
sha256 = "1wki7d61kcmv9s3xayky9cz84qa773x3y1z88y768hq8ifwadcbn";
};
+ prePatch = ''
+ substituteInPlace Makefile --replace gcc cc
+ '';
+
installPhase = ''
mkdir -p $out/bin $out/share/man/man6
cp gti $out/bin
diff --git a/pkgs/tools/misc/hdf5/default.nix b/pkgs/tools/misc/hdf5/default.nix
index 84945d27dd1..11e1609ff0e 100644
--- a/pkgs/tools/misc/hdf5/default.nix
+++ b/pkgs/tools/misc/hdf5/default.nix
@@ -29,10 +29,10 @@ stdenv.mkDerivation rec {
buildInputs = []
++ optional (gfortran != null) gfortran
- ++ optional (zlib != null) zlib
++ optional (szip != null) szip;
propagatedBuildInputs = []
+ ++ optional (zlib != null) zlib
++ optional (mpi != null) mpi;
configureFlags = []
diff --git a/pkgs/tools/misc/mc/default.nix b/pkgs/tools/misc/mc/default.nix
index 9347b5f9bbe..e1072754b23 100644
--- a/pkgs/tools/misc/mc/default.nix
+++ b/pkgs/tools/misc/mc/default.nix
@@ -2,11 +2,12 @@
, libX11, libICE, perl, zip, unzip, gettext, slang}:
stdenv.mkDerivation rec {
- name = "mc-4.8.16";
+ name = "mc-${version}";
+ version = "4.8.17";
src = fetchurl {
- url = http://www.midnight-commander.org/downloads/mc-4.8.16.tar.bz2;
- sha256 = "1y5apnp6sc9sn13m6816hlrr0dis1z7wsnffldsx7xlkvyas8zn3";
+ url = "http://www.midnight-commander.org/downloads/${name}.tar.bz2";
+ sha256 = "0fvqzffppj0aja9hi0k1xdjg5m6s99immlla1y9yzn5fp8vwpl36";
};
buildInputs = [ pkgconfig perl glib gpm slang zip unzip file gettext libX11 libICE e2fsprogs ];
diff --git a/pkgs/tools/misc/qt5ct/default.nix b/pkgs/tools/misc/qt5ct/default.nix
new file mode 100644
index 00000000000..dd94e379eed
--- /dev/null
+++ b/pkgs/tools/misc/qt5ct/default.nix
@@ -0,0 +1,30 @@
+{stdenv, fetchurl, qtbase, qtsvg, qttools, qmakeHook, makeQtWrapper}:
+
+stdenv.mkDerivation rec {
+ name = "qt5ct-${version}";
+ version = "0.24";
+
+ src = fetchurl {
+ url = "mirror://sourceforge/qt5ct/qt5ct-${version}.tar.bz2";
+ sha256 = "0k62nd945pbgkshycijzrgdyrwj5kcswk33slaj7hr7d6r7bmb6p";
+ };
+
+ buildInputs = [ qtbase qtsvg ];
+ nativeBuildInputs = [ makeQtWrapper qmakeHook qttools ];
+
+ preConfigure = ''
+ qmakeFlags="$qmakeFlags PLUGINDIR=$out/lib/qt5/plugins/platformthemes/"
+ '';
+
+ preFixup = ''
+ wrapQtProgram $out/bin/qt5ct
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Qt5 Configuration Tool";
+ homepage = https://www.opendesktop.org/content/show.php?content=168066;
+ platforms = platforms.linux;
+ license = licenses.bsd2;
+ maintainers = with maintainers; [ ralith ];
+ };
+}
diff --git a/pkgs/tools/misc/rcm/default.nix b/pkgs/tools/misc/rcm/default.nix
index 59eccbb1ab6..efc42ee73ec 100644
--- a/pkgs/tools/misc/rcm/default.nix
+++ b/pkgs/tools/misc/rcm/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation {
- name = "rcm-1.2.3";
+ name = "rcm-1.3.0";
src = fetchurl {
- url = https://thoughtbot.github.io/rcm/dist/rcm-1.2.3.tar.gz;
- sha256 = "0gwpclbc152jkclj3w83s2snx3dcgljwr75q1z8czl3yar7d8bsh";
+ url = https://thoughtbot.github.io/rcm/dist/rcm-1.3.0.tar.gz;
+ sha256 = "ddcf638b367b0361d8e063c29fd573dbe1712d1b83e8d5b3a868e4aa45ffc847";
};
patches = [ ./fix-rcmlib-path.patch ];
diff --git a/pkgs/tools/misc/rcm/fix-rcmlib-path.patch b/pkgs/tools/misc/rcm/fix-rcmlib-path.patch
index 45bd32a2d2b..e7d600d2a1f 100644
--- a/pkgs/tools/misc/rcm/fix-rcmlib-path.patch
+++ b/pkgs/tools/misc/rcm/fix-rcmlib-path.patch
@@ -1,68 +1,48 @@
-*** rcm-1.2.3/bin/lsrc.in.orig 2014-05-09 04:57:39.000000000 -0700
---- rcm-1.2.3/bin/lsrc.in 2015-01-24 14:27:48.786595479 -0800
-***************
-*** 1,6 ****
- #!@SHELL@
-
-! : ${RCM_LIB:=$(dirname "$0")/../share/rcm}
- . "$RCM_LIB/rcm.sh"
-
- pushdir() {
---- 1,6 ----
- #!@SHELL@
-
-! RCM_LIB=@rcm@/share/rcm
- . "$RCM_LIB/rcm.sh"
-
- pushdir() {
-*** rcm-1.2.3/bin/mkrc.in.orig 2014-05-09 04:57:39.000000000 -0700
---- rcm-1.2.3/bin/mkrc.in 2015-01-24 14:27:48.786595479 -0800
-***************
-*** 1,6 ****
- #!@SHELL@
-
-! : ${RCM_LIB:=$(dirname "$0")/../share/rcm}
- . "$RCM_LIB/rcm.sh"
-
- destination() {
---- 1,6 ----
- #!@SHELL@
-
-! RCM_LIB=@rcm@/share/rcm
- . "$RCM_LIB/rcm.sh"
-
- destination() {
-*** rcm-1.2.3/bin/rcdn.in.orig 2014-05-09 04:57:39.000000000 -0700
---- rcm-1.2.3/bin/rcdn.in 2015-01-24 14:27:48.786595479 -0800
-***************
-*** 1,6 ****
- #!@SHELL@
-
-! : ${RCM_LIB:=$(dirname "$0")/../share/rcm}
- . "$RCM_LIB/rcm.sh"
-
- remove_link() {
---- 1,6 ----
- #!@SHELL@
-
-! RCM_LIB=@rcm@/share/rcm
- . "$RCM_LIB/rcm.sh"
-
- remove_link() {
-*** rcm-1.2.3/bin/rcup.in.orig 2014-05-09 04:57:39.000000000 -0700
---- rcm-1.2.3/bin/rcup.in 2015-01-24 14:27:48.786595479 -0800
-***************
-*** 1,6 ****
- #!@SHELL@
-
-! : ${RCM_LIB:=$(dirname "$0")/../share/rcm}
- . "$RCM_LIB/rcm.sh"
-
- link_or_copy() {
---- 1,6 ----
- #!@SHELL@
-
-! RCM_LIB=@rcm@/share/rcm
- . "$RCM_LIB/rcm.sh"
-
- link_or_copy() {
+diff --git a/bin/lsrc.in b/bin/lsrc.in
+index fcf5fbe..119d659 100755
+--- a/bin/lsrc.in
++++ b/bin/lsrc.in
+@@ -1,6 +1,6 @@
+ #!@SHELL@
+
+-: ${RCM_LIB:=$(dirname "$0")/../share/rcm}
++RCM_LIB=@rcm@/share/rcm
+ . "$RCM_LIB/rcm.sh"
+
+ pushdir() {
+diff --git a/bin/mkrc.in b/bin/mkrc.in
+index da22a63..a6bb0ad 100755
+--- a/bin/mkrc.in
++++ b/bin/mkrc.in
+@@ -1,6 +1,6 @@
+ #!@SHELL@
+
+-: ${RCM_LIB:=$(dirname "$0")/../share/rcm}
++RCM_LIB=@rcm@/share/rcm
+ . "$RCM_LIB/rcm.sh"
+
+ destination() {
+diff --git a/bin/rcdn.in b/bin/rcdn.in
+index ae7aad8..c210599 100755
+--- a/bin/rcdn.in
++++ b/bin/rcdn.in
+@@ -1,6 +1,6 @@
+ #!@SHELL@
+
+-: ${RCM_LIB:=$(dirname "$0")/../share/rcm}
++RCM_LIB=@rcm@/share/rcm
+ . "$RCM_LIB/rcm.sh"
+
+ remove_link() {
+diff --git a/bin/rcup.in b/bin/rcup.in
+index bdae664..2076f53 100755
+--- a/bin/rcup.in
++++ b/bin/rcup.in
+@@ -1,6 +1,6 @@
+ #!@SHELL@
+
+-: ${RCM_LIB:=$(dirname "$0")/../share/rcm}
++RCM_LIB=@rcm@/share/rcm
+ . "$RCM_LIB/rcm.sh"
+
+ print_ln_v() {
diff --git a/pkgs/tools/misc/xflux/gui.nix b/pkgs/tools/misc/xflux/gui.nix
index b78eb910f93..0cf30942e73 100644
--- a/pkgs/tools/misc/xflux/gui.nix
+++ b/pkgs/tools/misc/xflux/gui.nix
@@ -19,7 +19,7 @@ buildPythonPackage rec {
# remove messing with shipped binary
patches = [ ./setup.patch ];
- # not sure if these need to be propogated or not?
+ # not sure if these need to be propagated or not?
propagatedBuildInputs = [
pexpect
pyGtkGlade
diff --git a/pkgs/tools/misc/youtube-dl/default.nix b/pkgs/tools/misc/youtube-dl/default.nix
index bf1efdc6298..12ecf11517c 100644
--- a/pkgs/tools/misc/youtube-dl/default.nix
+++ b/pkgs/tools/misc/youtube-dl/default.nix
@@ -12,11 +12,11 @@
buildPythonApplication rec {
name = "youtube-dl-${version}";
- version = "2016.07.03.1";
+ version = "2016.07.16";
src = fetchurl {
url = "https://yt-dl.org/downloads/${version}/${name}.tar.gz";
- sha256 = "0qyi2g0i2gl04hqn587w0c5x1pnpkn6l07fhnbfpnqq7fyw1hndy";
+ sha256 = "017x2hqc2bacypjmn9ac9f91y9y6afydl0z7dich5l627494hvfg";
};
buildInputs = [ makeWrapper zip pandoc ];
diff --git a/pkgs/tools/networking/mu/default.nix b/pkgs/tools/networking/mu/default.nix
index 5829dc9d550..fa1740e9d12 100644
--- a/pkgs/tools/networking/mu/default.nix
+++ b/pkgs/tools/networking/mu/default.nix
@@ -1,6 +1,6 @@
{ fetchurl, stdenv, sqlite, pkgconfig, autoreconfHook
, xapian, glib, gmime, texinfo , emacs, guile
-, gtk3, webkit, libsoup, icu, withMug ? false /* doesn't build with current gtk3 */ }:
+, gtk3, webkitgtk24x, libsoup, icu }:
stdenv.mkDerivation rec {
version = "0.9.16";
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
buildInputs = [
sqlite pkgconfig xapian glib gmime texinfo emacs guile libsoup icu
autoreconfHook
- ] ++ stdenv.lib.optionals withMug [ gtk3 webkit ];
+ gtk3 webkitgtk24x ];
preBuild = ''
# Fix mu4e-builddir (set it to $out)
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
'';
# Install mug and msg2pdf
- postInstall = stdenv.lib.optionalString withMug ''
+ postInstall = ''
cp -v toys/msg2pdf/msg2pdf $out/bin/
cp -v toys/mug/mug $out/bin/
'';
diff --git a/pkgs/tools/networking/ndjbdns/default.nix b/pkgs/tools/networking/ndjbdns/default.nix
index 2a7e996f8db..256f50e5c54 100644
--- a/pkgs/tools/networking/ndjbdns/default.nix
+++ b/pkgs/tools/networking/ndjbdns/default.nix
@@ -1,11 +1,12 @@
{ stdenv, fetchurl, systemd, pkgconfig }:
stdenv.mkDerivation rec {
- version = "1.05.9";
+ version = "1.06";
name = "ndjbdns-${version}";
+
src = fetchurl {
url = "http://pjp.dgplug.org/ndjbdns/${name}.tar.gz";
- sha256 = "0gf3hlmr6grcn6dzflf83lqqfp6hk3ldhbc7z0a1rrh059m93ap5";
+ sha256 = "09qi5a9abqm08iqmxj74fzzq9x1w5lzr1jlbzj2hl8hz0g2sgraw";
};
buildInputs = [ pkgconfig systemd ];
@@ -21,4 +22,4 @@ stdenv.mkDerivation rec {
platforms = platforms.linux;
};
-}
\ No newline at end of file
+}
diff --git a/pkgs/tools/networking/nethogs/default.nix b/pkgs/tools/networking/nethogs/default.nix
index dfa9b26a38e..eac95a32008 100644
--- a/pkgs/tools/networking/nethogs/default.nix
+++ b/pkgs/tools/networking/nethogs/default.nix
@@ -2,18 +2,20 @@
stdenv.mkDerivation rec {
name = "nethogs-${version}";
- version = "0.8.1";
+ version = "0.8.5";
src = fetchFromGitHub {
owner = "raboof";
repo = "nethogs";
rev = "v${version}";
- sha256 = "1phn6i44ysvpl1f54bx4dspy51si8rc2wq6fywi163mi25j355d4";
+ sha256 = "13plwblwbnyyi40jaqx471gwhln08wm7f0fxyvj1yh3d81k556yx";
};
buildInputs = [ ncurses libpcap ];
- installFlags = [ "prefix=$(out)" "sbin=$(prefix)/bin" ];
+ makeFlags = [ "VERSION=${version}" ];
+
+ installFlags = [ "PREFIX=$(out)" "sbin=$(out)/bin" ];
meta = with stdenv.lib; {
description = "A small 'net top' tool, grouping bandwidth by process";
@@ -27,7 +29,7 @@ stdenv.mkDerivation rec {
bandwidth.
'';
license = licenses.gpl2Plus;
- homepage = http://nethogs.sourceforge.net/;
+ homepage = "https://github.com/raboof/nethogs#readme";
platforms = platforms.linux;
maintainers = [ maintainers.rycee ];
};
diff --git a/pkgs/tools/networking/ocproxy/default.nix b/pkgs/tools/networking/ocproxy/default.nix
new file mode 100644
index 00000000000..65729d896aa
--- /dev/null
+++ b/pkgs/tools/networking/ocproxy/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, fetchFromGitHub, autoconf, automake, libevent }:
+
+stdenv.mkDerivation rec {
+ version = "1.50";
+ name = "ocproxy-${version}";
+
+ src = fetchFromGitHub {
+ owner = "cernekee";
+ repo = "ocproxy";
+ rev = "v${version}";
+ sha256 = "136vlk2svgls5paf17xi1zahcahgcnmi2p55khh7zpqaar4lzw6s";
+ };
+
+ buildInputs = [ autoconf automake libevent ];
+
+ preConfigure = ''
+ patchShebangs autogen.sh
+ ./autogen.sh
+ '';
+
+ meta = with stdenv.lib; {
+ description = "OpenConnect proxy";
+ longdescription = ''
+ ocproxy is a user-level SOCKS and port forwarding proxy for OpenConnect
+ based on lwIP.
+ '';
+ homepage = https://github.com/cernekee/ocproxy;
+ license = licenses.bsd3;
+ maintainers = [ maintainers.joko ];
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/tools/networking/openssh/default.nix b/pkgs/tools/networking/openssh/default.nix
index 64b9fe98278..6d6b43c5f8d 100644
--- a/pkgs/tools/networking/openssh/default.nix
+++ b/pkgs/tools/networking/openssh/default.nix
@@ -45,6 +45,9 @@ stdenv.mkDerivation rec {
./locale_archive.patch
./fix-host-key-algorithms-plus.patch
./CVE-2015-8325.patch
+
+ # See discussion in https://github.com/NixOS/nixpkgs/pull/16966
+ ./dont_create_privsep_path.patch
]
++ optional withGssapiPatches gssapiSrc;
@@ -66,11 +69,6 @@ stdenv.mkDerivation rec {
++ optional stdenv.isDarwin "--disable-libutil"
++ optional (!linkOpenssl) "--without-openssl";
- preConfigure = ''
- configureFlagsArray+=("--with-privsep-path=$out/empty")
- mkdir -p $out/empty
- '';
-
enableParallelBuilding = true;
postInstall = ''
diff --git a/pkgs/tools/networking/openssh/dont_create_privsep_path.patch b/pkgs/tools/networking/openssh/dont_create_privsep_path.patch
new file mode 100644
index 00000000000..b6d432d5c5d
--- /dev/null
+++ b/pkgs/tools/networking/openssh/dont_create_privsep_path.patch
@@ -0,0 +1,11 @@
+diff -ur openssh-7.2p2_orig/Makefile.in openssh-7.2p2/Makefile.in
+--- openssh-7.2p2_orig/Makefile.in 2016-03-09 19:04:48.000000000 +0100
++++ openssh-7.2p2/Makefile.in 2016-07-16 09:56:05.643903293 +0200
+@@ -301,7 +301,6 @@
+ $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)5
+ $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8
+ $(srcdir)/mkinstalldirs $(DESTDIR)$(libexecdir)
+- (umask 022 ; $(srcdir)/mkinstalldirs $(DESTDIR)$(PRIVSEP_PATH))
+ $(INSTALL) -m 0755 $(STRIP_OPT) ssh$(EXEEXT) $(DESTDIR)$(bindir)/ssh$(EXEEXT)
+ $(INSTALL) -m 0755 $(STRIP_OPT) scp$(EXEEXT) $(DESTDIR)$(bindir)/scp$(EXEEXT)
+ $(INSTALL) -m 0755 $(STRIP_OPT) ssh-add$(EXEEXT) $(DESTDIR)$(bindir)/ssh-add$(EXEEXT)
diff --git a/pkgs/tools/networking/p2p/gtk-gnutella/default.nix b/pkgs/tools/networking/p2p/gtk-gnutella/default.nix
index ec2821f4d81..7d48f38e79d 100644
--- a/pkgs/tools/networking/p2p/gtk-gnutella/default.nix
+++ b/pkgs/tools/networking/p2p/gtk-gnutella/default.nix
@@ -1,30 +1,26 @@
{ stdenv, fetchurl, bison, pkgconfig
-, glib, gtk, libxml2, gettext, zlib }:
+, glib, gtk, libxml2, gettext, zlib, binutils, gnutls }:
let
name = "gtk-gnutella";
- version = "1.1.5";
+ version = "1.1.9";
in
stdenv.mkDerivation {
name = "${name}-${version}";
src = fetchurl {
url = "mirror://sourceforge/${name}/${name}-${version}.tar.bz2";
- sha256 = "19d8mmyxrdwdafcjq1hvs9zn40yrcj1127163a2058svi0x08cn3";
+ sha256 = "1zvadgsskmpm82id9mbj24a2lyq38qv768ixv7nmfjl3d4wr2biv";
};
- nativeBuildInputs = [ bison pkgconfig ];
- buildInputs = [ glib gtk libxml2 gettext zlib ];
+ nativeBuildInputs = [ bison binutils gettext pkgconfig ];
+ buildInputs = [ glib gnutls gtk libxml2 zlib ];
- NIX_LDFLAGS = "-rpath ${zlib.out}/lib";
- configureScript = "./Configure";
- dontAddPrefix = true;
- configureFlags = "-d -e -D prefix=$out -D gtkversion=2 -D official=true";
+ configureScript = "./build.sh --configure-only";
meta = with stdenv.lib; {
homepage = http://gtk-gnutella.sourceforge.net/;
description = "Server/client for Gnutella";
license = licenses.gpl2;
- broken = true;
};
}
diff --git a/pkgs/tools/networking/proxychains/default.nix b/pkgs/tools/networking/proxychains/default.nix
index 2b85cef70c5..ed19f9d1674 100644
--- a/pkgs/tools/networking/proxychains/default.nix
+++ b/pkgs/tools/networking/proxychains/default.nix
@@ -1,10 +1,13 @@
-{ stdenv, fetchgit } :
-stdenv.mkDerivation {
- name = "proxychains-4.0.1-head";
- src = fetchgit {
- url = https://github.com/haad/proxychains.git;
- rev = "c9b8ce35b24f9d4e80563242b759dff54867163f";
- sha256 = "163h3d3lpglbzjadf8a9kfaf0i1ds25r7si6ll6d5khn1835zik5";
+{ stdenv, fetchFromGitHub } :
+stdenv.mkDerivation rec {
+ name = "proxychains-${version}";
+ version = "4.2.0";
+
+ src = fetchFromGitHub {
+ owner = "haad";
+ repo = "proxychains";
+ rev = name;
+ sha256 = "015skh3z1jmm8kxbm3nkqv1w56kcvabdmcbmpwzywxr4xnh3x3pc";
};
meta = {
diff --git a/pkgs/tools/networking/shncpd/default.nix b/pkgs/tools/networking/shncpd/default.nix
new file mode 100644
index 00000000000..be2bc6a75a1
--- /dev/null
+++ b/pkgs/tools/networking/shncpd/default.nix
@@ -0,0 +1,27 @@
+{ stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+ name = "shncpd-${version}";
+ version = "2016-06-22";
+
+ src = fetchFromGitHub {
+ owner = "jech";
+ repo = "shncpd";
+ rev = "62ef688db7a6535ce11e66c8c93ab64a1bb09484";
+ sha256 = "1sj7a77isc2jmh7gw2naw9l9366kjx6jb909h7spj7daxdwvji8f";
+ };
+
+ hardeningEnable = [ "pie" ];
+
+ preConfigure = ''
+ makeFlags=( "PREFIX=$out" )
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Simple, stupid and slow HNCP daemon";
+ homepage = https://www.irif.univ-paris-diderot.fr/~jch/software/homenet/shncpd.html;
+ license = licenses.mit;
+ platforms = platforms.linux;
+ maintainers = [ maintainers.fpletz ];
+ };
+}
diff --git a/pkgs/tools/networking/siege/default.nix b/pkgs/tools/networking/siege/default.nix
index c4d68ee399a..c188dd477fe 100644
--- a/pkgs/tools/networking/siege/default.nix
+++ b/pkgs/tools/networking/siege/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, openssl, zlib }:
stdenv.mkDerivation rec {
- name = "siege-4.0.1";
+ name = "siege-4.0.2";
src = fetchurl {
url = "http://download.joedog.org/siege/${name}.tar.gz";
- sha256 = "0dr8k64s7zlhy3w8n1br0h6xd06p09p9809l9rp13isf10jp5pgx";
+ sha256 = "0ivc6ah9n2888qgh8dicszhr3mjs42538lfx7dlhxvvvakwq3yvy";
};
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s";
diff --git a/pkgs/tools/networking/smbldaptools/default.nix b/pkgs/tools/networking/smbldaptools/default.nix
index 9ca5c3be177..ef300d68314 100644
--- a/pkgs/tools/networking/smbldaptools/default.nix
+++ b/pkgs/tools/networking/smbldaptools/default.nix
@@ -1,13 +1,13 @@
{stdenv, fetchurl, perl, NetLDAP, makeWrapper, CryptSmbHash, DigestSHA1}:
let
- version = "0.9.10";
+ version = "0.9.11";
in
stdenv.mkDerivation {
name = "smbldap-tools-${version}";
src = fetchurl {
url = "http://download.gna.org/smbldap-tools/sources/${version}/smbldap-tools-${version}.tar.gz";
- sha256 = "19hsvslfs61pk9nhyqdkd68gc95z26kpkmsj10b8zvzlhqmwdvy4";
+ sha256 = "1xcxmpz74r82vjp731axyac3cyksfiarz9jk5g5m2bzfdixkq9mz";
};
buildInputs = [ perl NetLDAP makeWrapper CryptSmbHash DigestSHA1 ];
@@ -27,7 +27,5 @@ stdenv.mkDerivation {
homepage = http://gna.org/projects/smbldap-tools/;
description = "SAMBA LDAP tools";
license = stdenv.lib.licenses.gpl2Plus;
- # pod2man: unable to format smbldap-config.cmd
- broken = true;
};
}
diff --git a/pkgs/tools/networking/urlwatch/default.nix b/pkgs/tools/networking/urlwatch/default.nix
index 67b53c83448..3634b852fad 100644
--- a/pkgs/tools/networking/urlwatch/default.nix
+++ b/pkgs/tools/networking/urlwatch/default.nix
@@ -1,14 +1,19 @@
{ stdenv, fetchurl, python3Packages }:
python3Packages.buildPythonApplication rec {
- name = "urlwatch-2.1";
+ name = "urlwatch-2.2";
src = fetchurl {
url = "http://thp.io/2008/urlwatch/${name}.tar.gz";
- sha256 = "0xn435cml9wjwk39117p1diqmvw3jbmv9ccr7230iaf7z59vf9v6";
+ sha256 = "0s9056mm1hkj5gpzsb5bz6fwxk0nm73i0dhnqwa1bfddjnvpl9d3";
};
+ patches = [
+ ./setup.patch
+ ];
+
propagatedBuildInputs = with python3Packages; [
+ keyring
minidb
pyyaml
requests2
diff --git a/pkgs/tools/networking/urlwatch/setup.patch b/pkgs/tools/networking/urlwatch/setup.patch
new file mode 100644
index 00000000000..66626dbf025
--- /dev/null
+++ b/pkgs/tools/networking/urlwatch/setup.patch
@@ -0,0 +1,42 @@
+From ebe7b90100a3d960f53fdc9409d2d89eaa61bf11 Mon Sep 17 00:00:00 2001
+From: Thomas Perl
+Date: Tue, 28 Jun 2016 18:15:51 +0200
+Subject: [PATCH] Check current directory and use os.path.relpath (Fixes #73)
+
+---
+ setup.py | 11 ++++++++---
+ 1 file changed, 8 insertions(+), 3 deletions(-)
+
+diff --git a/setup.py b/setup.py
+index 947a7c8..45405cd 100644
+--- a/setup.py
++++ b/setup.py
+@@ -7,10 +7,15 @@
+
+ import os
+ import re
++import sys
+
+ PACKAGE_NAME = 'urlwatch'
+ DEPENDENCIES = ['minidb', 'PyYAML', 'requests']
+-HERE = os.path.dirname(__file__)
++HERE = os.path.abspath(os.path.dirname(__file__))
++
++if os.path.normpath(os.getcwd()) != os.path.normpath(HERE):
++ print('You must run {} inside {} (cwd={})'.format(os.path.basename(__file__), HERE, os.getcwd()))
++ sys.exit(1)
+
+ # Assumptions:
+ # 1. Package name equals main script file name (and only one script)
+@@ -29,9 +34,9 @@
+
+ m['scripts'] = [os.path.join(HERE, PACKAGE_NAME)]
+ m['package_dir'] = {'': os.path.join(HERE, 'lib')}
+-m['packages'] = ['.'.join(dirname[len(HERE)+1:].split(os.sep)[1:])
++m['packages'] = ['.'.join(os.path.relpath(dirname, HERE).split(os.sep)[1:])
+ for dirname, _, files in os.walk(os.path.join(HERE, 'lib')) if '__init__.py' in files]
+-m['data_files'] = [(dirname[len(HERE)+1:], [os.path.join(dirname[len(HERE)+1:], fn) for fn in files])
++m['data_files'] = [(os.path.relpath(dirname, HERE), [os.path.join(os.path.relpath(dirname, HERE), fn) for fn in files])
+ for dirname, _, files in os.walk(os.path.join(HERE, 'share')) if files]
+ m['install_requires'] = DEPENDENCIES
+
diff --git a/pkgs/tools/networking/vtun/default.nix b/pkgs/tools/networking/vtun/default.nix
index b0397149e60..09f48d9fa1a 100644
--- a/pkgs/tools/networking/vtun/default.nix
+++ b/pkgs/tools/networking/vtun/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, openssl, lzo, zlib, yacc, flex }:
+{ stdenv, fetchurl, fetchpatch, openssl, lzo, zlib, yacc, flex }:
stdenv.mkDerivation rec {
name = "vtun-3.0.3";
@@ -8,7 +8,13 @@ stdenv.mkDerivation rec {
sha256 = "1jxrxp3klhc8az54d5qn84cbc0vdafg319jh84dxkrswii7vxp39";
};
- patchPhase = ''
+ patches = [
+ (fetchpatch { url = http://sources.debian.net/data/main/v/vtun/3.0.3-2.2/debian/patches/08-gcc5-inline.patch;
+ sha256 = "18sys97v2hx6vac5zp3ld7sa6kz4izv3g9dnkm0lflbaxhym2vs1";
+ })
+ ];
+
+ postPatch = ''
sed -i -e 's/-m 755//' -e 's/-o root -g 0//' Makefile.in
sed -i '/strip/d' Makefile.in
'';
diff --git a/pkgs/tools/networking/wicd/default.nix b/pkgs/tools/networking/wicd/default.nix
index 9294d4c88ae..9315a53cb3e 100644
--- a/pkgs/tools/networking/wicd/default.nix
+++ b/pkgs/tools/networking/wicd/default.nix
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
./fix-curses.patch
];
- # Should I be using pygtk's propogated build inputs?
+ # Should I be using pygtk's propagated build inputs?
# !!! Should use makeWrapper.
postPatch = ''
# We don't have "python2".
diff --git a/pkgs/tools/networking/zerotierone/default.nix b/pkgs/tools/networking/zerotierone/default.nix
index 29d131b509b..3dc68ca149a 100644
--- a/pkgs/tools/networking/zerotierone/default.nix
+++ b/pkgs/tools/networking/zerotierone/default.nix
@@ -3,12 +3,12 @@
with stdenv.lib;
stdenv.mkDerivation rec {
- version = "1.1.6";
+ version = "1.1.12";
name = "zerotierone";
src = fetchurl {
url = "https://github.com/zerotier/ZeroTierOne/archive/${version}.tar.gz";
- sha256 = "1bl8dppaqydsd1qf9pk3bp16amkwjxyqh1gvm62ys2a0m4c529ks";
+ sha256 = "0mji6bmxjvxy2mhvzfz4vpdz62n1wv6a02rapzbiad8zr2c869cm";
};
preConfigure = ''
diff --git a/pkgs/tools/package-management/nix-repl/default.nix b/pkgs/tools/package-management/nix-repl/default.nix
index 8dfc9e6333e..43d0d60ac31 100644
--- a/pkgs/tools/package-management/nix-repl/default.nix
+++ b/pkgs/tools/package-management/nix-repl/default.nix
@@ -1,15 +1,15 @@
{ lib, stdenv, fetchFromGitHub, nix, readline, boehmgc }:
-let rev = "8a2f5f0607540ffe56b56d52db544373e1efb980"; in
+let rev = "a1ea85e92b067a0a42354a28355c633eac7be65c"; in
stdenv.mkDerivation {
- name = "nix-repl-${lib.getVersion nix}-${lib.substring 0 7 rev}";
+ name = "nix-repl-${lib.getVersion nix}-2016-02-28";
src = fetchFromGitHub {
owner = "edolstra";
repo = "nix-repl";
inherit rev;
- sha256 = "0cjablz01i0g9smnavhf86imwx1f9mnh5flax75i615ml71gsr88";
+ sha256 = "0rf9711day64lgg6g6yqc5709x4sgj137zpqyn019k764i7m2xs8";
};
buildInputs = [ nix readline ];
diff --git a/pkgs/tools/package-management/nixops/default.nix b/pkgs/tools/package-management/nixops/default.nix
index b49491cf15f..bba392e30e7 100644
--- a/pkgs/tools/package-management/nixops/default.nix
+++ b/pkgs/tools/package-management/nixops/default.nix
@@ -1,9 +1,9 @@
{ callPackage, fetchurl }:
callPackage ./generic.nix (rec {
- version = "1.3.1";
+ version = "1.4";
src = fetchurl {
url = "http://nixos.org/releases/nixops/nixops-${version}/nixops-${version}.tar.bz2";
- sha256 = "04j8s0gg1aj3wmj1bs7dwscfmlzk2xpwfw9rk4xzxwxw1y0j64nd";
+ sha256 = "1a6vkn8rh5lgalxh6cwr4894n3yp7f2qxcbcjv42nnmy5g4fy5fd";
};
})
diff --git a/pkgs/tools/package-management/nixops/generic.nix b/pkgs/tools/package-management/nixops/generic.nix
index 023ec07dba1..7948ebc43fb 100644
--- a/pkgs/tools/package-management/nixops/generic.nix
+++ b/pkgs/tools/package-management/nixops/generic.nix
@@ -17,6 +17,12 @@ pythonPackages.buildPythonApplication {
pythonPackages.sqlite3
pythonPackages.hetzner
pythonPackages.libcloud
+ pythonPackages.azure-storage
+ pythonPackages.azure-mgmt-compute
+ pythonPackages.azure-mgmt-network
+ pythonPackages.azure-mgmt-resource
+ pythonPackages.azure-mgmt-storage
+ pythonPackages.adal
];
doCheck = false;
diff --git a/pkgs/tools/package-management/nixops/unstable.nix b/pkgs/tools/package-management/nixops/unstable.nix
index 40d56518b3d..bba392e30e7 100644
--- a/pkgs/tools/package-management/nixops/unstable.nix
+++ b/pkgs/tools/package-management/nixops/unstable.nix
@@ -1,9 +1,9 @@
{ callPackage, fetchurl }:
callPackage ./generic.nix (rec {
- version = "2015-12-18";
+ version = "1.4";
src = fetchurl {
- url = "http://hydra.nixos.org/build/29118371/download/2/nixops-1.3.1pre1673_a0d5681.tar.bz2";
- sha256 = "177lnlfz32crcc0gjmh1gn5y2xs142kmb4b68k4raxcxxw118kw9";
+ url = "http://nixos.org/releases/nixops/nixops-${version}/nixops-${version}.tar.bz2";
+ sha256 = "1a6vkn8rh5lgalxh6cwr4894n3yp7f2qxcbcjv42nnmy5g4fy5fd";
};
})
diff --git a/pkgs/tools/package-management/packagekit/default.nix b/pkgs/tools/package-management/packagekit/default.nix
index bdd02e58cbb..dbac7be10d7 100644
--- a/pkgs/tools/package-management/packagekit/default.nix
+++ b/pkgs/tools/package-management/packagekit/default.nix
@@ -1,57 +1,54 @@
-{ stdenv, fetchurl, intltool, glib, pkgconfig, polkit, python, sqlite }:
+{ stdenv, fetchFromGitHub, intltool, glib, pkgconfig, polkit, python, sqlite, systemd
+, gobjectIntrospection, vala, gtk_doc, autoreconfHook, autoconf-archive
+, nix, boost
+, enableCommandNotFound ? false
+, enableBashCompletion ? false, bashCompletion ? null }:
+
+with stdenv.lib;
stdenv.mkDerivation rec {
- name = "packagekit-${version}";
- version = "1.1.1";
+ name = "packagekit-2016-06-03";
- src = fetchurl {
- sha256 = "1i6an483vmm6y39szr2alq5vf6kfxhk3j5ca79qrshcj9jjlhcs8";
- url = "http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${version}.tar.xz";
+ src = fetchFromGitHub {
+ owner = "hughsie";
+ repo = "PackageKit";
+ rev = "99fd83bbb26badf43c6a17a9f0c6dc054c7484c8";
+ sha256 = "0y42vl6r1wh57sbjfkn4khjs78q54wshf4p0v4nly9s7hydxpi6a";
};
- buildInputs = [ glib polkit python ];
- propagatedBuildInputs = [ sqlite ];
- nativeBuildInputs = [ intltool pkgconfig ];
+ buildInputs = [ glib polkit systemd python gobjectIntrospection vala ]
+ ++ optional enableBashCompletion bashCompletion;
+ propagatedBuildInputs = [ sqlite nix boost ];
+ nativeBuildInputs = [ intltool pkgconfig autoreconfHook autoconf-archive gtk_doc ];
+
+ preAutoreconf = ''
+ gtkdocize
+ intltoolize
+ '';
configureFlags = [
- "--disable-static"
- "--disable-python3"
- "--disable-networkmanager"
- "--disable-connman"
- "--disable-systemd"
- "--disable-bash-completion"
- "--disable-gstreamer-plugin"
- "--disable-gtk-module"
- "--disable-command-not-found"
+ "--enable-systemd"
+ "--enable-nix"
+ "--disable-dummy"
"--disable-cron"
- "--disable-daemon-tests"
- "--disable-alpm"
- "--disable-aptcc"
- "--enable-dummy"
- "--disable-entropy"
- "--disable-hif"
- "--disable-pisi"
- "--disable-poldek"
- "--disable-portage"
- "--disable-ports"
- "--disable-katja"
- "--disable-urpmi"
- "--disable-yum"
- "--disable-zypp"
- ];
+ "--disable-introspection"
+ "--disable-offline-update"
+ "--localstatedir=/var"
+ "--sysconfdir=/etc"
+ "--with-dbus-sys=$(out)/etc/dbus-1/system.d"
+ "--with-systemdsystemunitdir=$(out)/lib/systemd/system/"
+ ]
+ ++ optional (!enableBashCompletion) "--disable-bash-completion"
+ ++ optional (!enableCommandNotFound) "--disable-command-not-found";
enableParallelBuilding = true;
- preInstall = ''
- # Don't install anything to e.g. $out/var/cache:
- for dir in src data; do
- substituteInPlace $dir/Makefile \
- --replace " install-data-hook" "" \
- --replace " install-databaseDATA" ""
- done
- '';
+ installFlags = [
+ "sysconfdir=\${out}/etc"
+ "localstatedir=\${TMPDIR}"
+ ];
- meta = with stdenv.lib; {
+ meta = {
description = "System to facilitate installing and updating packages";
longDescription = ''
PackageKit is a system designed to make installing and updating software
@@ -66,6 +63,6 @@ stdenv.mkDerivation rec {
homepage = http://www.packagekit.org/;
license = licenses.gpl2Plus;
platforms = platforms.linux;
- maintainers = with maintainers; [ nckx ];
+ maintainers = with maintainers; [ nckx matthewbauer ];
};
}
diff --git a/pkgs/tools/security/keybase/default.nix b/pkgs/tools/security/keybase/default.nix
new file mode 100644
index 00000000000..87a0596f6f0
--- /dev/null
+++ b/pkgs/tools/security/keybase/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, buildGoPackage, fetchFromGitHub }:
+
+buildGoPackage rec {
+ name = "keybase-${version}";
+ version = "1.0.16";
+ rev = "v${version}";
+
+ goPackagePath = "github.com/keybase/client";
+ subPackages = [ "go/keybase" ];
+
+ dontRenameImports = true;
+
+ src = fetchFromGitHub {
+ owner = "keybase";
+ repo = "client";
+ inherit rev;
+ sha256 = "0p62cqpfgx9b5kfnviqpig27i20yv9bg5mq61am5xrmkp68jk35b";
+ };
+
+ buildFlags = [ "-tags production" ];
+
+ meta = with stdenv.lib; {
+ homepage = https://www.keybase.io/;
+ description = "The Keybase official command-line utility and service.";
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ carlsverre ];
+ };
+}
diff --git a/pkgs/tools/security/minisign/default.nix b/pkgs/tools/security/minisign/default.nix
index 373ebc1e6ff..1a573048aa4 100644
--- a/pkgs/tools/security/minisign/default.nix
+++ b/pkgs/tools/security/minisign/default.nix
@@ -1,12 +1,14 @@
-{ stdenv, fetchurl, cmake, libsodium }:
+{ stdenv, fetchFromGitHub, cmake, libsodium }:
stdenv.mkDerivation rec {
name = "minisign-${version}";
version = "0.6";
- src = fetchurl {
- url = "https://github.com/jedisct1/minisign/archive/${version}.tar.gz";
- sha256 = "029g8ian72fy07k73nf451dw1yggav6crjjc2x6kv4nfpq3pl9pj";
+ src = fetchFromGitHub {
+ repo = "minisign";
+ owner = "jedisct1";
+ rev = version;
+ sha256 = "1m71ngxaij3q1dw602kjgj22y5xfjlxrrkjdmx1v4p36y0n6wl92";
};
nativeBuildInputs = [ cmake ];
@@ -22,5 +24,6 @@ stdenv.mkDerivation rec {
homepage = https://jedisct1.github.io/minisign/;
license = licenses.isc;
maintainers = with maintainers; [ joachifm ];
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/tools/security/nasty/default.nix b/pkgs/tools/security/nasty/default.nix
index 35bbb3bae48..fb078674ea7 100644
--- a/pkgs/tools/security/nasty/default.nix
+++ b/pkgs/tools/security/nasty/default.nix
@@ -9,6 +9,10 @@ stdenv.mkDerivation rec {
sha256 = "1dznlxr728k1pgy1kwmlm7ivyl3j3rlvkmq34qpwbwbj8rnja1vn";
};
+ # does not apply cleanly with patchPhase/fetchpatch
+ # https://sources.debian.net/src/nasty/0.6-3/debian/patches/02_add_largefile_support.patch
+ CFLAGS = "-D_FILE_OFFSET_BITS=64";
+
buildInputs = [ gpgme ];
installPhase = ''
diff --git a/pkgs/tools/security/secp256k1/default.nix b/pkgs/tools/security/secp256k1/default.nix
new file mode 100644
index 00000000000..f7a53469545
--- /dev/null
+++ b/pkgs/tools/security/secp256k1/default.nix
@@ -0,0 +1,35 @@
+{ stdenv, fetchFromGitHub, autoconf, automake, libtool, ... }:
+
+stdenv.mkDerivation rec {
+ name = "secp256k1-${version}";
+
+ # I can't find any version numbers, so we're just using the date
+ # of the last commit.
+ version = "2016-05-30";
+
+ src = fetchFromGitHub {
+ owner = "bitcoin-core";
+ repo = "secp256k1";
+ rev = "b3be8521e694eaf45dd29baea035055183c42fe2";
+ sha256 = "1pgsy72w87yxbiqn96hnm8alsfx3rj7d9jlzdsypyf6i1rf6w4bq";
+ };
+
+ buildInputs = [ autoconf automake libtool ];
+
+ configureFlags = [ "--enable-module-recovery" ];
+
+ preConfigure = "./autogen.sh";
+
+ meta = with stdenv.lib; {
+ description = "Optimized C library for EC operations on curve secp256k1";
+ longDescription = ''
+ Optimized C library for EC operations on curve secp256k1.
+ Part of Bitcoin Core. This library is a work in progress
+ and is being used to research best practices. Use at your
+ own risk.
+ '';
+ homepage = https://github.com/bitcoin-core/secp256k1;
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ chris-martin ];
+ };
+}
diff --git a/pkgs/tools/security/sslscan/default.nix b/pkgs/tools/security/sslscan/default.nix
index 50cc380b970..f6777a0e979 100644
--- a/pkgs/tools/security/sslscan/default.nix
+++ b/pkgs/tools/security/sslscan/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "sslscan-${version}";
- version = "1.11.5";
+ version = "1.11.7";
src = fetchurl {
url = "https://github.com/rbsec/sslscan/archive/${version}-rbsec.tar.gz";
- sha256 = "0mcg8hyx1r9sq716bw1r554fcsf512khgcms2ixxb1c31ng6lhq6";
+ sha256 = "0wygz2gm9asvhpfy44333y4pkdja1sbr41hc6mhkxg7a4ys8f9qs";
};
buildInputs = [ openssl ];
diff --git a/pkgs/tools/security/sudo/default.nix b/pkgs/tools/security/sudo/default.nix
index b2af5451b8b..e2c69377df5 100644
--- a/pkgs/tools/security/sudo/default.nix
+++ b/pkgs/tools/security/sudo/default.nix
@@ -4,14 +4,14 @@
}:
stdenv.mkDerivation rec {
- name = "sudo-1.8.16";
+ name = "sudo-1.8.17p1";
src = fetchurl {
urls =
[ "ftp://ftp.sudo.ws/pub/sudo/${name}.tar.gz"
"ftp://ftp.sudo.ws/pub/sudo/OLD/${name}.tar.gz"
];
- sha256 = "0k86sm9ilhxhvnfwq3092zhfxazj3kddn0y2mirz0nqjqmpq50rd";
+ sha256 = "c690d707fb561b3ecdf6a6de5563bc0b769388eff201c851edbace408bb155cc";
};
configureFlags = [
diff --git a/pkgs/tools/system/ddrescue/default.nix b/pkgs/tools/system/ddrescue/default.nix
index b436b6ecf96..173c2623e18 100644
--- a/pkgs/tools/system/ddrescue/default.nix
+++ b/pkgs/tools/system/ddrescue/default.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
sha256 = "1b71hb42lh33y9843nd1mxlwkk9qh9ajvnz6ivzd1jq9lav4x7ph";
};
- buildInputs = [ lzip ];
+ nativeBuildInputs = [ lzip ];
doCheck = true;
diff --git a/pkgs/tools/system/facter/default.nix b/pkgs/tools/system/facter/default.nix
index 9a95df94a1c..de9b79d79c3 100644
--- a/pkgs/tools/system/facter/default.nix
+++ b/pkgs/tools/system/facter/default.nix
@@ -2,10 +2,10 @@
stdenv.mkDerivation rec {
name = "facter-${version}";
- version = "3.1.6";
+ version = "3.1.8";
src = fetchurl {
url = "https://downloads.puppetlabs.com/facter/${name}.tar.gz";
- sha256 = "1kv4k9zqpsiw362kk1rw1a4sixd0pmnh57ghd4k4pffr2dkmdfsv";
+ sha256 = "1fhfjf5bm5kyjiady14fxhpp7hdrkgx56vsvdbqj82km0xqcxpj9";
};
cmakeFlags = [ "-DFACTER_RUBY=${ruby}/lib/libruby.so" ];
diff --git a/pkgs/tools/system/stress-ng/default.nix b/pkgs/tools/system/stress-ng/default.nix
index 0d55d1e7ca8..c45cc8a596b 100644
--- a/pkgs/tools/system/stress-ng/default.nix
+++ b/pkgs/tools/system/stress-ng/default.nix
@@ -2,10 +2,10 @@
stdenv.mkDerivation rec {
name = "stress-ng-${version}";
- version = "0.06.01";
+ version = "0.06.11";
src = fetchurl {
- sha256 = "1bk3sj6gyrgp5qfxiz6k7zml28m01iljgvxhp4yq391xzfyvrlg9";
+ sha256 = "0481aji9hdq8qbslrrc87r2p2pn8jxf913ac8wm5kxj02yqf7ccv";
url = "http://kernel.ubuntu.com/~cking/tarballs/stress-ng/${name}.tar.gz";
};
@@ -24,8 +24,8 @@ stdenv.mkDerivation rec {
longDescription = ''
Stress test a system in various selectable ways, exercising both various
physical subsystems and various operating system kernel interfaces:
- - over 60 different stress tests
- - over 50 CPU specific stress tests that exercise floating point,
+ - over 130 different stress tests
+ - over 70 CPU specific stress tests that exercise floating point,
integer, bit manipulation and control flow
- over 20 virtual memory stress tests
stress-ng was originally intended to make a machine work hard and trip
diff --git a/pkgs/tools/text/platinum-searcher/default.nix b/pkgs/tools/text/platinum-searcher/default.nix
index 9eae37c6d1a..21a49d493aa 100644
--- a/pkgs/tools/text/platinum-searcher/default.nix
+++ b/pkgs/tools/text/platinum-searcher/default.nix
@@ -2,8 +2,8 @@
buildGoPackage rec {
name = "the_platinum_searcher-${version}";
- version = "2.1.1";
- rev = "v2.1.1";
+ version = "2.1.3";
+ rev = "v2.1.3";
goPackagePath = "github.com/monochromegane/the_platinum_searcher";
@@ -11,7 +11,7 @@ buildGoPackage rec {
inherit rev;
owner = "monochromegane";
repo = "the_platinum_searcher";
- sha256 = "06cs936w3l64ikszcysdm9ijn52kwgi1ffjxkricxbdb677gsk23";
+ sha256 = "09pkdfh7fqn3x4l9zaw5wzk20k7nfdwry7br9vfy3vv3fwv61ynp";
};
goDeps = ./deps.json;
diff --git a/pkgs/tools/virtualization/nixos-container/default.nix b/pkgs/tools/virtualization/nixos-container/default.nix
new file mode 100644
index 00000000000..0763536533f
--- /dev/null
+++ b/pkgs/tools/virtualization/nixos-container/default.nix
@@ -0,0 +1,17 @@
+{ substituteAll, perl, perlPackages, shadow, utillinux }:
+
+substituteAll {
+ name = "nixos-container";
+ dir = "bin";
+ isExecutable = true;
+ src = ./nixos-container.pl;
+ perl = "${perl}/bin/perl -I${perlPackages.FileSlurp}/lib/perl5/site_perl";
+ su = "${shadow.su}/bin/su";
+ inherit utillinux;
+
+ postInstall = ''
+ t=$out/etc/bash_completion.d
+ mkdir -p $t
+ cp ${./nixos-container-completion.sh} $t/nixos-container
+ '';
+}
diff --git a/nixos/modules/virtualisation/nixos-container-completion.sh b/pkgs/tools/virtualization/nixos-container/nixos-container-completion.sh
similarity index 100%
rename from nixos/modules/virtualisation/nixos-container-completion.sh
rename to pkgs/tools/virtualization/nixos-container/nixos-container-completion.sh
diff --git a/nixos/modules/virtualisation/nixos-container.pl b/pkgs/tools/virtualization/nixos-container/nixos-container.pl
similarity index 100%
rename from nixos/modules/virtualisation/nixos-container.pl
rename to pkgs/tools/virtualization/nixos-container/nixos-container.pl
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index a5d37c7762a..f146cc92dcc 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -167,6 +167,8 @@ in
fetchmtn = callPackage ../build-support/fetchmtn (config.fetchmtn or {});
+ fetchMavenArtifact = callPackage ../build-support/fetchmavenartifact { };
+
packer = callPackage ../development/tools/packer { };
fetchpatch = callPackage ../build-support/fetchpatch { };
@@ -1496,7 +1498,9 @@ in
fatsort = callPackage ../tools/filesystems/fatsort { };
- fcitx = callPackage ../tools/inputmethods/fcitx { };
+ fcitx = callPackage ../tools/inputmethods/fcitx {
+ plugins = [];
+ };
fcitx-engines = recurseIntoAttrs {
@@ -1520,10 +1524,6 @@ in
fcitx-configtool = callPackage ../tools/inputmethods/fcitx/fcitx-configtool.nix { };
- fcitx-with-plugins = callPackage ../tools/inputmethods/fcitx/wrapper.nix {
- plugins = [ ];
- };
-
fcppt = callPackage ../development/libraries/fcppt/default.nix { };
fcron = callPackage ../tools/system/fcron { };
@@ -1942,6 +1942,7 @@ in
haveged = callPackage ../tools/security/haveged { };
habitat = callPackage ../applications/networking/cluster/habitat { };
+ habitat-sh = callPackage ../applications/networking/cluster/habitat/chroot-env.nix { };
hardlink = callPackage ../tools/system/hardlink { };
@@ -2171,6 +2172,8 @@ in
keybase = callPackage ../applications/misc/keybase { };
+ keybase-go = callPackage ../tools/security/keybase { };
+
keychain = callPackage ../tools/misc/keychain { };
keyfuzz = callPackage ../tools/inputmethods/keyfuzz { };
@@ -2367,6 +2370,8 @@ in
libqmi = callPackage ../development/libraries/libqmi { };
+ libqrencode = callPackage ../development/libraries/libqrencode { };
+
libmbim = callPackage ../development/libraries/libmbim { };
libmongo-client = callPackage ../development/libraries/libmongo-client { };
@@ -2780,6 +2785,8 @@ in
obexd = callPackage ../tools/bluetooth/obexd { };
+ ocproxy = callPackage ../tools/networking/ocproxy { };
+
openfortivpn = callPackage ../tools/networking/openfortivpn { };
obexfs = callPackage ../tools/bluetooth/obexfs { };
@@ -2893,7 +2900,9 @@ in
p7zip = callPackage ../tools/archivers/p7zip { };
- packagekit = callPackage ../tools/package-management/packagekit { };
+ packagekit = callPackage ../tools/package-management/packagekit {
+ nix = nixUnstable;
+ };
pal = callPackage ../tools/misc/pal { };
@@ -3389,6 +3398,8 @@ in
seccure = callPackage ../tools/security/seccure { };
+ secp256k1 = callPackage ../tools/security/secp256k1 { };
+
securefs = callPackage ../tools/filesystems/securefs { };
setroot = callPackage ../tools/X11/setroot { };
@@ -3469,6 +3480,8 @@ in
solvespace = callPackage ../applications/graphics/solvespace { };
+ sonarr = callPackage ../servers/sonarr { };
+
sonata = callPackage ../applications/audio/sonata {
inherit (python3Packages) buildPythonApplication python isPy3k dbus pygobject3 mpd2;
};
@@ -3663,6 +3676,8 @@ in
toilet = callPackage ../tools/misc/toilet { };
+ tokei = callPackage ../development/tools/misc/tokei { };
+
tor = callPackage ../tools/security/tor { };
tor-arm = callPackage ../tools/security/tor/tor-arm.nix { };
@@ -3914,6 +3929,8 @@ in
udunits = callPackage ../development/libraries/udunits { };
+ uemacs = callPackage ../applications/editors/uemacs { };
+
uhttpmock = callPackage ../development/libraries/uhttpmock { };
uim = callPackage ../tools/inputmethods/uim {
@@ -3928,6 +3945,8 @@ in
units = callPackage ../tools/misc/units { };
+ unittest-cpp = callPackage ../development/libraries/unittest-cpp { };
+
unrar = callPackage ../tools/archivers/unrar { };
xar = callPackage ../tools/compression/xar { };
@@ -4613,14 +4632,14 @@ in
releaseType = "update";
sha256 = "c5e0025b065750bbd76b5357b4fc8606d88afbac9ff55b8a82927b4b96178154";
};
- gcc-arm-embedded-5_2 = pkgs.callPackage_i686 ../development/compilers/gcc-arm-embedded {
+ gcc-arm-embedded-5 = pkgs.callPackage_i686 ../development/compilers/gcc-arm-embedded {
dirName = "5.0";
- subdirName = "5-2015-q4-major";
- version = "5.2-2015q4-20151219";
- releaseType = "major";
- sha256 = "12mbwl9iwbw7h6gwwkvyvfmrsz7vgjz27jh2cz9z006ihzigi50y";
+ subdirName = "5-2016-q2-update";
+ version = "5.4-2016q2-20160622";
+ releaseType = "update";
+ sha256 = "1r0rqbnw7rf94f5bsa3gi8bick4xb7qnp1dkvdjfbvqjvysvc44r";
};
- gcc-arm-embedded = self.gcc-arm-embedded-4_9;
+ gcc-arm-embedded = self.gcc-arm-embedded-5;
gforth = callPackage ../development/compilers/gforth {};
@@ -4709,8 +4728,6 @@ in
hugs = callPackage ../development/interpreters/hugs { };
- path64 = callPackage ../development/compilers/path64 { };
-
openjdk7 =
if stdenv.isDarwin then
callPackage ../development/compilers/openjdk-darwin { }
@@ -4738,6 +4755,8 @@ in
jdk = if stdenv.isDarwin then self.jdk7 else self.jdk8;
jre = if stdenv.isDarwin then self.jre7 else self.jre8;
+ openshot-qt = callPackage ../applications/video/openshot-qt { };
+
oraclejdk = self.jdkdistro true false;
oraclejdk7 = self.oraclejdk7distro true false;
@@ -5423,9 +5442,9 @@ in
cargo = rust.cargo;
rustc = rust.rustc;
- rustPlatform = recurseIntoAttrs (makeRustPlatform rust rustPlatform);
+ rustPlatform = recurseIntoAttrs (makeRustPlatform rust);
- makeRustPlatform = rust: self:
+ makeRustPlatform = rust: lib.fix (self:
let
callPackage = newScope self;
in {
@@ -5436,7 +5455,7 @@ in
buildRustPackage = callPackage ../build-support/rust {
inherit rust;
};
- };
+ });
rustfmt = callPackage ../development/tools/rust/rustfmt { };
rustracer = callPackage ../development/tools/rust/racer { };
@@ -5651,6 +5670,8 @@ in
elixir = callPackage ../development/interpreters/elixir { debugInfo = true; };
+ lfe = callPackage ../development/interpreters/lfe { };
+
groovy = callPackage ../development/interpreters/groovy { };
guile_1_8 = callPackage ../development/interpreters/guile/1.8.nix { };
@@ -5756,7 +5777,7 @@ in
glpk = null;
suitesparse = null;
jdk = null;
- openblas = openblasCompat;
+ openblas = openblas;
};
octaveFull = (lowPrio (callPackage ../development/interpreters/octave {
qt = qt4;
@@ -5831,6 +5852,10 @@ in
inherit (darwin) CF configd;
self = python35;
});
+ python36 = callPackage ../development/interpreters/python/3.6 {
+ inherit (darwin) CF configd;
+ self = python36;
+ };
pypy = callPackage ../development/interpreters/pypy {
self = pypy;
};
@@ -5850,7 +5875,7 @@ in
pythonDocs = recurseIntoAttrs (callPackage ../development/interpreters/python/docs {});
- pypi2nix = callPackage ../development/tools/pypi2nix { python = python27; };
+ pypi2nix = callPackage ../development/tools/pypi2nix { python = python35; };
svg2tikz = python27Packages.svg2tikz;
@@ -6263,6 +6288,8 @@ in
docutils = pythonPackages.docutils;
+ doctl = callPackage ../development/tools/doctl { };
+
dot2tex = pythonPackages.dot2tex;
doxygen = callPackage ../development/tools/documentation/doxygen {
@@ -6335,7 +6362,7 @@ in
gnumake40 = callPackage ../development/tools/build-managers/gnumake/4.0 { };
gnumake41 = callPackage ../development/tools/build-managers/gnumake/4.1 { };
gnumake42 = callPackage ../development/tools/build-managers/gnumake/4.2 { };
- gnumake = self.gnumake41;
+ gnumake = self.gnumake42;
gob2 = callPackage ../development/tools/misc/gob2 { };
@@ -6411,6 +6438,7 @@ in
lemon = callPackage ../development/tools/parsing/lemon { };
+ lenmus = callPackage ../applications/misc/lenmus { };
libtool = self.libtool_2;
@@ -6431,6 +6459,8 @@ in
maven = maven3;
maven3 = callPackage ../development/tools/build-managers/apache-maven { };
+ minify = callPackage ../development/web/minify { };
+
mk = callPackage ../development/tools/build-managers/mk { };
msitools = callPackage ../development/tools/misc/msitools { };
@@ -6583,6 +6613,8 @@ in
shellcheck = self.haskellPackages.ShellCheck;
+ shncpd = callPackage ../tools/networking/shncpd { };
+
sigrok-cli = callPackage ../development/tools/sigrok-cli { };
simpleTpmPk11 = callPackage ../tools/security/simple-tpm-pk11 { };
@@ -6637,7 +6669,7 @@ in
texinfo413 = callPackage ../development/tools/misc/texinfo/4.13a.nix { };
texinfo4 = texinfo413;
texinfo5 = callPackage ../development/tools/misc/texinfo/5.2.nix { };
- texinfo6 = callPackage ../development/tools/misc/texinfo/6.0.nix { };
+ texinfo6 = callPackage ../development/tools/misc/texinfo/6.1.nix { };
texinfo = texinfo6;
texinfoInteractive = appendToName "interactive" (
texinfo.override { interactive = true; }
@@ -6655,6 +6687,8 @@ in
uncrustify = callPackage ../development/tools/misc/uncrustify { };
+ universal-ctags = callPackage ../development/tools/misc/universal-ctags { };
+
vagrant = callPackage ../development/tools/vagrant {
ruby = ruby_2_2;
};
@@ -6705,6 +6739,8 @@ in
grabserial = callPackage ../development/tools/grabserial { };
+ mypy-lang = callPackage ../development/tools/mypy-lang { };
+
### DEVELOPMENT / LIBRARIES
@@ -7071,14 +7107,14 @@ in
ffmpeg_2_8 = callPackage ../development/libraries/ffmpeg/2.8.nix {
inherit (darwin.apple_sdk.frameworks) Cocoa;
};
- ffmpeg_3_0 = callPackage ../development/libraries/ffmpeg/3.0.nix {
+ ffmpeg_3_1 = callPackage ../development/libraries/ffmpeg/3.1.nix {
inherit (darwin.apple_sdk.frameworks) Cocoa;
};
# Aliases
ffmpeg_0 = self.ffmpeg_0_10;
ffmpeg_1 = self.ffmpeg_1_2;
ffmpeg_2 = self.ffmpeg_2_8;
- ffmpeg_3 = self.ffmpeg_3_0;
+ ffmpeg_3 = self.ffmpeg_3_1;
ffmpeg = self.ffmpeg_3;
ffmpeg-full = callPackage ../development/libraries/ffmpeg-full {
@@ -7559,6 +7595,7 @@ in
hyena = callPackage ../development/libraries/hyena { };
icu = callPackage ../development/libraries/icu { };
+ icu_54_1 = callPackage ../development/libraries/icu/54.1.nix { };
id3lib = callPackage ../development/libraries/id3lib { };
@@ -8153,6 +8190,7 @@ in
libjpeg_original = callPackage ../development/libraries/libjpeg { };
libjpeg_turbo = callPackage ../development/libraries/libjpeg-turbo { };
+ libjpeg_drop = callPackage ../development/libraries/libjpeg-drop { };
libjpeg = if stdenv.isLinux then self.libjpeg_turbo else self.libjpeg_original; # some problems, both on FreeBSD and Darwin
libjpeg62 = callPackage ../development/libraries/libjpeg/62.nix {
@@ -8405,6 +8443,8 @@ in
libu2f-server = callPackage ../development/libraries/libu2f-server { };
+ libui = callPackage ../development/libraries/libui { };
+
libunity = callPackage ../development/libraries/libunity { };
libunistring = callPackage ../development/libraries/libunistring { };
@@ -8691,7 +8731,9 @@ in
notify-sharp = callPackage ../development/libraries/notify-sharp { };
- ncurses = callPackage ../development/libraries/ncurses { };
+ ncurses5 = callPackage ../development/libraries/ncurses { abiVersion = "5"; };
+ ncurses6 = callPackage ../development/libraries/ncurses { abiVersion = "6"; };
+ ncurses = if stdenv.isDarwin then ncurses5 else ncurses6;
neardal = callPackage ../development/libraries/neardal { };
@@ -8853,6 +8895,8 @@ in
ortp = callPackage ../development/libraries/ortp { };
+ osm-gps-map = callPackage ../development/libraries/osm-gps-map { };
+
p11_kit = callPackage ../development/libraries/p11-kit { };
paperkey = callPackage ../tools/security/paperkey { };
@@ -9010,6 +9054,8 @@ in
qt5 = self.qt56;
+ qt5ct = qt5.callPackage ../tools/misc/qt5ct { };
+
qt5LibsFun = self: with self; {
accounts-qt = callPackage ../development/libraries/accounts-qt { };
@@ -9866,6 +9912,11 @@ in
self = python35Packages;
});
+ python36Packages = (callPackage ./python-packages.nix {
+ python = python36;
+ self = python36Packages;
+ });
+
pypyPackages = callPackage ./python-packages.nix {
python = pypy;
self = pypyPackages;
@@ -10177,13 +10228,19 @@ in
neard = callPackage ../servers/neard { };
- nginx = callPackage ../servers/http/nginx {
+ nginx = callPackage ../servers/http/nginx/stable.nix {
# We don't use `with` statement here on purpose!
# See https://github.com/NixOS/nixpkgs/pull/10474/files#r42369334
modules = [ nginxModules.rtmp nginxModules.dav nginxModules.moreheaders ];
};
- # nginxUnstable currently points to stable because that's newest:
- nginxUnstable = nginx;
+
+ nginxMainline = callPackage ../servers/http/nginx/mainline.nix {
+ # We don't use `with` statement here on purpose!
+ # See https://github.com/NixOS/nixpkgs/pull/10474/files#r42369334
+ modules = [ nginxModules.dav nginxModules.moreheaders ];
+ };
+
+ nginxUnstable = nginxMainline;
nginxModules = callPackage ../servers/http/nginx/modules.nix { };
@@ -10516,7 +10573,8 @@ in
inherit clangStdenv fetchurl fetchgit fetchpatch stdenv pkgconfig intltool freetype fontconfig
libxslt expat libpng zlib perl mesa_drivers spice_protocol libunwind
dbus libuuid openssl gperf m4 libevdev tradcpp libinput mcpp makeWrapper autoreconfHook
- autoconf automake libtool xmlto asciidoc flex bison python mtdev pixman;
+ autoconf automake libtool xmlto asciidoc flex bison python mtdev pixman
+ cairo;
inherit (darwin) apple_sdk cf-private libobjc;
bootstrap_cmds = if stdenv.isDarwin then darwin.bootstrap_cmds else null;
mesa = mesa_noglu;
@@ -10748,6 +10806,10 @@ in
firejail = callPackage ../os-specific/linux/firejail {};
+ fnotifystat = callPackage ../os-specific/linux/fnotifystat { };
+
+ forkstat = callPackage ../os-specific/linux/forkstat { };
+
freefall = callPackage ../os-specific/linux/freefall {
inherit (linuxPackages) kernel;
};
@@ -10825,6 +10887,8 @@ in
kbd = callPackage ../os-specific/linux/kbd { };
+ kbdKeymaps = callPackage ../os-specific/linux/kbd/keymaps.nix { };
+
kbdlight = callPackage ../os-specific/linux/kbdlight { };
kmscon = callPackage ../os-specific/linux/kmscon { };
@@ -10847,6 +10911,10 @@ in
openisns = callPackage ../os-specific/linux/open-isns { };
+ powerstat = callPackage ../os-specific/linux/powerstat { };
+
+ smemstat = callPackage ../os-specific/linux/smemstat { };
+
tgt = callPackage ../tools/networking/tgt { };
# -- Linux kernel expressions ------------------------------------------------
@@ -10929,7 +10997,10 @@ in
};
linux_4_1 = callPackage ../os-specific/linux/kernel/linux-4.1.nix {
- kernelPatches = [ kernelPatches.bridge_stp_helper ]
+ kernelPatches =
+ [ kernelPatches.bridge_stp_helper
+ kernelPatches.hiddev_CVE_2016_5829
+ ]
++ lib.optionals ((platform.kernelArch or null) == "mips")
[ kernelPatches.mips_fpureg_emu
kernelPatches.mips_fpu_sigill
@@ -10938,7 +11009,12 @@ in
};
linux_4_4 = callPackage ../os-specific/linux/kernel/linux-4.4.nix {
- kernelPatches = [ kernelPatches.bridge_stp_helper kernelPatches.qat_common_Makefile ]
+ kernelPatches =
+ [ kernelPatches.bridge_stp_helper
+ kernelPatches.qat_common_Makefile
+ kernelPatches.hiddev_CVE_2016_5829
+ kernelPatches.ecryptfs_fix_mmap_bug
+ ]
++ lib.optionals ((platform.kernelArch or null) == "mips")
[ kernelPatches.mips_fpureg_emu
kernelPatches.mips_fpu_sigill
@@ -10947,7 +11023,11 @@ in
};
linux_4_5 = callPackage ../os-specific/linux/kernel/linux-4.5.nix {
- kernelPatches = [ kernelPatches.bridge_stp_helper kernelPatches.qat_common_Makefile ]
+ kernelPatches =
+ [ kernelPatches.bridge_stp_helper
+ kernelPatches.qat_common_Makefile
+ kernelPatches.hiddev_CVE_2016_5829
+ ]
++ lib.optionals ((platform.kernelArch or null) == "mips")
[ kernelPatches.mips_fpureg_emu
kernelPatches.mips_fpu_sigill
@@ -10956,7 +11036,11 @@ in
};
linux_4_6 = callPackage ../os-specific/linux/kernel/linux-4.6.nix {
- kernelPatches = [ kernelPatches.bridge_stp_helper kernelPatches.qat_common_Makefile ]
+ kernelPatches =
+ [ kernelPatches.bridge_stp_helper
+ kernelPatches.qat_common_Makefile
+ kernelPatches.hiddev_CVE_2016_5829
+ ]
++ lib.optionals ((platform.kernelArch or null) == "mips")
[ kernelPatches.mips_fpureg_emu
kernelPatches.mips_fpu_sigill
@@ -11027,6 +11111,8 @@ in
ixgbevf = callPackage ../os-specific/linux/ixgbevf {};
+ ena = callPackage ../os-specific/linux/ena {};
+
v4l2loopback = callPackage ../os-specific/linux/v4l2loopback { };
frandom = callPackage ../os-specific/linux/frandom { };
@@ -11103,6 +11189,8 @@ in
virtualboxGuestAdditions = callPackage ../applications/virtualization/virtualbox/guest-additions { };
+ wireguard = callPackage ../os-specific/linux/wireguard { };
+
x86_energy_perf_policy = callPackage ../os-specific/linux/x86_energy_perf_policy { };
zfs = callPackage ../os-specific/linux/zfs {
@@ -11147,7 +11235,12 @@ in
linux_grsec_nixos = callPackage ../build-support/grsecurity {
inherit (lib) overrideDerivation;
kernel = callPackage ../os-specific/linux/kernel/linux-grsecurity.nix {
- inherit (self.linux_4_5) kernelPatches;
+ kernelPatches = with self.kernelPatches; [ bridge_stp_helper qat_common_Makefile ]
+ ++ lib.optionals ((platform.kernelArch or null) == "mips")
+ [ kernelPatches.mips_fpureg_emu
+ kernelPatches.mips_fpu_sigill
+ kernelPatches.mips_ext3_n32
+ ];
};
grsecPatch = self.kernelPatches.grsecurity_testing;
kernelPatches = [ self.kernelPatches.grsecurity_nixos_kmod ];
@@ -11808,6 +11901,9 @@ in
liberation_ttf_binary = callPackage ../data/fonts/redhat-liberation-fonts/binary.nix { };
liberation_ttf = self.liberation_ttf_binary;
+ liberationsansnarrow = callPackage ../data/fonts/liberationsansnarrow { };
+ liberationsansnarrow_binary = callPackage ../data/fonts/liberationsansnarrow/binary.nix { };
+
libertine = callPackage ../data/fonts/libertine { };
lmmath = callPackage ../data/fonts/lmodern/lmmath.nix {};
@@ -12175,6 +12271,8 @@ in
bibletime = callPackage ../applications/misc/bibletime { };
+ bitkeeper = callPackage ../applications/version-management/bitkeeper { };
+
bitlbee = callPackage ../applications/networking/instant-messengers/bitlbee { };
bitlbee-plugins = callPackage ../applications/networking/instant-messengers/bitlbee/plugins.nix { };
@@ -12746,6 +12844,8 @@ in
evopedia = callPackage ../applications/misc/evopedia { };
+ gpg-mdp = callPackage ../applications/misc/gpg-mdp { };
+
keepassx = callPackage ../applications/misc/keepassx { };
keepassx2 = callPackage ../applications/misc/keepassx/2.0.nix { };
@@ -12890,7 +12990,7 @@ in
};
firefox-beta-bin-unwrapped = callPackage ../applications/networking/browsers/firefox-bin {
- channel = "beta";
+ generated = import ../applications/networking/browsers/firefox-bin/beta_sources.nix;
gconf = pkgs.gnome.GConf;
inherit (pkgs.gnome) libgnome libgnomeui;
inherit (pkgs.gnome3) defaultIconTheme;
@@ -12903,20 +13003,6 @@ in
desktopName = "Firefox Beta";
};
- firefox-developer-bin-unwrapped = callPackage ../applications/networking/browsers/firefox-bin {
- channel = "developer";
- gconf = pkgs.gnome.GConf;
- inherit (pkgs.gnome) libgnome libgnomeui;
- inherit (pkgs.gnome3) defaultIconTheme;
- };
-
- firefox-developer-bin = self.wrapFirefox firefox-developer-bin-unwrapped {
- browserName = "firefox";
- name = "firefox-developer-bin-" +
- (builtins.parseDrvName firefox-developer-bin-unwrapped.name).version;
- desktopName = "Firefox Developer Edition";
- };
-
firestr = qt5.callPackage ../applications/networking/p2p/firestr
{ boost = boost155;
};
@@ -13208,6 +13294,8 @@ in
hugin = callPackage ../applications/graphics/hugin { };
+ hugo = callPackage ../applications/misc/hugo { };
+
hydrogen = callPackage ../applications/audio/hydrogen { };
slack = callPackage ../applications/networking/instant-messengers/slack { };
@@ -13517,6 +13605,8 @@ in
};
ledger = self.ledger3;
+ lighthouse = callPackage ../applications/misc/lighthouse { };
+
lighttable = callPackage ../applications/editors/lighttable {};
links2 = callPackage ../applications/networking/browsers/links2 { };
@@ -13807,6 +13897,8 @@ in
pijul = callPackage ../applications/version-management/pijul { };
+ planner = callPackage ../applications/office/planner { };
+
playonlinux = callPackage ../applications/misc/playonlinux {
stdenv = stdenv_32bit;
};
@@ -13981,6 +14073,8 @@ in
pcsx2 = callPackage_i686 ../misc/emulators/pcsx2 { };
+ pekwm = callPackage ../applications/window-managers/pekwm { };
+
pencil = callPackage ../applications/graphics/pencil {
xulrunner = firefox-unwrapped;
};
@@ -14116,7 +14210,7 @@ in
qbittorrent = qt5.callPackage ../applications/networking/p2p/qbittorrent {
boost = boost;
- libtorrentRasterbar = libtorrentRasterbar;
+ libtorrentRasterbar = libtorrentRasterbar_1_09;
};
eiskaltdcpp = callPackage ../applications/networking/p2p/eiskaltdcpp { lua5 = lua5_1; };
@@ -14510,6 +14604,8 @@ in
syncthing012 = callPackage ../applications/networking/syncthing012 { };
+ syncthing013 = callPackage ../applications/networking/syncthing013 { };
+
# linux only by now
synergy = callPackage ../applications/misc/synergy { };
@@ -14825,7 +14921,9 @@ in
vym = callPackage ../applications/misc/vym { };
- w3m = callPackage ../applications/networking/browsers/w3m { };
+ w3m = callPackage ../applications/networking/browsers/w3m {
+ graphicsSupport = !stdenv.isDarwin;
+ };
# Should always be the version with the most features
w3m-full = w3m;
@@ -14878,6 +14976,8 @@ in
wings = callPackage ../applications/graphics/wings { };
+ wireguard = callPackage ../os-specific/linux/wireguard { };
+
wmname = callPackage ../applications/misc/wmname { };
wmctrl = callPackage ../tools/X11/wmctrl { };
@@ -15302,6 +15402,8 @@ in
cockatrice = qt5.callPackage ../games/cockatrice { };
+ commandergenius = callPackage ../games/commandergenius { };
+
confd = callPackage ../tools/system/confd { };
construoBase = lowPrio (callPackage ../games/construo {
@@ -15603,7 +15705,7 @@ in
soi = callPackage ../games/soi {
lua = lua5_1;
};
-
+
solarus = callPackage ../games/solarus { };
# You still can override by passing more arguments.
@@ -15847,6 +15949,7 @@ in
pythonBindings = true;
};
ruby = ruby_2_2; # see https://github.com/NixOS/nixpkgs/pull/12610#issuecomment-188666473
+ ffmpeg = ffmpeg_2; # ffmpegthumb doesn't build otherwise
}
../desktops/kde-4.14;
@@ -16147,9 +16250,9 @@ in
kde5 =
let
- frameworks = import ../desktops/kde-5/frameworks-5.22 { inherit pkgs; };
- plasma = import ../desktops/kde-5/plasma-5.6 { inherit pkgs; };
- applications = import ../desktops/kde-5/applications-16.04 { inherit pkgs; };
+ frameworks = import ../desktops/kde-5/frameworks { inherit pkgs; };
+ plasma = import ../desktops/kde-5/plasma { inherit pkgs; };
+ applications = import ../desktops/kde-5/applications { inherit pkgs; };
merged = self:
{ plasma = plasma self;
frameworks = frameworks self;
@@ -16284,6 +16387,8 @@ in
suitesparse_4_4 = callPackage ../development/libraries/science/math/suitesparse {};
suitesparse = suitesparse_4_4;
+ superlu = callPackage ../development/libraries/science/math/superlu {};
+
ipopt = callPackage ../development/libraries/science/math/ipopt { openblas = openblasCompat; };
gmsh = callPackage ../applications/science/math/gmsh { };
@@ -16826,9 +16931,15 @@ in
gnome-breeze = callPackage ../misc/themes/gnome-breeze { };
- gnuk = callPackage ../misc/gnuk { };
- gnuk-unstable = lowPrio (callPackage ../misc/gnuk/unstable.nix { });
- gnuk-git = lowPrio (callPackage ../misc/gnuk/git.nix { });
+ gnuk = callPackage ../misc/gnuk {
+ gcc-arm-embedded = gcc-arm-embedded-4_9;
+ };
+ gnuk-unstable = lowPrio (callPackage ../misc/gnuk/unstable.nix {
+ gcc-arm-embedded = gcc-arm-embedded-4_9;
+ });
+ gnuk-git = lowPrio (callPackage ../misc/gnuk/git.nix {
+ gcc-arm-embedded = gcc-arm-embedded-4_9;
+ });
greybird = callPackage ../misc/themes/greybird { };
@@ -16906,6 +17017,8 @@ in
nixos-artwork = callPackage ../data/misc/nixos-artwork { };
+ nixos-container = callPackage ../tools/virtualization/nixos-container { };
+
norwester-font = callPackage ../data/fonts/norwester {};
nut = callPackage ../applications/misc/nut { };
@@ -17176,6 +17289,10 @@ in
webfs = callPackage ../servers/http/webfs { };
+ wikicurses = callPackage ../applications/misc/wikicurses {
+ pythonPackages = python3Packages;
+ };
+
wineMinimal = callPackage ../misc/emulators/wine {
wineRelease = config.wine.release or "stable";
wineBuild = config.wine.build or "wine32";
@@ -17336,4 +17453,6 @@ in
maphosts = callPackage ../tools/networking/maphosts {};
zuki-themes = callPackage ../misc/themes/zuki { };
+
+ zoom-us = qt55.callPackage ../applications/networking/instant-messengers/zoom-us {};
}
diff --git a/pkgs/top-level/default.nix b/pkgs/top-level/default.nix
index 8913dc1ef59..87813571d9a 100644
--- a/pkgs/top-level/default.nix
+++ b/pkgs/top-level/default.nix
@@ -6,7 +6,7 @@
{ # The system (e.g., `i686-linux') for which to build the packages.
- system ? builtins.currentSystem
+ system
, # The standard environment to use. Only used for bootstrapping. If
# null, the default standard environment is used.
@@ -19,21 +19,8 @@
&& system != "x86_64-solaris"
&& system != "x86_64-kfreebsd-gnu")
-, # Allow a configuration attribute set to be passed in as an
- # argument. Otherwise, it's read from $NIXPKGS_CONFIG or
- # ~/.nixpkgs/config.nix.
- #
- # [For NixOS (nixos-rebuild), use nixpkgs.config option to set.]
- config ? let
- inherit (builtins) getEnv pathExists;
-
- configFile = getEnv "NIXPKGS_CONFIG";
- homeDir = getEnv "HOME";
- configFile2 = homeDir + "/.nixpkgs/config.nix";
- in
- if configFile != "" && pathExists configFile then import configFile
- else if homeDir != "" && pathExists configFile2 then import configFile2
- else {}
+, # Allow a configuration attribute set to be passed in as an argument.
+ config ? {}
, crossSystem ? null
, platform ? null
diff --git a/pkgs/top-level/impure.nix b/pkgs/top-level/impure.nix
new file mode 100644
index 00000000000..e9066815927
--- /dev/null
+++ b/pkgs/top-level/impure.nix
@@ -0,0 +1,24 @@
+/* Impure default args for `pkgs/top-level/default.nix`. See that file
+ for the meaning of each argument. */
+
+{ # Fallback: Assume we are building packages for the current (host, in GNU
+ # Autotools parlance) system.
+ system ? builtins.currentSystem
+
+, # Fallback: The contents of the configuration file found at $NIXPKGS_CONFIG or
+ # $HOME/.nixpkgs/config.nix.
+ config ? let
+ inherit (builtins) getEnv pathExists;
+
+ configFile = getEnv "NIXPKGS_CONFIG";
+ homeDir = getEnv "HOME";
+ configFile2 = homeDir + "/.nixpkgs/config.nix";
+ in
+ if configFile != "" && pathExists configFile then import configFile
+ else if homeDir != "" && pathExists configFile2 then import configFile2
+ else {}
+
+, ...
+} @ args:
+
+import ./. (args // { inherit system config; })
diff --git a/pkgs/top-level/make-tarball.nix b/pkgs/top-level/make-tarball.nix
index da3579a6595..b664dceaa95 100644
--- a/pkgs/top-level/make-tarball.nix
+++ b/pkgs/top-level/make-tarball.nix
@@ -40,7 +40,7 @@ releaseTools.sourceTarball rec {
echo 'abort "Illegal use of in Nixpkgs."' > $TMPDIR/barf.nix
# Make sure that Nixpkgs does not use
- if grep -r ' to refer to itself."
exit 1
fi
diff --git a/pkgs/top-level/node-packages-generated.nix b/pkgs/top-level/node-packages-generated.nix
index 0ec4731a947..808a197ad3d 100644
--- a/pkgs/top-level/node-packages-generated.nix
+++ b/pkgs/top-level/node-packages-generated.nix
@@ -42094,6 +42094,27 @@
os = [ ];
cpu = [ ];
};
+ by-spec."rollup"."*" =
+ self.by-version."rollup"."0.31.2";
+ by-version."rollup"."0.31.2" = self.buildNodePackage {
+ name = "rollup-0.31.2";
+ version = "0.31.2";
+ bin = true;
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rollup/-/rollup-0.31.2.tgz";
+ name = "rollup-0.31.2.tgz";
+ sha1 = "b479fe0a5faf7c310b8cc963da4dd0eb0a6174d0";
+ };
+ deps = {
+ "source-map-support-0.4.0" = self.by-version."source-map-support"."0.4.0";
+ };
+ optionalDependencies = {
+ };
+ peerDependencies = [];
+ os = [ ];
+ cpu = [ ];
+ };
+ "rollup" = self.by-version."rollup"."0.31.2";
by-spec."root"."^2.0.0" =
self.by-version."root"."2.0.0";
by-version."root"."2.0.0" = self.buildNodePackage {
@@ -45396,6 +45417,24 @@
os = [ ];
cpu = [ ];
};
+ by-version."source-map-support"."0.4.0" = self.buildNodePackage {
+ name = "source-map-support-0.4.0";
+ version = "0.4.0";
+ bin = false;
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.0.tgz";
+ name = "source-map-support-0.4.0.tgz";
+ sha1 = "cb92292bc05455ce48691de545ac2690bb1cc976";
+ };
+ 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 {
diff --git a/pkgs/top-level/node-packages.json b/pkgs/top-level/node-packages.json
index 447fd30060b..a8bd2e05ec0 100644
--- a/pkgs/top-level/node-packages.json
+++ b/pkgs/top-level/node-packages.json
@@ -150,6 +150,7 @@
, "react-tools"
, "redis"
, "rethinkdb"
+, "rollup"
, "s3http"
, "selenium-webdriver"
, "semver"
diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix
index 63e459a34d7..d50237f06d5 100644
--- a/pkgs/top-level/perl-packages.nix
+++ b/pkgs/top-level/perl-packages.nix
@@ -304,6 +304,25 @@ let self = _self // overrides; _self = with self; {
};
};
+ AppSt = buildPerlPackage rec {
+ name = "App-St-1.1.2";
+ src = fetchurl {
+ url = https://github.com/nferraz/st/archive/v1.1.2.tar.gz;
+ sha256 = "1j1iwcxl16m4x5kl1vcv0linb93r55ndh3jm0w6qf459jl4x38s6";
+ };
+ postInstall =
+ ''
+ sed -e "1 s|\(.*\)|\1 -I $out/lib/perl5/site_perl|" -i $out/bin/st
+ ($out/bin/st --help || true) | grep Usage
+ '';
+ meta = {
+ description = "A command that computes simple statistics";
+ license = stdenv.lib.licenses.mit;
+ homepage = https://github.com/nferraz/st;
+ maintainers = [ maintainers.eelco ];
+ };
+ };
+
AttributeHandlers = buildPerlPackage {
name = "Attribute-Handlers-0.99";
src = fetchurl {
@@ -603,10 +622,10 @@ let self = _self // overrides; _self = with self; {
};
bignum = buildPerlPackage rec {
- name = "bignum-0.42";
+ name = "bignum-0.43";
src = fetchurl {
url = "mirror://cpan/authors/id/P/PJ/PJACKLAM/${name}.tar.gz";
- sha256 = "5bc9a16fe6d56584cde0f183828d81466f2cfc08ec1b6ef15d25a732080a9b52";
+ sha256 = "0610cb569fe51ceaa98991549192b54a09b5ebd9bd03aee39e7234f7c222366d";
};
buildInputs = [ MathBigInt MathBigRat ];
meta = {
@@ -2698,10 +2717,10 @@ let self = _self // overrides; _self = with self; {
};
CryptX = buildPerlPackage rec {
- name = "CryptX-0.037";
+ name = "CryptX-0.038";
src = fetchurl {
url = "mirror://cpan/authors/id/M/MI/MIK/${name}.tar.gz";
- sha256 = "ae09e6449efb2a9bc661ffeba613c7452367bdcb13c1ee346af0f72c9803404d";
+ sha256 = "f98d4ee3bfd0a985077912501b32777c551f0782aa050b4dfbcb3d654e303eb8";
};
propagatedBuildInputs = [ JSONMaybeXS ];
meta = {
@@ -5302,10 +5321,10 @@ let self = _self // overrides; _self = with self; {
};
FileUtil = buildPerlPackage rec {
- name = "File-Util-4.161200";
+ name = "File-Util-4.161950";
src = fetchurl {
url = "mirror://cpan/authors/id/T/TO/TOMMY/${name}.tar.gz";
- sha256 = "c63be030c15303796d387b290f1f6b59451fb64827e39afeb0e1d0adad72ab8e";
+ sha256 = "88507b19da580d595b5c25fe6ba75bbd6096b4359e389ead067a216f766c20ee";
};
buildInputs = [ ModuleBuild TestNoWarnings ];
meta = {
@@ -5493,18 +5512,18 @@ let self = _self // overrides; _self = with self; {
};
GetoptLongDescriptive = buildPerlPackage rec {
- name = "Getopt-Long-Descriptive-0.099";
+ name = "Getopt-Long-Descriptive-0.100";
src = fetchurl {
url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz";
- sha256 = "1sf5r3vy7880ynsn2aqmb5p6rzmhq5v072x33g8c7aqjpz81wkgw";
+ sha256 = "1451e79310d1630de37690e3aba5c38ea5f01a486c5a43f0cd95bef2a02dffb6";
};
- buildInputs = [ TestFatal TestWarnings ];
- propagatedBuildInputs = [ ParamsValidate SubExporter SubExporterUtil ];
+ buildInputs = [ CPANMetaCheck TestFatal TestWarnings ];
+ propagatedBuildInputs = [ ParamsValidate SubExporter ];
meta = {
homepage = https://github.com/rjbs/Getopt-Long-Descriptive;
description = "Getopt::Long, but simpler and more powerful";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
- maintainers = with maintainers; [ rycee ];
+ maintainers = [ maintainers.rycee ];
};
};
@@ -7613,6 +7632,18 @@ let self = _self // overrides; _self = with self; {
};
};
+ MathCalcUnits = buildPerlPackage rec {
+ name = "Math-Calc-Units-1.07";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/S/SF/SFINK/${name}.tar.gz";
+ sha256 = "13wgbxv2fmigdj0vf7nwkq1y2q07jgfj8wdrpqkywfxv4zdwzqv1";
+ };
+ meta = {
+ description = "Human-readable unit-aware calculator";
+ license = with stdenv.lib.licenses; [ artistic1 gpl2 ];
+ };
+ };
+
MathBigInt = buildPerlPackage rec {
name = "Math-BigInt-1.999724";
src = fetchurl {
@@ -8275,6 +8306,25 @@ let self = _self // overrides; _self = with self; {
};
};
+ MonitoringPlugin = buildPerlPackage rec {
+ name = "Monitoring-Plugin-0.39";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/N/NI/NIERLEIN/${name}.tar.gz";
+ sha256 = "030cw86j8712z8rn66k935gbilb5rcj3lnk4n53vh1b2phrszvjw";
+ };
+ buildInputs = [ TestMore ];
+ propagatedBuildInputs = [
+ Carp ClassAccessor ConfigTiny
+ MathCalcUnits ParamsValidate ];
+ meta = {
+ description = ''
+ A family of perl modules to streamline writing Naemon,
+ Nagios, Icinga or Shinken (and compatible) plugins
+ '';
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+ };
+ };
+
IOPipely = buildPerlPackage rec {
name = "IO-Pipely-0.005";
src = fetchurl {
@@ -8488,12 +8538,12 @@ let self = _self // overrides; _self = with self; {
MouseXGetOpt = self.MouseXGetopt;
MouseXGetopt = buildPerlModule rec {
- name = "MouseX-Getopt-0.36";
+ name = "MouseX-Getopt-0.37";
src = fetchurl {
url = "mirror://cpan/authors/id/G/GF/GFUJI/${name}.tar.gz";
- sha256 = "172ab0609f1638c6d8800d2dff1bdaa044e305aaa2e9b1fbb8a9dc722a3bf430";
+ sha256 = "a6221043e7be3217ce56d2a6425a413d9cd28e2f52053995a6ceb118e8e963bc";
};
- buildInputs = [ ModuleBuild Mouse MouseXConfigFromFile MouseXSimpleConfig TestException TestWarn ];
+ buildInputs = [ ModuleBuildTiny Mouse MouseXConfigFromFile MouseXSimpleConfig TestException TestWarn ];
propagatedBuildInputs = [ GetoptLongDescriptive Mouse ];
meta = {
homepage = https://github.com/gfx/mousex-getopt;
diff --git a/pkgs/top-level/php-packages.nix b/pkgs/top-level/php-packages.nix
index f08117903be..1e042bedb4f 100644
--- a/pkgs/top-level/php-packages.nix
+++ b/pkgs/top-level/php-packages.nix
@@ -209,11 +209,11 @@ let
composer = pkgs.stdenv.mkDerivation rec {
name = "composer-${version}";
- version = "1.0.0-alpha11";
+ version = "1.2.0";
src = pkgs.fetchurl {
url = "https://getcomposer.org/download/${version}/composer.phar";
- sha256 = "1b41ad352p4296c2j7cdq27wp06w28080bjxnjpmw536scb7yd27";
+ sha256 = "15chwfsqmwmhry3bv13a5y4ih1vzb0j8h1dfd49pnzzd8lai706w";
};
phases = [ "installPhase" ];
diff --git a/pkgs/top-level/platforms.nix b/pkgs/top-level/platforms.nix
index 83859f821d8..3c94501b1a5 100644
--- a/pkgs/top-level/platforms.nix
+++ b/pkgs/top-level/platforms.nix
@@ -24,7 +24,7 @@ rec {
sheevaplug = {
name = "sheevaplug";
kernelMajor = "2.6";
- kernelHeadersBaseConfig = "kirkwood_defconfig";
+ kernelHeadersBaseConfig = "multi_v5_defconfig";
kernelBaseConfig = "multi_v5_defconfig";
kernelArch = "arm";
kernelAutoModules = false;
@@ -129,6 +129,10 @@ rec {
# Only for uboot = uboot :
ubootConfig = "sheevaplug_config";
kernelDTB = true; # Beyond 3.10
+ gcc = {
+ arch = "armv5te";
+ float = "soft";
+ };
};
raspberrypi = {
@@ -413,11 +417,12 @@ rec {
# Cortex-A15: -mfpu=neon-vfpv4
# More about FPU:
- #https://wiki.debian.org/ArmHardFloatPort/VfpComparison
+ # https://wiki.debian.org/ArmHardFloatPort/VfpComparison
- # We try to be compatible with beaglebone by now
+ # vfpv3-d16 is what Debian uses and seems to be the best compromise: NEON is not supported in e.g. Scaleway or Tegra 2,
+ # and the above page suggests NEON is only an improvement with hand-written assembly.
arch = "armv7-a";
- fpu = "neon";
+ fpu = "vfpv3-d16";
float = "hard";
# For Raspberry Pi the 2 the best would be:
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index c4dacb957fb..e0405b63f9f 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -10,6 +10,7 @@ let
isPy33 = python.majorVersion == "3.3";
isPy34 = python.majorVersion == "3.4";
isPy35 = python.majorVersion == "3.5";
+ isPy36 = python.majorVersion == "3.6";
isPyPy = python.executable == "pypy";
isPy3k = strings.substring 0 1 python.majorVersion == "3";
@@ -30,6 +31,7 @@ let
if isPy33 then "python33" else
if isPy34 then "python34" else
if isPy35 then "python35" else
+ if isPy36 then "python36" else
if isPyPy then "pypy" else "";
modules = python.modules or {
@@ -42,7 +44,7 @@ let
in modules // {
- inherit python bootstrapped-pip isPy26 isPy27 isPy33 isPy34 isPy35 isPyPy isPy3k pythonName buildPythonPackage buildPythonApplication;
+ inherit python bootstrapped-pip isPy26 isPy27 isPy33 isPy34 isPy35 isPy36 isPyPy isPy3k pythonName buildPythonPackage buildPythonApplication;
# helpers
@@ -225,13 +227,11 @@ in modules // {
};
h5py = callPackage ../development/python-modules/h5py {
- hdf5 = pkgs.hdf5.override { mpi = null; };
+ hdf5 = pkgs.hdf5;
};
h5py-mpi = self.h5py.override {
- mpiSupport = true;
- mpi = pkgs.openmpi;
- hdf5 = pkgs.hdf5.override { mpi = pkgs.openmpi; enableShared = true; };
+ hdf5 = pkgs.hdf5-mpi;
};
mpi4py = callPackage ../development/python-modules/mpi4py {
@@ -813,13 +813,13 @@ in modules // {
};
ansible = buildPythonPackage rec {
- version = "1.9.4";
+ version = "1.9.6";
name = "ansible-${version}";
disabled = isPy3k;
src = pkgs.fetchurl {
url = "https://releases.ansible.com/ansible/${name}.tar.gz";
- sha256 = "1qvgzb66nlyc2ncmgmqhzdk0x0p2px09967p1yypf5czwjn2yb4p";
+ sha256 = "0pgfh5z4w44sjgd77q6k769a5ipigjlm28zbpf2jhvz7n60kfxsh";
};
prePatch = ''
@@ -1359,13 +1359,13 @@ in modules // {
awscli = buildPythonPackage rec {
name = "awscli-${version}";
- version = "1.10.38";
+ version = "1.10.46";
namePrefix = "";
src = pkgs.fetchurl {
url = "mirror://pypi/a/awscli/${name}.tar.gz";
- sha256 = "01d14snp3h4dkbwyviyprhcl8qcngc6nyzwy3k3nxvm1ia9hvz2n";
+ sha256 = "1d2xjhdmjna9zxa4ybk7cjypib5yq2gd3w5fgpb4lfs6bh3mr554";
};
# No tests included
@@ -1401,13 +1401,13 @@ in modules // {
aws_shell = buildPythonPackage rec {
name = "aws-shell-${version}";
- version = "0.1.0";
+ version = "0.1.1";
src = pkgs.fetchurl {
- sha256 = "05isyrqbk16dg1bc3mnc4ynxr3nchslvia5wr1sdmxvc3v2y729d";
- url = "mirror://pypi/a/aws-shell/aws-shell-0.1.0.tar.gz";
+ sha256 = "1pw9lrdjl24n6lrs6lnqpyiyic8bdxgvhyqvb2rx6kkbjrfhhgv5";
+ url = "mirror://pypi/a/aws-shell/aws-shell-${version}.tar.gz";
};
propagatedBuildInputs = with self; [
- configobj prompt_toolkit_52 awscli boto3 pygments sqlite3 mock pytest
+ configobj prompt_toolkit awscli boto3 pygments sqlite3 mock pytest
pytestcov unittest2 tox
];
@@ -2746,12 +2746,12 @@ in modules // {
};
botocore = buildPythonPackage rec {
- version = "1.4.28"; # This version is required by awscli
+ version = "1.4.36"; # This version is required by awscli
name = "botocore-${version}";
src = pkgs.fetchurl {
url = "mirror://pypi/b/botocore/${name}.tar.gz";
- sha256 = "1qfvcb7japa3y1j4b86af9ph8q8mbq2mrx6xfhlqcf2x399l2phl";
+ sha256 = "0mkydnbbn0x97nfzwqia68zw2y5j7i9yzpq5kasvc80n2z999h39";
};
propagatedBuildInputs =
@@ -3879,6 +3879,18 @@ in modules // {
};
};
+ credstash = buildPythonPackage rec {
+ name = "credstash-${version}";
+ version = "1.11.0";
+
+ src = pkgs.fetchurl {
+ url = "https://pypi.python.org/packages/e2/64/6abae87b8da07c262d50b51eed540096ed1f6e01539bf2f2d4c3f718c8c6/credstash-1.11.0.tar.gz";
+ sha256 = "03qm8bjfskzkkmgcy5dr70x9pxabjb3fi0v0nxicg1kryy64k0dz";
+ };
+
+ propagatedBuildInputs = with self; [ pycrypto boto3 docutils ];
+ };
+
cython = buildPythonPackage rec {
name = "Cython-${version}";
version = "0.24";
@@ -4373,6 +4385,10 @@ in modules // {
propagatedBuildInputs = with self; [ pkgs.libffi pycparser ];
buildInputs = with self; [ pytest ];
+ patchPhase = ''
+ substituteInPlace testing/cffi0/test_ownlib.py --replace "gcc" "cc"
+ '';
+
checkPhase = ''
py.test
'';
@@ -4476,11 +4492,11 @@ in modules // {
};
pytest_28 = self.pytest_27.override rec {
- name = "pytest-2.8.6";
+ name = "pytest-2.8.7";
src = pkgs.fetchurl {
url = "mirror://pypi/p/pytest/${name}.tar.gz";
- sha256 = "ed38a3725b8e4478555dfdb549a4219ca3ba57955751141a1aaa45b706d84194";
+ sha256 = "1bwb06g64x2gky8x5hcrfpg6r351xwvafimnhm5qxq7wajz8ck7w";
};
};
@@ -5830,6 +5846,31 @@ in modules // {
propagatedBuildInputs = with self; [ configparser ];
};
+ etcd = buildPythonPackage rec {
+ name = "etcd-${version}";
+ version = "2.0.8";
+
+ # PyPI package is incomplete
+ src = pkgs.fetchurl {
+ url = "https://github.com/dsoprea/PythonEtcdClient/archive/${version}.tar.gz";
+ sha256 = "0fi6rxa1yxvz7nwrc7dw6fax3041d6bj3iyhywjgbkg7nadi9i8v";
+ };
+
+ patchPhase = ''
+ sed -i -e '13,14d;37d' setup.py
+ '';
+
+ propagatedBuildInputs = with self; [ simplejson pytz requests2 ];
+
+ # No proper tests are available
+ doCheck = false;
+
+ meta = {
+ description = "A Python etcd client that just works";
+ homepage = https://github.com/dsoprea/PythonEtcdClient;
+ license = licenses.gpl2;
+ };
+ };
evdev = buildPythonPackage rec {
version = "0.4.7";
@@ -6100,6 +6141,22 @@ in modules // {
propagatedBuildInputs = with self; [ rpkg offtrac urlgrabber fedora_cert ];
});
+ Flootty = buildPythonPackage rec {
+ name = "Flootty-3.2.0";
+
+ src = pkgs.fetchurl {
+ url = "mirror://pypi/F/Flootty/${name}.tar.gz";
+ sha256 = "14n2q2k388xbmp5rda5ss879bg5cbibk4zzz7c8mrjsmxhgagmmg";
+ };
+
+ meta = with pkgs.stdenv.lib; {
+ description = "Floobits collaborative terminal";
+ homepage = "https://github.com/Floobits/flootty/";
+ maintainers = with maintainers; [ garbas ];
+ license = licenses.asl20;
+ };
+ };
+
flowlogs_reader = buildPythonPackage rec {
name = "flowlogs_reader-1.0.0";
@@ -7034,6 +7091,27 @@ in modules // {
};
};
+ jupyterlab = buildPythonPackage rec {
+ name = "jupyterlab-${version}";
+ version = "0.1.1";
+
+ src = pkgs.fetchurl {
+ url = "mirror://pypi/j/jupyterlab/${name}.tar.gz";
+ sha256 = "c1a08f4d1b2bb1bf06db090db30df988a22ffbfa05606e7eb026e364969388da";
+ };
+
+ propagatedBuildInputs = with self; [ notebook ];
+
+ # No tests in archive
+ doCheck = false;
+
+ meta = {
+ description = "Jupyter lab environment notebook server extension.";
+ license = with licenses; [ bsd3 ];
+ homepage = "http://jupyter.org/";
+ };
+ };
+
lti = let
self' = (self.override {self = self';}) // {pytest = self.pytest_27;};
mock_1_0_1 = self'.mock.overrideDerivation (_: rec {
@@ -9316,6 +9394,8 @@ in modules // {
# Only test dependencies
buildInputs = with self; [ pkgs.git gevent geventhttpclient pkgs.glibcLocales mock fastimport ];
+ doCheck = !stdenv.isDarwin;
+
meta = {
description = "Simple Python implementation of the Git file formats and protocols";
homepage = http://samba.org/~jelmer/dulwich/;
@@ -10660,14 +10740,14 @@ in modules // {
glances = buildPythonPackage rec {
name = "glances-${version}";
- version = "2.4.2";
+ version = "2.6.2";
disabled = isPyPy;
src = pkgs.fetchFromGitHub {
owner = "nicolargo";
repo = "glances";
rev = "v${version}";
- sha256 = "1ghx62z63yyf8wv4bcvfxwxs5mc7b4nrcss6lc1i5s0yjvzvyi6h";
+ sha256 = "0gysvx1yai303gb9ks5z3jy1qk7ilnwwy30l7gp3kyfbv2cifbb1";
};
doCheck = false;
@@ -10682,6 +10762,8 @@ in modules // {
meta = {
homepage = "http://nicolargo.github.io/glances/";
description = "Cross-platform curses-based monitoring tool";
+ license = licenses.lgpl2;
+ maintainers = with maintainers; [ koral ];
};
};
@@ -11080,6 +11162,18 @@ in modules // {
};
};
+ hvac = buildPythonPackage rec {
+ name = "hvac-${version}";
+ version = "0.2.15";
+
+ src = pkgs.fetchurl {
+ url = "https://pypi.python.org/packages/11/ba/6101780891b9d55f6174fa78b47d462c8c1f0cde34072b45fc39f7f8a77c/hvac-0.2.15.tar.gz";
+ sha256 = "0qxa4g1ij1bj27mbp8l54lcr7d5krkb2rayisc6shkpf2b51ip4c";
+ };
+
+ propagatedBuildInputs = with self; [ requests2 ];
+ };
+
hypothesis1 = buildPythonPackage rec {
name = "hypothesis-1.14.0";
@@ -11162,12 +11256,12 @@ in modules // {
httpretty = buildPythonPackage rec {
name = "httpretty-${version}";
- version = "0.8.6";
+ version = "0.8.10";
doCheck = false;
src = pkgs.fetchurl {
url = "mirror://pypi/h/httpretty/${name}.tar.gz";
- sha256 = "0f295zj272plr9lhf80kgz19dxkargwv3ar83rwavrcy516mgg9n";
+ sha256 = "1nmdk6d89z14x3wg4yxywlxjdip16zc8bqnfb471z1365mr74jj7";
};
buildInputs = with self; [ tornado requests2 httplib2 sure nose coverage certifi ];
@@ -11755,6 +11849,10 @@ in modules // {
};
};
+ jsonnet = buildPythonPackage {
+ inherit (pkgs.jsonnet) name src;
+ };
+
jupyter_client = buildPythonPackage rec {
version = "4.2.2";
name = "jupyter_client-${version}";
@@ -12372,7 +12470,7 @@ in modules // {
propagatedBuildInputs = with self; [ pkgs.file ];
patchPhase = ''
- substituteInPlace magic.py --replace "ctypes.util.find_library('magic')" "'${pkgs.file}/lib/libmagic.so'"
+ substituteInPlace magic.py --replace "ctypes.util.find_library('magic')" "'${pkgs.file}/lib/libmagic.${if stdenv.isDarwin then "dylib" else "so"}'"
'';
doCheck = false;
@@ -12409,12 +12507,12 @@ in modules // {
m2crypto = buildPythonPackage rec {
- version = "0.23.0";
+ version = "0.24.0";
name = "m2crypto-${version}";
src = pkgs.fetchurl {
url = "mirror://pypi/M/M2Crypto/M2Crypto-${version}.tar.gz";
- sha256 = "1ac3b6eafa5ff7e2a0796675316d7569b28aada45a7ab74042ad089d15a9567f";
+ sha256 = "1s2y0pf2zg7xf4nfwrw7zhwbk615r5a7bgi5wwkwzh6jl50n99c0";
};
buildInputs = with self; [ pkgs.swig2 pkgs.openssl ];
@@ -12970,6 +13068,28 @@ in modules // {
};
};
+ moto = buildPythonPackage rec {
+ version = "0.4.25";
+ name = "moto-${version}";
+ src = pkgs.fetchurl {
+ url = "http://pypi.python.org/packages/df/9e/0b22ac0abf61711c86ae75a0548825e19cc123b522ff3508cbc43924969d/moto-0.4.25.tar.gz";
+ sha256 = "1gqm7h6bm5xkspd07bnjwdr2q6cvpxkayx0hkgk8fhkawbg0fqq7";
+ };
+
+ propagatedBuildInputs = with self; [
+ # Main dependencies
+ jinja2 werkzeug flask requests2 six boto httpretty xmltodict
+ # For tests
+ nose sure boto3 freezegun
+ ];
+
+ checkPhase = "nosetests";
+
+ # TODO: make this true; I think lots of the tests want network access but we can probably run the others
+ doCheck = false;
+ };
+
+
mox = buildPythonPackage rec {
name = "mox-0.5.3";
@@ -16628,7 +16748,6 @@ in modules // {
pgcli = buildPythonPackage rec {
name = "pgcli-${version}";
version = "1.1.0";
- disabled = isPy35;
src = pkgs.fetchFromGitHub {
sha256 = "155avdckg93w3rmx0mz17wi6vcaba3lcppv9qwa6xlxfds9yzvlq";
@@ -16637,6 +16756,11 @@ in modules // {
owner = "dbcli";
};
+ buildInputs = with self; [ pytest mock ];
+ checkPhase = ''
+ py.test tests -k 'not test_missing_rc_dir and not test_quoted_db_uri and not test_port_db_uri'
+ '';
+
propagatedBuildInputs = with self; [
click configobj humanize prompt_toolkit psycopg2
pygments sqlparse pgspecial setproctitle
@@ -16644,6 +16768,7 @@ in modules // {
postPatch = ''
substituteInPlace setup.py --replace "==" ">="
+ rm tests/test_rowlimit.py
'';
meta = {
@@ -16667,6 +16792,12 @@ in modules // {
url = "mirror://pypi/p/pgspecial/${name}.tar.gz";
};
+ buildInputs = with self; [ pytest psycopg2 ];
+
+ checkPhase = ''
+ py.test tests
+ '';
+
propagatedBuildInputs = with self; [ click sqlparse ];
meta = {
@@ -17557,18 +17688,18 @@ in modules // {
};
pygit2 = buildPythonPackage rec {
- name = "pygit2-0.23.1";
+ name = "pygit2-0.24.0";
src = pkgs.fetchurl {
url = "mirror://pypi/p/pygit2/${name}.tar.gz";
- sha256 = "04201vcal7jq8lbpk9ylscrhjxdcf2aihiw25k4imjjqgfmvldf7";
+ sha256 = "01c155ls0h5pvpdkrk8ld6fscshmz4fchcwxrg488dbij1zdjxms";
};
preConfigure = ( if stdenv.isDarwin then ''
export DYLD_LIBRARY_PATH="${pkgs.libgit2}/lib"
'' else "" );
- propagatedBuildInputs = with self; [ pkgs.libgit2 ] ++ optionals (!isPyPy) [ cffi ];
+ propagatedBuildInputs = with self; [ pkgs.libgit2 six ] ++ optionals (!isPyPy) [ cffi ];
preCheck = ''
# disable tests that require networking
@@ -18707,16 +18838,42 @@ in modules // {
};
});
+ pysmi = buildPythonPackage rec {
+ version = "0.0.7";
+ name = "pysmi-${version}";
+
+ src = pkgs.fetchurl {
+ url = "mirror://pypi/p/pysmi/${name}.tar.gz";
+ sha256 = "05h1lv2a687b9qjc399w6728ildx7majbn338a0c4k3gw6wnv7wr";
+ };
+
+ # Tests require pysnmp, which in turn requires pysmi => infinite recursion
+ doCheck = false;
+
+ propagatedBuildInputs = with self; [ ply ];
+
+ meta = {
+ homepage = http://pysmi.sf.net;
+ description = "SNMP SMI/MIB Parser";
+ license = licenses.bsd2;
+ platforms = platforms.all;
+ maintainers = with maintainers; [ koral ];
+ };
+ };
+
pysnmp = buildPythonPackage rec {
- version = "4.2.5";
+ version = "4.3.2";
name = "pysnmp-${version}";
src = pkgs.fetchurl {
url = "mirror://pypi/p/pysnmp/${name}.tar.gz";
- sha256 = "0zq7yx8732ad9dxpxqgpqyixj7kfwbvf402q7l5njkv0kbcnavn4";
+ sha256 = "0xw925f3p02vdpb3f0ls60qj59w44aiyfs3s0nhdr9vsy4fxhavw";
};
- propagatedBuildInputs = with self; [ pyasn1 pycrypto ];
+ # NameError: name 'mibBuilder' is not defined
+ doCheck = false;
+
+ propagatedBuildInputs = with self; [ pyasn1 pycrypto pysmi ];
meta = {
homepage = http://pysnmp.sf.net;
@@ -19360,6 +19517,27 @@ in modules // {
};
};
+ python-etcd = buildPythonPackage rec {
+ name = "python-etcd-${version}";
+ version = "0.4.3";
+
+ src = pkgs.fetchurl {
+ url = "mirror://pypi/p/python-etcd/${name}.tar.gz";
+ sha256 = "cf53262b3890d185fe637eed15fe39c8d7a8261864ddcd7037b22c961456d7fc";
+ };
+
+ buildInputs = with self; [ nose mock pyopenssl ];
+
+ propagatedBuildInputs = with self; [ urllib3 dns];
+
+
+ meta = {
+ description = "A python client for Etcd";
+ homepage = http://github.com/jplana/python-etcd;
+ license = licenses.mit;
+ };
+ };
+
pytz = buildPythonPackage rec {
name = "pytz-${version}";
@@ -20410,14 +20588,19 @@ in modules // {
});
rpy2 = buildPythonPackage rec {
- name = "rpy2-2.5.6";
+ name = "rpy2-2.8.2";
disabled = isPyPy;
src = pkgs.fetchurl {
url = "mirror://pypi/r/rpy2/${name}.tar.gz";
- sha256 = "d0d584c435b5ed376925a95a4525dbe87de7fa9260117e9f208029e0c919ad06";
+ sha256 = "2c1a313df4e64236dcfe1078ce847b8e3c180656c894928d3a4b391aacb9b24c";
};
buildInputs = with pkgs; [ readline R pcre lzma bzip2 zlib icu ];
- propagatedBuildInputs = [ self.singledispatch ];
+ propagatedBuildInputs = with self; [ singledispatch six ];
+
+ # According to manual this is how the testsuite should be invoked
+ checkPhase = ''
+ ${python.interpreter} -m rpy2.tests
+ '';
meta = {
homepage = http://rpy.sourceforge.net/rpy2;
description = "Python interface to R";
@@ -21404,6 +21587,16 @@ in modules // {
};
};
+ timeout-decorator = buildPythonPackage rec {
+ name = "timeout-decorator-${version}";
+ version = "0.3.2";
+
+ src = pkgs.fetchurl {
+ url = "http://pypi.python.org/packages/source/t/timeout-decorator/${name}.tar.gz";
+ sha256 = "1x9l8bwdk72if2d5h5mi4lcaidbsmyh0iz114cfyyj1rzz5rxqaf";
+ };
+ };
+
pid = buildPythonPackage rec {
name = "pid-${version}";
version = "2.0.1";
@@ -21425,6 +21618,21 @@ in modules // {
};
};
+ pychef = buildPythonPackage rec {
+ name = "PyChef-${version}";
+ version = "0.3.0";
+
+ src = pkgs.fetchurl {
+ url = "https://pypi.python.org/packages/f9/31/17cde137e3b8ada4d7c80fd4504264f2abed329a9a8100c3622a044c485e/PyChef-0.3.0.tar.gz";
+ sha256 = "0zdz8lw545cd3a34cpib7mdwnad83gr2mrrxyj3v74h4zhwabhmg";
+ };
+
+ propagatedBuildInputs = with self; [ six requests2 mock unittest2 ];
+
+ # FIXME
+ doCheck = false;
+ };
+
pydns = buildPythonPackage rec {
name = "pydns-2.3.6";
disabled = isPy3k;
@@ -21633,6 +21841,40 @@ in modules // {
};
};
+ secp256k1 = buildPythonPackage rec {
+ name = "secp256k1-${version}";
+ version = "0.12.1";
+
+ src = pkgs.fetchurl {
+ url = "mirror://pypi/s/secp256k1/${name}.tar.gz";
+ sha256 = "0zrjxvzxqm4bz2jcy8sras8jircgbs6dkrw8j3nc6jhvzlikwwxl";
+ };
+
+ buildInputs = [ pkgs.pkgconfig self.pytest_28 self.pytestrunner ];
+ propagatedBuildInputs = [ self.cffi pkgs.secp256k1 ];
+
+ # Tests are not included in archive
+ doCheck = false;
+
+ preConfigure = ''
+ cp -r ${pkgs.secp256k1.src} libsecp256k1
+ touch libsecp256k1/autogen.sh
+ export INCLUDE_DIR=${pkgs.secp256k1}/include
+ export LIB_DIR=${pkgs.secp256k1}/lib
+ '';
+
+ checkPhase = ''
+ py.test tests
+ '';
+
+ meta = {
+ homepage = https://github.com/ludbb/secp256k1-py;
+ description = "Python FFI bindings for secp256k1";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ chris-martin ];
+ };
+ };
+
semantic-version = buildPythonPackage rec {
name = "semantic_version-2.4.2";
src = pkgs.fetchurl {
@@ -22163,6 +22405,14 @@ in modules // {
sha256 = "1s2fvaxgh9kqzrd6iwy5h7i61ckn05plx9np13zby93z3hdbx5nq";
};
+ buildInputs = with self; [ pytest ];
+ checkPhase = ''
+ py.test
+ '';
+
+ # Package supports 3.x, but tests are clearly 2.x only.
+ doCheck = !isPy3k;
+
meta = {
description = "Non-validating SQL parser for Python";
longDescription = ''
@@ -26925,6 +27175,9 @@ in modules // {
LC_ALL="en_US.UTF-8";
+ # No tests available
+ doCheck = false;
+
meta = {
description = "Copy your docs directly to the gh-pages branch";
homepage = "http://github.com/davisp/ghp-import";
diff --git a/pkgs/top-level/release-cross.nix b/pkgs/top-level/release-cross.nix
index ced90c0489c..f670eaea98a 100644
--- a/pkgs/top-level/release-cross.nix
+++ b/pkgs/top-level/release-cross.nix
@@ -9,13 +9,6 @@ let
busybox.crossDrv = nativePlatforms;
coreutils.crossDrv = nativePlatforms;
dropbear.crossDrv = nativePlatforms;
- tigervnc.crossDrv = nativePlatforms;
- wxGTK.crossDrv = nativePlatforms;
- #firefox = nativePlatforms;
- xorg = {
- #xorgserver.crossDrv = nativePlatforms;
- };
- nixUnstable.crossDrv = nativePlatforms;
};
/* Basic list of packages to be natively built,
@@ -50,95 +43,6 @@ in {
});
}) // (
-/* Test some cross builds to the Sheevaplug - uclibc*/
-let
- crossSystem = {
- config = "armv5tel-unknown-linux-gnueabi";
- bigEndian = false;
- arch = "arm";
- float = "soft";
- withTLS = true;
- platform = pkgs.platforms.sheevaplug;
- libc = "uclibc";
- openssl.system = "linux-generic32";
- uclibc.extraConfig = ''
- CONFIG_ARM_OABI n
- CONFIG_ARM_EABI y
- ARCH_BIG_ENDIAN n
- ARCH_WANTS_BIG_ENDIAN n
- ARCH_WANTS_LITTLE_ENDIAN y
- LINUXTHREADS_OLD y
- '';
- };
-
-in {
- crossSheevaplugLinuxUclibc = mapTestOnCross crossSystem (
- basic //
- {
- ubootSheevaplug.crossDrv = nativePlatforms;
- });
-}) // (
-
-/* Test some cross builds to the mipsel */
-let
- crossSystem = {
- config = "mipsel-unknown-linux";
- bigEndian = false;
- arch = "mips";
- float = "soft";
- withTLS = true;
- libc = "uclibc";
- platform = {
- name = "malta";
- kernelMajor = "2.4";
- kernelBaseConfig = "defconfig-malta";
- kernelHeadersBaseConfig = "defconfig-malta";
- uboot = null;
- kernelArch = "mips";
- kernelAutoModules = false;
- kernelTarget = "vmlinux";
- };
- openssl.system = "linux-generic32";
- uclibc.extraConfig = ''
- ARCH_BIG_ENDIAN n
- ARCH_WANTS_BIG_ENDIAN n
- ARCH_WANTS_LITTLE_ENDIAN y
- LINUXTHREADS_OLD y
-
- # Without this, it does not build for linux 2.4
- UCLIBC_SUSV4_LEGACY y
- '';
- };
-in {
- crossMipselLinux24 = mapTestOnCross crossSystem basic;
-}) // (
-
-/* Test some cross builds to the ultrasparc */
-let
- crossSystem = {
- config = "sparc64-unknown-linux";
- bigEndian = true;
- arch = "sparc64";
- float = "hard";
- withTLS = true;
- libc = "glibc";
- platform = {
- name = "ultrasparc";
- kernelMajor = "2.6";
- kernelHeadersBaseConfig = "sparc64_defconfig";
- kernelBaseConfig = "sparc64_defconfig";
- kernelArch = "sparc";
- kernelAutoModules = false;
- kernelTarget = "zImage";
- uboot = null;
- };
- openssl.system = "linux64-sparcv9";
- gcc.cpu = "ultrasparc";
- };
-in {
- crossUltraSparcLinux = mapTestOnCross crossSystem basic;
-}) // (
-
/* Test some cross builds on 32 bit mingw-w64 */
let
crossSystem = {
@@ -182,52 +86,6 @@ in {
};
}) // (
-/* GNU aka. GNU/Hurd. */
-let
- crossSystem = {
- config = "i586-pc-gnu";
- bigEndian = false;
- arch = "i586";
- float = "hard";
- withTLS = true;
- platform = pkgs.platforms.pc32;
- libc = "glibc";
- openssl.system = "hurd-x86"; # Nix depends on OpenSSL.
- };
-in {
- crossGNU = mapTestOnCross crossSystem {
- gnu.hurdCross = nativePlatforms;
- gnu.mach.crossDrv = nativePlatforms;
- gnu.mig = nativePlatforms;
- gnu.smbfs.crossDrv = nativePlatforms;
-
- coreutils.crossDrv = nativePlatforms;
- ed.crossDrv = nativePlatforms;
- grub2.crossDrv = nativePlatforms;
- inetutils.crossDrv = nativePlatforms;
- boehmgc.crossDrv = nativePlatforms;
- findutils.crossDrv = nativePlatforms;
- gcc.crossDrv = nativePlatforms;
- gcc46.crossDrv = nativePlatforms;
- gdb.crossDrv = nativePlatforms;
- gmp.crossDrv = nativePlatforms;
- gnugrep.crossDrv = nativePlatforms;
- gnumake.crossDrv = nativePlatforms;
- gnused.crossDrv = nativePlatforms;
- guile_1_8.crossDrv = nativePlatforms;
- guile.crossDrv = nativePlatforms;
- libffi.crossDrv = nativePlatforms;
- libtool.crossDrv = nativePlatforms;
- libunistring.crossDrv = nativePlatforms;
- lsh.crossDrv = nativePlatforms;
- nixUnstable.crossDrv = nativePlatforms;
- openssl.crossDrv = nativePlatforms; # dependency of Nix
- patch.crossDrv = nativePlatforms;
- samba_light.crossDrv = nativePlatforms; # needed for `runInGenericVM'
- zile.crossDrv = nativePlatforms;
- };
-}) // (
-
/* Linux on the fuloong */
let
crossSystem = {
@@ -258,83 +116,10 @@ in {
coreutils.crossDrv = nativePlatforms;
ed.crossDrv = nativePlatforms;
- grub2.crossDrv = nativePlatforms;
- inetutils.crossDrv = nativePlatforms;
- nixUnstable.crossDrv = nativePlatforms;
patch.crossDrv = nativePlatforms;
- zile.crossDrv = nativePlatforms;
};
}) // (
-/* Linux on the Ben Nanonote */
-let
- crossSystem = {
- config = "mipsel-unknown-linux";
- bigEndian = false;
- arch = "mips";
- float = "soft";
- withTLS = true;
- libc = "glibc";
- platform = {
- name = "ben_nanonote";
- kernelMajor = "2.6";
- kernelBaseConfig = "qi_lb60_defconfig";
- kernelHeadersBaseConfig = "malta_defconfig";
- uboot = "nanonote";
- kernelArch = "mips";
- kernelAutoModules = false;
- kernelTarget = "vmlinux.bin";
- kernelExtraConfig = ''
- SOUND y
- SND y
- SND_MIPS y
- SND_SOC y
- SND_JZ4740_SOC y
- SND_JZ4740_SOC_QI_LB60 y
- FUSE_FS m
- MIPS_FPU_EMU y
- '';
- };
- openssl.system = "linux-generic32";
- perl.arch = "mipsel-unknown";
- uclibc.extraConfig = ''
- CONFIG_MIPS_ISA_1 n
- CONFIG_MIPS_ISA_MIPS32 y
- CONFIG_MIPS_N32_ABI n
- CONFIG_MIPS_O32_ABI y
- ARCH_BIG_ENDIAN n
- ARCH_WANTS_BIG_ENDIAN n
- ARCH_WANTS_LITTLE_ENDIAN y
- LINUXTHREADS_OLD y
- '';
- gcc = {
- abi = "32";
- arch = "mips32";
- };
- mpg123.cpu = "generic_nofpu";
- };
-in {
- nanonote = mapTestOnCross crossSystem {
-
- coreutils.crossDrv = nativePlatforms;
- ed.crossDrv = nativePlatforms;
- inetutils.crossDrv = nativePlatforms;
- nixUnstable.crossDrv = nativePlatforms;
- patch.crossDrv = nativePlatforms;
- zile.crossDrv = nativePlatforms;
- prboom.crossDrv = nativePlatforms;
- vim.crossDrv = nativePlatforms;
- lynx.crossDrv = nativePlatforms;
- patchelf.crossDrv = nativePlatforms;
- nix.crossDrv = nativePlatforms;
- fossil.crossDrv = nativePlatforms;
- binutils.crossDrv = nativePlatforms;
- mpg123.crossDrv = nativePlatforms;
- yacas.crossDrv = nativePlatforms;
- };
-}) // (
-
-
/* Linux on Raspberrypi */
let
crossSystem = {
@@ -358,23 +143,22 @@ in {
rpi = mapTestOnCross crossSystem {
coreutils.crossDrv = nativePlatforms;
ed.crossDrv = nativePlatforms;
- inetutils.crossDrv = nativePlatforms;
- nixUnstable.crossDrv = nativePlatforms;
patch.crossDrv = nativePlatforms;
vim.crossDrv = nativePlatforms;
- tmux.crossDrv = nativePlatforms;
- screen.crossDrv = nativePlatforms;
- unrar.crossDrv = nativePlatforms;
unzip.crossDrv = nativePlatforms;
- hdparm.crossDrv = nativePlatforms;
ddrescue.crossDrv = nativePlatforms;
- git.crossDrv = nativePlatforms;
lynx.crossDrv = nativePlatforms;
patchelf.crossDrv = nativePlatforms;
- nix.crossDrv = nativePlatforms;
- fossil.crossDrv = nativePlatforms;
binutils.crossDrv = nativePlatforms;
mpg123.crossDrv = nativePlatforms;
- yacas.crossDrv = nativePlatforms;
};
+}) // (
+
+/* Cross-built bootstrap tools for every supported platform */
+let
+ tools = import ../stdenv/linux/make-bootstrap-tools-cross.nix { system = "x86_64-linux"; };
+ maintainers = [ pkgs.lib.maintainers.dezgeg ];
+ mkBootstrapToolsJob = bt: hydraJob' (pkgs.lib.addMetaAttrs { inherit maintainers; } bt.dist);
+in {
+ bootstrapTools = pkgs.lib.mapAttrs (name: mkBootstrapToolsJob) tools;
})
diff --git a/pkgs/top-level/rust-packages.nix b/pkgs/top-level/rust-packages.nix
index b4108957b8e..fb16530542a 100644
--- a/pkgs/top-level/rust-packages.nix
+++ b/pkgs/top-level/rust-packages.nix
@@ -7,15 +7,16 @@
{ runCommand, fetchFromGitHub, git }:
let
- version = "2016-06-26";
- rev = "eb6b06424a5cdc5dd0f41f06cda69714b3a0577b";
+ version = "2016-07-13";
+ rev = "8c0d367a18349078cc33df1eed7394fbaa2d602e";
+ sha256 = "1r59qvzrr1rmjbq8al0qwkc65nd3n512i4pgn9688192d68cjnl8";
src = fetchFromGitHub {
inherit rev;
+ inherit sha256;
owner = "rust-lang";
repo = "crates.io-index";
- sha256 = "0iyqyyd5070whfgsg74bqk0f6rk7d2r4spb2ih9jy594ds2qinv4";
};
in