Merge remote-tracking branch 'upstream/master' into hardened-stdenv
This commit is contained in:
@@ -14,12 +14,12 @@ build daemon as so-called channels. To get channel information via git, add
|
||||
```
|
||||
|
||||
For stability and maximum binary package support, it is recommended to maintain
|
||||
custom changes on top of one of the channels, e.g. `nixos-15.09` for the latest
|
||||
custom changes on top of one of the channels, e.g. `nixos-16.03` for the latest
|
||||
release and `nixos-unstable` for the latest successful build of master:
|
||||
|
||||
```
|
||||
% git remote update channels
|
||||
% git rebase channels/nixos-15.09
|
||||
% git rebase channels/nixos-16.03
|
||||
```
|
||||
|
||||
For pull-requests, please rebase onto nixpkgs `master`.
|
||||
@@ -33,9 +33,9 @@ For pull-requests, please rebase onto nixpkgs `master`.
|
||||
* [Manual (NixOS)](https://nixos.org/nixos/manual/)
|
||||
* [Nix Wiki](https://nixos.org/wiki/)
|
||||
* [Continuous package builds for unstable/master](https://hydra.nixos.org/jobset/nixos/trunk-combined)
|
||||
* [Continuous package builds for 15.09 release](https://hydra.nixos.org/jobset/nixos/release-15.09)
|
||||
* [Continuous package builds for 16.03 release](https://hydra.nixos.org/jobset/nixos/release-16.03)
|
||||
* [Tests for unstable/master](https://hydra.nixos.org/job/nixos/trunk-combined/tested#tabs-constituents)
|
||||
* [Tests for 15.09 release](https://hydra.nixos.org/job/nixos/release-15.09/tested#tabs-constituents)
|
||||
* [Tests for 16.03 release](https://hydra.nixos.org/job/nixos/release-16.03/tested#tabs-constituents)
|
||||
|
||||
Communication:
|
||||
|
||||
|
||||
+21
-16
@@ -6,13 +6,14 @@ date: 2015-11-25
|
||||
|
||||
# Introduction
|
||||
|
||||
The Nix Packages collection (Nixpkgs) is a set of over 30,000 packages for the
|
||||
[Nix package manager](http://nixos.org/nix/), released under a [permissive MIT/X11 license](https://github.com/NixOS/nixpkgs/blob/master/COPYING).
|
||||
Packages are available for several architectures, and can be used with the Nix package manager
|
||||
on most GNU/Linux distributions as well as NixOS.
|
||||
The Nix Packages collection (Nixpkgs) is a set of thousands of packages for the
|
||||
[Nix package manager](http://nixos.org/nix/), released under a
|
||||
[permissive MIT/X11 license](https://github.com/NixOS/nixpkgs/blob/master/COPYING).
|
||||
Packages are available for several platforms, and can be used with the Nix
|
||||
package manager on most GNU/Linux distributions as well as NixOS.
|
||||
|
||||
This manual describes how to write packages for the Nix Packages collection
|
||||
(Nixpkgs). Thus it’s for packagers and developers who want to add packages to
|
||||
This manual primarily describes how to write packages for the Nix Packages collection
|
||||
(Nixpkgs). Thus it’s mainly for packagers and developers who want to add packages to
|
||||
Nixpkgs. If you like to learn more about the Nix package manager and the Nix
|
||||
expression language, then you are kindly referred to the [Nix manual](http://nixos.org/nix/manual/).
|
||||
|
||||
@@ -20,29 +21,33 @@ expression language, then you are kindly referred to the [Nix manual](http://nix
|
||||
|
||||
Nix expressions describe how to build packages from source and are collected in
|
||||
the [nixpkgs repository](https://github.com/NixOS/nixpkgs). Also included in the
|
||||
collection are Nix expressions for [NixOS modules](http://nixos.org/nixos/manual/index.html#sec-writing-modules). With
|
||||
these expressions the Nix package manager can build binary packages.
|
||||
collection are Nix expressions for
|
||||
[NixOS modules](http://nixos.org/nixos/manual/index.html#sec-writing-modules).
|
||||
With these expressions the Nix package manager can build binary packages.
|
||||
|
||||
Packages, including the Nix packages collection, are distributed through
|
||||
[channels](http://nixos.org/nix/manual/#sec-channels). The collection is
|
||||
distributed for users of Nix on non-NixOS distributions through the channel
|
||||
`nixpkgs`. Users of NixOS generally use one of the `nixos-*` channels, e.g.
|
||||
`nixos-15.09`, which includes all packages and modules for the stable NixOS
|
||||
15.09. The channels of the stable NixOS releases are generally only given
|
||||
`nixos-16.03`, which includes all packages and modules for the stable NixOS
|
||||
16.03. The purpose of stable NixOS releases are generally only given
|
||||
security updates. More up to date packages and modules are available via the
|
||||
`nixos-unstable` channel.
|
||||
|
||||
Both `nixos-unstable` and `nixpkgs` follow the `master` branch of the Nixpkgs
|
||||
repository, although both do lag the `master` branch by generally [a couple of days](http://howoldis.herokuapp.com/). Updates to a channel are distributed as
|
||||
soon as all tests for that channel pass, e.g. [this table](http://hydra.nixos.org/job/nixpkgs/trunk/unstable#tabs-constituents)
|
||||
repository, although both do lag the `master` branch by generally
|
||||
[a couple of days](http://howoldis.herokuapp.com/). Updates to a channel are
|
||||
distributed as soon as all tests for that channel pass, e.g.
|
||||
[this table](http://hydra.nixos.org/job/nixpkgs/trunk/unstable#tabs-constituents)
|
||||
shows the status of tests for the `nixpkgs` channel.
|
||||
|
||||
The tests are conducted by a cluster called [Hydra](http://nixos.org/hydra/),
|
||||
which also builds binary packages from the Nix expressions in Nixpkgs. As soon
|
||||
as a channel is updated, the binaries are made available via a [binary cache](https://cache.nixos.org). Until the channel updates, binaries that have
|
||||
already been built, are available via [Hydra's binary cache](https://hydra.nixos.org).
|
||||
which also builds binary packages from the Nix expressions in Nixpkgs for
|
||||
`x86_64-linux`, `i686-linux` and `x86_64-darwin`.
|
||||
The binaries are made available via a [binary cache](https://cache.nixos.org).
|
||||
|
||||
The current Nix expressions of the channels are available in the
|
||||
[`nixpkgs-channels`](https://github.com/NixOS/nixpkgs-channels) repository,
|
||||
which has branches corresponding to the available channels. There is also the
|
||||
Nixpkgs Monitor which keeps track of updates and security vulnerabilities.
|
||||
[Nixpkgs Monitor](http://monitor.nixos.org) which keeps track of updates
|
||||
and security vulnerabilities.
|
||||
|
||||
@@ -186,6 +186,7 @@
|
||||
ktosiek = "Tomasz Kontusz <tomasz.kontusz@gmail.com>";
|
||||
lassulus = "Lassulus <lassulus@gmail.com>";
|
||||
layus = "Guillaume Maudoux <layus.on@gmail.com>";
|
||||
ldesgoui = "Lucas Desgouilles <ldesgoui@gmail.com>";
|
||||
lebastr = "Alexander Lebedev <lebastr@gmail.com>";
|
||||
leenaars = "Michiel Leenaars <ml.software@leenaa.rs>";
|
||||
leonardoce = "Leonardo Cecchi <leonardo.cecchi@gmail.com>";
|
||||
|
||||
@@ -8,14 +8,15 @@ echo "keeping state in $stateDir"
|
||||
mkdir -p $stateDir
|
||||
|
||||
version=$(nix-instantiate --eval --strict '<nixpkgs>' -A lib.nixpkgsVersion | sed s/'"'//g)
|
||||
echo "NixOS version is $version"
|
||||
major=${version:0:5}
|
||||
echo "NixOS version is $version ($major)"
|
||||
|
||||
rm -f ec2-amis.nix
|
||||
|
||||
|
||||
for type in hvm pv; do
|
||||
link=$stateDir/$type
|
||||
imageFile=$link/nixos.img
|
||||
imageFile=$link/nixos.qcow2
|
||||
system=x86_64-linux
|
||||
arch=x86_64
|
||||
|
||||
@@ -61,12 +62,19 @@ for type in hvm pv; do
|
||||
# Bundle the image.
|
||||
imageDir=$stateDir/$type-bundled
|
||||
|
||||
# Convert the image to raw format.
|
||||
rawFile=$stateDir/$type.raw
|
||||
if ! [ -e $rawFile ]; then
|
||||
qemu-img convert -f qcow2 -O raw $imageFile $rawFile.tmp
|
||||
mv $rawFile.tmp $rawFile
|
||||
fi
|
||||
|
||||
if ! [ -d $imageDir ]; then
|
||||
rm -rf $imageDir.tmp
|
||||
mkdir -p $imageDir.tmp
|
||||
ec2-bundle-image \
|
||||
-d $imageDir.tmp \
|
||||
-i $imageFile --arch $arch \
|
||||
-i $rawFile --arch $arch \
|
||||
--user "$AWS_ACCOUNT" -c "$EC2_CERT" -k "$EC2_PRIVATE_KEY"
|
||||
mv $imageDir.tmp $imageDir
|
||||
fi
|
||||
@@ -75,14 +83,14 @@ for type in hvm pv; do
|
||||
if ! [ -e $imageDir/uploaded ]; then
|
||||
echo "uploading bundle to S3..."
|
||||
ec2-upload-bundle \
|
||||
-m $imageDir/nixos.img.manifest.xml \
|
||||
-m $imageDir/$type.raw.manifest.xml \
|
||||
-b "$bucket/$bucketDir" \
|
||||
-a "$EC2_ACCESS_KEY" -s "$EC2_SECRET_KEY" \
|
||||
--location EU
|
||||
touch $imageDir/uploaded
|
||||
fi
|
||||
|
||||
extraFlags="$bucket/$bucketDir/nixos.img.manifest.xml"
|
||||
extraFlags="$bucket/$bucketDir/$type.raw.manifest.xml"
|
||||
|
||||
else
|
||||
|
||||
@@ -90,7 +98,7 @@ for type in hvm pv; do
|
||||
# to upload a huge raw image.
|
||||
vhdFile=$stateDir/$type.vhd
|
||||
if ! [ -e $vhdFile ]; then
|
||||
qemu-img convert -O vpc $imageFile $vhdFile.tmp
|
||||
qemu-img convert -f qcow2 -O vpc $imageFile $vhdFile.tmp
|
||||
mv $vhdFile.tmp $vhdFile
|
||||
fi
|
||||
|
||||
@@ -209,7 +217,7 @@ for type in hvm pv; do
|
||||
prevRegion="$region"
|
||||
fi
|
||||
|
||||
echo " \"15.09\".$region.$type-$store = \"$ami\";" >> ec2-amis.nix
|
||||
echo " \"$major\".$region.$type-$store = \"$ami\";" >> ec2-amis.nix
|
||||
done
|
||||
|
||||
done
|
||||
|
||||
@@ -685,6 +685,7 @@ in
|
||||
|
||||
serviceConfig.ExecStart = "@${httpd}/bin/httpd httpd -f ${httpdConf}";
|
||||
serviceConfig.ExecStop = "${httpd}/bin/httpd -f ${httpdConf} -k graceful-stop";
|
||||
serviceConfig.ExecReload = "${httpd}/bin/httpd -f ${httpdConf} -k graceful";
|
||||
serviceConfig.Type = "forking";
|
||||
serviceConfig.PIDFile = "${mainCfg.stateDir}/httpd.pid";
|
||||
serviceConfig.Restart = "always";
|
||||
|
||||
@@ -5,14 +5,19 @@ with lib;
|
||||
let
|
||||
|
||||
# Build a Subversion instance with Apache modules and Swig/Python bindings.
|
||||
subversion = pkgs.subversion.override (origArgs: {
|
||||
subversion = pkgs.subversion.override {
|
||||
bdbSupport = true;
|
||||
httpServer = true;
|
||||
pythonBindings = true;
|
||||
});
|
||||
apacheHttpd = httpd;
|
||||
};
|
||||
|
||||
pythonLib = p: "${p}/";
|
||||
|
||||
httpd = serverInfo.serverConfig.package;
|
||||
|
||||
versionPre24 = versionOlder httpd.version "2.4";
|
||||
|
||||
in
|
||||
|
||||
{
|
||||
@@ -82,7 +87,7 @@ in
|
||||
AuthName "${config.ldapAuthentication.name}"
|
||||
AuthBasicProvider "ldap"
|
||||
AuthLDAPURL "${config.ldapAuthentication.url}"
|
||||
authzldapauthoritative Off
|
||||
${if versionPre24 then "authzldapauthoritative Off" else ""}
|
||||
require valid-user
|
||||
</LocationMatch>
|
||||
'' else ""}
|
||||
|
||||
@@ -183,7 +183,10 @@ in
|
||||
services.upower.enable = config.powerManagement.enable;
|
||||
|
||||
# Extra UDEV rules used by Solid
|
||||
services.udev.packages = [ pkgs.media-player-info ];
|
||||
services.udev.packages = [
|
||||
pkgs.libmtp
|
||||
pkgs.media-player-info
|
||||
];
|
||||
|
||||
services.xserver.displayManager.sddm = {
|
||||
theme = "breeze";
|
||||
|
||||
@@ -434,11 +434,8 @@ udevadm control --exit
|
||||
|
||||
# Reset the logging file descriptors.
|
||||
# Do this just before pkill, which will kill the tee process.
|
||||
if test -n "@logCommands@"
|
||||
then
|
||||
exec 1>&$logOutFd 2>&$logErrFd
|
||||
eval "exec $logOutFd>&- $logErrFd>&-"
|
||||
fi
|
||||
exec 1>&$logOutFd 2>&$logErrFd
|
||||
eval "exec $logOutFd>&- $logErrFd>&-"
|
||||
|
||||
# Kill any remaining processes, just to be sure we're not taking any
|
||||
# with us into stage 2. But keep storage daemons like unionfs-fuse.
|
||||
|
||||
@@ -89,4 +89,41 @@
|
||||
"15.09".us-west-2.hvm-s3 = "ami-2956b849";
|
||||
"15.09".us-west-2.pv-ebs = "ami-005fb160";
|
||||
"15.09".us-west-2.pv-s3 = "ami-cd55bbad";
|
||||
|
||||
"16.03".ap-northeast-1.hvm-ebs = "ami-885040e6";
|
||||
"16.03".ap-northeast-1.hvm-s3 = "ami-d15a4abf";
|
||||
"16.03".ap-northeast-1.pv-ebs = "ami-7f455511";
|
||||
"16.03".ap-northeast-1.pv-s3 = "ami-6d7d6d03";
|
||||
"16.03".ap-southeast-1.hvm-ebs = "ami-478a5f24";
|
||||
"16.03".ap-southeast-1.hvm-s3 = "ami-b2885dd1";
|
||||
"16.03".ap-southeast-1.pv-ebs = "ami-55b46136";
|
||||
"16.03".ap-southeast-1.pv-s3 = "ami-92b762f1";
|
||||
"16.03".ap-southeast-2.hvm-ebs = "ami-26b09345";
|
||||
"16.03".ap-southeast-2.hvm-s3 = "ami-52ac8f31";
|
||||
"16.03".ap-southeast-2.pv-ebs = "ami-1fb3907c";
|
||||
"16.03".ap-southeast-2.pv-s3 = "ami-49b1922a";
|
||||
"16.03".eu-central-1.hvm-ebs = "ami-2bd63744";
|
||||
"16.03".eu-central-1.hvm-s3 = "ami-82d435ed";
|
||||
"16.03".eu-central-1.pv-ebs = "ami-b729c8d8";
|
||||
"16.03".eu-central-1.pv-s3 = "ami-a12dccce";
|
||||
"16.03".eu-west-1.hvm-ebs = "ami-87c242f4";
|
||||
"16.03".eu-west-1.hvm-s3 = "ami-b6c343c5";
|
||||
"16.03".eu-west-1.pv-ebs = "ami-6bc94918";
|
||||
"16.03".eu-west-1.pv-s3 = "ami-00cb4b73";
|
||||
"16.03".sa-east-1.hvm-ebs = "ami-845cd3e8";
|
||||
"16.03".sa-east-1.hvm-s3 = "ami-8142cded";
|
||||
"16.03".sa-east-1.pv-ebs = "ami-1643cc7a";
|
||||
"16.03".sa-east-1.pv-s3 = "ami-1646c97a";
|
||||
"16.03".us-east-1.hvm-ebs = "ami-2cc4d046";
|
||||
"16.03".us-east-1.hvm-s3 = "ami-9bc9ddf1";
|
||||
"16.03".us-east-1.pv-ebs = "ami-7df4e017";
|
||||
"16.03".us-east-1.pv-s3 = "ami-90f2e6fa";
|
||||
"16.03".us-west-1.hvm-ebs = "ami-d8116db8";
|
||||
"16.03".us-west-1.hvm-s3 = "ami-a7166ac7";
|
||||
"16.03".us-west-1.pv-ebs = "ami-e90c7089";
|
||||
"16.03".us-west-1.pv-s3 = "ami-5b0c703b";
|
||||
"16.03".us-west-2.hvm-ebs = "ami-b339ccd3";
|
||||
"16.03".us-west-2.hvm-s3 = "ami-2c3bce4c";
|
||||
"16.03".us-west-2.pv-ebs = "ami-0625d066";
|
||||
"16.03".us-west-2.pv-s3 = "ami-7414e114";
|
||||
}
|
||||
|
||||
@@ -3,12 +3,12 @@
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.9.9";
|
||||
version = "0.9.10";
|
||||
name = "drumgizmo-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.drumgizmo.org/releases/${name}/${name}.tar.gz";
|
||||
sha256 = "03dnh2p4s6n107n0r86h9j1jwy85a8qwjkh0288k60qpdqy1c7vp";
|
||||
sha256 = "142si734lsyywxhn7msiz053ir96kl5im3h1jql3vhcb4807f3d1";
|
||||
};
|
||||
|
||||
configureFlags = [ "--enable-lv2" ];
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
{ stdenv, fetchurl, alsaLib, libjack2, fftwFloat, libclthreads, libclxclient, libX11, libXft, zita-alsa-pcmi, }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.8.4";
|
||||
name = "japa-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://kokkinizita.linuxaudio.org/linuxaudio/downloads/${name}.tar.bz2";
|
||||
sha256 = "1jhj7s4vqk5c4lchdall0kslvj5sh91902hhfjvs6r3a5nrhwcp0";
|
||||
};
|
||||
|
||||
buildInputs = [ alsaLib libjack2 fftwFloat libclthreads libclxclient libX11 libXft zita-alsa-pcmi ];
|
||||
|
||||
preConfigure = ''
|
||||
cd ./source/
|
||||
'';
|
||||
|
||||
makeFlags = [
|
||||
"PREFIX=$(out)"
|
||||
"SUFFIX=''"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "A 'perceptual' or 'psychoacoustic' audio spectrum analyser for JACK and ALSA";
|
||||
homepage = http://kokkinizita.linuxaudio.org/linuxaudio/index.html;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
maintainers = [ stdenv.lib.maintainers.magnetophon ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{ fetchurl, stdenv, pkgconfig, libpulseaudio, gtkmm, libglademm
|
||||
, dbus_glib, gconfmm, intltool }:
|
||||
, dbus_glib, GConf, gconfmm, intltool }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "paprefs-0.9.10";
|
||||
@@ -13,6 +13,8 @@ stdenv.mkDerivation rec {
|
||||
|
||||
nativeBuildInputs = [ pkgconfig intltool ];
|
||||
|
||||
propagatedUserEnvPkgs = [ GConf ];
|
||||
|
||||
configureFlags = [ "--disable-lynx" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
||||
@@ -359,11 +359,11 @@ rec {
|
||||
|
||||
scala = buildEclipseUpdateSite rec {
|
||||
name = "scala-${version}";
|
||||
version = "4.3.0.201512011535";
|
||||
version = "4.4.0.201604010956";
|
||||
|
||||
src = fetchzip {
|
||||
url = "http://download.scala-ide.org/sdk/lithium/e44/scala211/stable/update-site.zip";
|
||||
sha256 = "1j0qw4frkvvmyl64wdbznglgjjr9sfg8wb9npar0x7qv1hj4hw3x";
|
||||
sha256 = "1yypzcf2iwlcj43vd6h9n4y2ka1gxjf5vm3yx87bgfbzbchzckz7";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{ stdenv, fetchgit, ncurses, xlibsWrapper, libXaw, libXpm, Xaw3d
|
||||
{ stdenv, lib, fetchurl, ncurses, xlibsWrapper, libXaw, libXpm, Xaw3d
|
||||
, pkgconfig, gettext, libXft, dbus, libpng, libjpeg, libungif
|
||||
, libtiff, librsvg, texinfo, gconf, libxml2, imagemagick, gnutls
|
||||
, alsaLib, cairo, acl, gpm, AppKit, Foundation, libobjc
|
||||
, alsaLib, cairo, acl, gpm, AppKit, CoreWLAN, Kerberos, GSS, ImageIO
|
||||
, autoconf, automake
|
||||
, withX ? !stdenv.isDarwin
|
||||
, withGTK3 ? false, gtk3 ? null
|
||||
@@ -23,17 +23,16 @@ let
|
||||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "emacs-25.0.50-1b5630e";
|
||||
name = "emacs-25.0.92";
|
||||
|
||||
builder = ./builder.sh;
|
||||
|
||||
src = fetchgit {
|
||||
url = "git://git.savannah.gnu.org/emacs.git";
|
||||
rev = "1b5630eb47d3f4bade09708c958ab006b83b3fc0";
|
||||
sha256 = "0n3qbri84akmy7ad1pbv89j4jn4x9pnkz0p4nbhh6m1c37cbz58l";
|
||||
src = fetchurl {
|
||||
url = "ftp://alpha.gnu.org/gnu/emacs/pretest/emacs-25.0.92.tar.xz";
|
||||
sha256 = "13jnj1js2l90k4yk219r3z67fff90r6mniprsp0sgip2kaak75y2";
|
||||
};
|
||||
|
||||
patches = stdenv.lib.optionals stdenv.isDarwin [
|
||||
patches = lib.optionals stdenv.isDarwin [
|
||||
./at-fdcwd.patch
|
||||
];
|
||||
|
||||
@@ -52,11 +51,7 @@ stdenv.mkDerivation rec {
|
||||
++ stdenv.lib.optional (withX && withGTK3) gtk3
|
||||
++ stdenv.lib.optional (stdenv.isDarwin && withX) cairo;
|
||||
|
||||
propagatedBuildInputs = stdenv.lib.optionals stdenv.isDarwin [ AppKit Foundation libobjc
|
||||
];
|
||||
|
||||
NIX_LDFLAGS = stdenv.lib.optional stdenv.isDarwin
|
||||
"/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation";
|
||||
propagatedBuildInputs = stdenv.lib.optionals stdenv.isDarwin [ AppKit GSS ImageIO ];
|
||||
|
||||
configureFlags =
|
||||
if stdenv.isDarwin
|
||||
@@ -81,18 +76,16 @@ stdenv.mkDerivation rec {
|
||||
mv nextstep/Emacs.app $out/Applications
|
||||
'';
|
||||
|
||||
doCheck = !stdenv.isDarwin;
|
||||
# https://github.com/NixOS/nixpkgs/issues/13573
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "GNU Emacs 25 (pre), the extensible, customizable text editor";
|
||||
homepage = http://www.gnu.org/software/emacs/;
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ chaoflow lovek323 simons the-kenny ];
|
||||
maintainers = with maintainers; [ chaoflow lovek323 simons the-kenny jwiegley ];
|
||||
platforms = platforms.all;
|
||||
|
||||
# So that Exuberant ctags is preferred
|
||||
priority = 1;
|
||||
|
||||
longDescription = ''
|
||||
GNU Emacs is an extensible, customizable text editor—and more. At its
|
||||
core is an interpreter for Emacs Lisp, a dialect of the Lisp
|
||||
|
||||
@@ -75,8 +75,10 @@ let
|
||||
glib
|
||||
libtermkey
|
||||
libuv
|
||||
luajit
|
||||
# For some reason, `luajit` has to be listed after `lua`. See
|
||||
# https://github.com/NixOS/nixpkgs/issues/14442
|
||||
lua
|
||||
luajit
|
||||
lpeg
|
||||
luaMessagePack
|
||||
luabitop
|
||||
|
||||
@@ -1,19 +1,19 @@
|
||||
{ stdenv, fetchurl, libjpeg, libexif, libungif, libtiff, libpng, libwebp
|
||||
{ stdenv, fetchurl, libjpeg, libexif, libungif, libtiff, libpng, libwebp, libdrm
|
||||
, pkgconfig, freetype, fontconfig, which, imagemagick, curl, sane-backends
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "fbida-2.10";
|
||||
name = "fbida-2.11";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://dl.bytesex.org/releases/fbida/${name}.tar.gz";
|
||||
sha256 = "1dkc1d6qlfa1gn94wcbyr7ayiy728q52fvbipwmnl2mlc6n3lnks";
|
||||
sha256 = "00x1lppb66b0gvp6sqs7zjgnlfh80lnkwvsm15ifzvlss3b67akw";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig which ];
|
||||
buildInputs =
|
||||
[ libexif libjpeg libpng libungif freetype fontconfig libtiff libwebp
|
||||
imagemagick curl sane-backends
|
||||
imagemagick curl sane-backends libdrm
|
||||
];
|
||||
|
||||
makeFlags = [ "prefix=$(out)" "verbose=yes" ];
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{ callPackage, fetchgit, ... } @ args:
|
||||
|
||||
callPackage ./generic.nix (args // {
|
||||
version = "2016-03-24";
|
||||
version = "2016-04-06";
|
||||
src = fetchgit {
|
||||
sha256 = "593672ccfef6e3e0f3cb8ae4bbc67db9b2f1a821df4914343e4cf32f75cea865";
|
||||
rev = "41a416e4afcf6cada69193dc408ef184d0e5f678";
|
||||
sha256 = "af0b5943787bfe86169cd9bbf34284152e18b6df1f692773369545047e54a288";
|
||||
rev = "e6b6ad9d4847e86aed8be0837a19bfada881f52d";
|
||||
url = "git://alioth.debian.org/git/sane/sane-backends.git";
|
||||
};
|
||||
})
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchurl
|
||||
, libX11, libXext, libXaw
|
||||
, pkgconfig, imlib2, libast }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "eterm-${version}";
|
||||
version = "0.9.6";
|
||||
srcName = "Eterm-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.eterm.org/download/${srcName}.tar.gz";
|
||||
sha256 = "0g71szjklkiczxwzbjjfm59y6v9w4hp8mg7cy99z1g7qcjm0gfbj";
|
||||
};
|
||||
|
||||
buildInputs = [ libX11 libXext libXaw pkgconfig imlib2 ];
|
||||
propagatedBuildInputs = [ libast ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Terminal emulator";
|
||||
homepage = "http://www.eterm.org";
|
||||
license = licenses.bsd2;
|
||||
maintainers = [ maintainers.AndersonTorres ];
|
||||
};
|
||||
}
|
||||
@@ -1,17 +1,17 @@
|
||||
{ stdenv, fetchFromGitHub, pkgconfig, cmake, fftwFloat, qt5 }:
|
||||
{ stdenv, fetchFromGitHub, pkgconfig, cmake, boost, fftwFloat, qt5, gnuradio }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "inspectrum-${version}";
|
||||
version = "20160103";
|
||||
version = "20160403";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "miek";
|
||||
repo = "inspectrum";
|
||||
rev = "a60d711b46130d37b7c05074285558cd67a28820";
|
||||
sha256 = "1q7izpyi7c9qszygiaq0zs3swihxlss3n52q7wx2jq97hdi2hmzy";
|
||||
rev = "27381dbb30f59267a429c04d17d792d3953a6b99";
|
||||
sha256 = "0y4j62khq6fcv2qqlqi0kn2ix821m5gcqzg72nhc2zzfb3cdm9nm";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig cmake qt5.qtbase fftwFloat ];
|
||||
buildInputs = [ pkgconfig cmake qt5.qtbase fftwFloat boost gnuradio ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Tool for analysing captured signals from sdr receivers";
|
||||
|
||||
@@ -106,5 +106,6 @@ stdenv.mkDerivation rec {
|
||||
homepage = http://kiwix.org;
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ robbinch ];
|
||||
broken = true;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -0,0 +1,39 @@
|
||||
{ stdenv, fetchFromGitHub, scsh, sox, libnotify }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pell";
|
||||
version = "0.0.1";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ebzzry";
|
||||
repo = pname;
|
||||
rev = "3f95341eb9439c7a6be1f3c6366c0552ab8208f0";
|
||||
sha256 = "183aj3ys080g2kahl8x8rkhzlsb6h5ls9xm1v2kasfbn1pi5i6nn";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
mkdir -p $out/share
|
||||
cp pell $out/bin
|
||||
cp resources/notification.mp3 $out/share
|
||||
chmod +x $out/bin/pell
|
||||
'';
|
||||
|
||||
postFixup = ''
|
||||
substituteInPlace $out/bin/pell --replace "/usr/bin/env scsh" "${scsh}/bin/scsh"
|
||||
substituteInPlace $out/bin/pell --replace "(play " "(${sox}/bin/play "
|
||||
substituteInPlace $out/bin/pell --replace "(notify-send " "(${libnotify}/bin/notify-send "
|
||||
substituteInPlace $out/bin/pell --replace "/usr/share/pell/notification.mp3" "$out/share/notification.mp3"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/ebzzry/pell;
|
||||
description = "A simple periodic host monitor using ping";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.ebzzry ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
|
||||
dontBuild = true;
|
||||
}
|
||||
@@ -1,12 +1,14 @@
|
||||
{ stdenv, fetchgit, unzip, firefox, makeWrapper }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "conkeror-1.0pre-20150730";
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pkgname = "conkeror";
|
||||
version = "1.0pre-20160130";
|
||||
name = "${pkgname}-${version}";
|
||||
|
||||
src = fetchgit {
|
||||
url = git://repo.or.cz/conkeror.git;
|
||||
rev = "a1f7e879b129df5cf14ea4ce80a9c1407380ed58";
|
||||
sha256 = "12d8949a81a670037664dd930f7efe3d54b321aad48deea68343eba9aaea8785";
|
||||
rev = "3e4732cd0d15aa70121fe0a0403103b777c964bf";
|
||||
sha256 = "1c4ri6011wqnkkz1gcn4l6dkvz693mycwqgncbanhydmy8pcb7jk";
|
||||
};
|
||||
|
||||
buildInputs = [ unzip makeWrapper ];
|
||||
|
||||
@@ -0,0 +1,48 @@
|
||||
{ stdenv, fetchurl
|
||||
, alsaLib, atk, cairo, cups, dbus, expat, fontconfig, freetype, gdk_pixbuf
|
||||
, glib, gnome, gtk, libnotify, libX11, libXcomposite, libXcursor, libXdamage
|
||||
, libXext, libXfixes, libXi, libXrandr, libXrender, libXtst, nspr, nss, pango
|
||||
, udev }:
|
||||
|
||||
let version = "0.0.1"; in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
|
||||
name = "discord-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://storage.googleapis.com/discord-developer/test/discord-canary-${version}.tar.gz";
|
||||
sha256 = "1skmwc84s4xqyc167qrplhy5ah06kwfa3d3rxiwi4c8rc55vdd0g";
|
||||
};
|
||||
|
||||
libPath = stdenv.lib.makeLibraryPath [
|
||||
stdenv.cc.cc alsaLib atk cairo cups dbus expat fontconfig freetype
|
||||
gdk_pixbuf glib gnome.GConf gtk libnotify libX11 libXcomposite
|
||||
libXcursor libXdamage libXext libXfixes libXi libXrandr libXrender
|
||||
libXtst nspr nss pango udev
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
mv * $out
|
||||
|
||||
# Copying how adobe-reader does it,
|
||||
# see pkgs/applications/misc/adobe-reader/builder.sh
|
||||
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
||||
--set-rpath "$out:$libPath" \
|
||||
$out/DiscordCanary
|
||||
|
||||
ln -s $out/DiscordCanary $out/bin/
|
||||
|
||||
# Putting udev in the path won't work :(
|
||||
ln -s ${udev}/lib/libudev.so.1 $out
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "All-in-one voice and text chat for gamers that’s free, secure, and works on both your desktop and phone";
|
||||
homepage = "https://discordapp.com/";
|
||||
license = licenses.unfree;
|
||||
maintainers = [ maintainers.ldesgoui ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
||||
@@ -70,6 +70,8 @@ stdenv.mkDerivation {
|
||||
patchelf --set-rpath ${rpath}:$out/libexec/hipchat/lib:\$ORIGIN $file || true
|
||||
done
|
||||
|
||||
patchShebangs $d/linuxbrowserlaunch.sh
|
||||
|
||||
substituteInPlace $out/share/applications/hipchat4.desktop \
|
||||
--replace /opt/HipChat4/bin/HipChat4 $out/bin/hipchat
|
||||
|
||||
|
||||
@@ -3,12 +3,12 @@
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "telegram-cli-2015-07-30";
|
||||
name = "telegram-cli-2016-03-23";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://github.com/vysheng/tg.git";
|
||||
sha256 = "0phn9nl0sf2fylzfwi427xq60cfrnpsvhh8bp55y1wcjkmp0fxsn";
|
||||
rev = "2052f4b381337d75e783facdbfad56b04dec1a9c";
|
||||
sha256 = "07x6172nyipbz4bk7n417a2ydj5r7y1ch2zl3hp79nckfw11fix7";
|
||||
rev = "6547c0b21b977b327b3c5e8142963f4bc246187a";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
|
||||
@@ -17,14 +17,14 @@ assert saslSupport -> cyrus_sasl != null;
|
||||
assert gpgmeSupport -> gpgme != null;
|
||||
|
||||
let
|
||||
version = "1.5.24";
|
||||
version = "1.6.0";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "mutt${stdenv.lib.optionalString withSidebar "-with-sidebar"}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://ftp.mutt.org/pub/mutt/mutt-${version}.tar.gz";
|
||||
sha256 = "0012njrgxf1barjksqkx7ccid2l0xyikhna9mjs9vcfpbrvcm4m2";
|
||||
sha256 = "06bc2drbgalkk68rzg7hq2v5m5qgjxff5357wg0419dpi8ivdbr9";
|
||||
};
|
||||
|
||||
buildInputs = with stdenv.lib;
|
||||
|
||||
@@ -78,7 +78,7 @@ index 5dfeff6..cf1ac98 100644
|
||||
score.c send.c sendlib.c signal.c sort.c \
|
||||
status.c system.c thread.c charset.c history.c lib.c \
|
||||
+ sidebar.c \
|
||||
muttlib.c editmsg.c mbyte.c \
|
||||
muttlib.c editmsg.c mbyte.c mutt_idna.c \
|
||||
url.c ascii.c crypt-mod.c crypt-mod.h safe_asprintf.c
|
||||
|
||||
diff --git a/OPS b/OPS
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
source "https://rubygems.org"
|
||||
|
||||
gem 'rake'
|
||||
gem 'sup'
|
||||
gem 'gpgme'
|
||||
|
||||
# Sup tries to `xapian-ruby` in its extconf instead of listing it as a
|
||||
# dependency.
|
||||
gem 'xapian-ruby', "~> 1.2.15"
|
||||
gem 'xapian-ruby', "~> 1.2.22"
|
||||
|
||||
@@ -2,33 +2,40 @@ GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
chronic (0.9.1)
|
||||
gpgme (2.0.7)
|
||||
mini_portile (>= 0.5.0, <= 0.6.0)
|
||||
highline (1.6.21)
|
||||
locale (2.1.0)
|
||||
gpgme (2.0.12)
|
||||
mini_portile2 (~> 2.1.0)
|
||||
highline (1.7.8)
|
||||
locale (2.1.2)
|
||||
lockfile (2.1.3)
|
||||
mime-types (1.25.1)
|
||||
mini_portile (0.6.0)
|
||||
mime-types (3.0)
|
||||
mime-types-data (~> 3.2015)
|
||||
mime-types-data (3.2016.0221)
|
||||
mini_portile2 (2.1.0)
|
||||
ncursesw (1.4.9)
|
||||
rake (11.1.2)
|
||||
rmail-sup (1.0.1)
|
||||
sup (0.20.0)
|
||||
sup (0.22.1)
|
||||
chronic (~> 0.9.1)
|
||||
highline
|
||||
locale (~> 2.0)
|
||||
lockfile
|
||||
mime-types (~> 1.0)
|
||||
mime-types (> 2.0)
|
||||
ncursesw (~> 1.4.0)
|
||||
rmail-sup (~> 1.0.1)
|
||||
trollop (>= 1.12)
|
||||
unicode (~> 0.4.4)
|
||||
trollop (2.1.1)
|
||||
trollop (2.1.2)
|
||||
unicode (0.4.4.2)
|
||||
xapian-ruby (1.2.19.1)
|
||||
xapian-ruby (1.2.22)
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
|
||||
DEPENDENCIES
|
||||
gpgme
|
||||
rake
|
||||
sup
|
||||
xapian-ruby (~> 1.2.15)
|
||||
xapian-ruby (~> 1.2.22)
|
||||
|
||||
BUNDLED WITH
|
||||
1.10.6
|
||||
|
||||
@@ -2,9 +2,14 @@
|
||||
, pkgconfig, which }:
|
||||
|
||||
bundlerEnv {
|
||||
name = "sup-0.20.0";
|
||||
name = "sup-0.22.1";
|
||||
|
||||
inherit ruby;
|
||||
|
||||
# Updated with:
|
||||
# nix-shell -p bundix -p bundler -p ncurses -p ruby -p which -p zlib -p libuuid
|
||||
# bundle install --path ./vendor
|
||||
# bundix
|
||||
gemfile = ./Gemfile;
|
||||
lockfile = ./Gemfile.lock;
|
||||
gemset = ./gemset.nix;
|
||||
|
||||
@@ -1,107 +1,126 @@
|
||||
{
|
||||
"chronic" = {
|
||||
version = "0.9.1";
|
||||
xapian-ruby = {
|
||||
version = "1.2.22";
|
||||
source = {
|
||||
type = "gem";
|
||||
sha256 = "0kspaxpfy7yvyk1lvpx31w852qfj8wb9z04mcj5bzi70ljb9awqk";
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1xbarnxmhy6r0rxpspn4wk85j183w6b18nah73djcs06b3gfas15";
|
||||
};
|
||||
dependencies = [ "rake" ];
|
||||
};
|
||||
"gpgme" = {
|
||||
version = "2.0.7";
|
||||
source = {
|
||||
type = "gem";
|
||||
sha256 = "1p84zhiri2ihcld7py9mwc2kg5xs5da8fk11zhndrhmw05yvf5mr";
|
||||
};
|
||||
dependencies = [
|
||||
"mini_portile"
|
||||
];
|
||||
};
|
||||
"highline" = {
|
||||
version = "1.6.21";
|
||||
source = {
|
||||
type = "gem";
|
||||
sha256 = "06bml1fjsnrhd956wqq5k3w8cyd09rv1vixdpa3zzkl6xs72jdn1";
|
||||
};
|
||||
};
|
||||
"locale" = {
|
||||
version = "2.1.0";
|
||||
source = {
|
||||
type = "gem";
|
||||
sha256 = "18bb0g24flq9dr8qv4j7pm7w9i2vmvmqrbmry95ibf1r1c4s60yj";
|
||||
};
|
||||
};
|
||||
"lockfile" = {
|
||||
version = "2.1.3";
|
||||
source = {
|
||||
type = "gem";
|
||||
sha256 = "0dij3ijywylvfgrpi2i0k17f6w0wjhnjjw0k9030f54z56cz7jrr";
|
||||
};
|
||||
};
|
||||
"mime-types" = {
|
||||
version = "1.25.1";
|
||||
source = {
|
||||
type = "gem";
|
||||
sha256 = "0mhzsanmnzdshaba7gmsjwnv168r1yj8y0flzw88frw1cickrvw8";
|
||||
};
|
||||
};
|
||||
"mini_portile" = {
|
||||
version = "0.6.0";
|
||||
source = {
|
||||
type = "gem";
|
||||
sha256 = "09kcn4g63xrdirgwxgjikqg976rr723bkc9bxfr29pk22cj3wavn";
|
||||
};
|
||||
};
|
||||
"ncursesw" = {
|
||||
version = "1.4.9";
|
||||
source = {
|
||||
type = "gem";
|
||||
sha256 = "154cls3b237imdbhih7rni5p85nw6mpbpkzdw08jxzvqaml7q093";
|
||||
};
|
||||
};
|
||||
"rmail-sup" = {
|
||||
version = "1.0.1";
|
||||
source = {
|
||||
type = "gem";
|
||||
sha256 = "1xswk101s560lxqaax3plqh8vjx7jjspnggdwb3q80m358f92q9g";
|
||||
};
|
||||
};
|
||||
"sup" = {
|
||||
version = "0.20.0";
|
||||
source = {
|
||||
type = "gem";
|
||||
sha256 = "1lpqgrqkv29xr1h1142qsbmknlshpgys7fc3w1nkyhib8s3ikamg";
|
||||
};
|
||||
dependencies = [
|
||||
"chronic"
|
||||
"highline"
|
||||
"locale"
|
||||
"lockfile"
|
||||
"mime-types"
|
||||
"ncursesw"
|
||||
"rmail-sup"
|
||||
"trollop"
|
||||
"unicode"
|
||||
];
|
||||
};
|
||||
"trollop" = {
|
||||
version = "2.1.1";
|
||||
source = {
|
||||
type = "gem";
|
||||
sha256 = "0z5dvh7glwqjprlihsjx67hfzy4whsjfhqj9akyyrby9q5va1i4k";
|
||||
};
|
||||
};
|
||||
"unicode" = {
|
||||
unicode = {
|
||||
version = "0.4.4.2";
|
||||
source = {
|
||||
type = "gem";
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "15fggljzan8zvmr8h12b5m7pcj1gvskmmnx367xs4p0rrpnpil8g";
|
||||
};
|
||||
};
|
||||
"xapian-ruby" = {
|
||||
version = "1.2.19.1";
|
||||
trollop = {
|
||||
version = "2.1.2";
|
||||
source = {
|
||||
type = "gem";
|
||||
sha256 = "1crfrmc8kf6qq1xcfcmgf213zg66badpg4d86n7y9x3i1f5lxlbv";
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0415y63df86sqj43c0l82and65ia5h64if7n0znkbrmi6y0jwhl8";
|
||||
};
|
||||
};
|
||||
}
|
||||
sup = {
|
||||
version = "0.22.1";
|
||||
source = {
|
||||
type = "gem";
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "17s2sxismf46zdhgr6g2v53fw9f3sp1ijx7xdw3wx8qpcsgazcgi";
|
||||
};
|
||||
dependencies = ["chronic" "highline" "locale" "lockfile" "mime-types" "ncursesw" "rmail-sup" "trollop" "unicode" "rake" ];
|
||||
};
|
||||
rmail-sup = {
|
||||
version = "1.0.1";
|
||||
source = {
|
||||
type = "gem";
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1xswk101s560lxqaax3plqh8vjx7jjspnggdwb3q80m358f92q9g";
|
||||
};
|
||||
};
|
||||
rake = {
|
||||
version = "11.1.2";
|
||||
source = {
|
||||
type = "gem";
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0jfmy7kd543ldi3d4fg35a1w7q6jikpnzxqj4bzchfbn94cbabqz";
|
||||
};
|
||||
};
|
||||
ncursesw = {
|
||||
version = "1.4.9";
|
||||
source = {
|
||||
type = "gem";
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "154cls3b237imdbhih7rni5p85nw6mpbpkzdw08jxzvqaml7q093";
|
||||
};
|
||||
};
|
||||
mini_portile2 = {
|
||||
version = "2.1.0";
|
||||
source = {
|
||||
type = "gem";
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1y25adxb1hgg1wb2rn20g3vl07qziq6fz364jc5694611zz863hb";
|
||||
};
|
||||
};
|
||||
mime-types-data = {
|
||||
version = "3.2016.0221";
|
||||
source = {
|
||||
type = "gem";
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "05ygjn0nnfh6yp1wsi574jckk95wqg9a6g598wk4svvrkmkrzkpn";
|
||||
};
|
||||
};
|
||||
mime-types = {
|
||||
version = "3.0";
|
||||
source = {
|
||||
type = "gem";
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1snjc38a9vqvy8j41xld1i1byq9prbl955pbjw7dxqcfcirqlzra";
|
||||
};
|
||||
dependencies = ["mime-types-data"];
|
||||
};
|
||||
lockfile = {
|
||||
version = "2.1.3";
|
||||
source = {
|
||||
type = "gem";
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0dij3ijywylvfgrpi2i0k17f6w0wjhnjjw0k9030f54z56cz7jrr";
|
||||
};
|
||||
};
|
||||
locale = {
|
||||
version = "2.1.2";
|
||||
source = {
|
||||
type = "gem";
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1sls9bq4krx0fmnzmlbn64dw23c4d6pz46ynjzrn9k8zyassdd0x";
|
||||
};
|
||||
};
|
||||
highline = {
|
||||
version = "1.7.8";
|
||||
source = {
|
||||
type = "gem";
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1nf5lgdn6ni2lpfdn4gk3gi47fmnca2bdirabbjbz1fk9w4p8lkr";
|
||||
};
|
||||
};
|
||||
gpgme = {
|
||||
version = "2.0.12";
|
||||
source = {
|
||||
type = "gem";
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0a04a76dw9dias0a8rp6dyk3vx2y024gim40lg2md6zdh2m1kx85";
|
||||
};
|
||||
dependencies = ["mini_portile2"];
|
||||
};
|
||||
chronic = {
|
||||
version = "0.9.1";
|
||||
source = {
|
||||
type = "gem";
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0kspaxpfy7yvyk1lvpx31w852qfj8wb9z04mcj5bzi70ljb9awqk";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -4,123 +4,123 @@
|
||||
# ruby generate_sources.rb > sources.nix
|
||||
|
||||
{
|
||||
version = "38.7.1";
|
||||
version = "38.7.2";
|
||||
sources = [
|
||||
{ locale = "ar"; arch = "linux-i686"; sha256 = "186ba5f03adc7cb94c69351f5edcf241abdba1a3602f9b140a46682cb94b053c"; }
|
||||
{ locale = "ar"; arch = "linux-x86_64"; sha256 = "7c6308024524c8ba458bb43cace95bdf92dfa7d797c7ff936598257c018e4807"; }
|
||||
{ locale = "ast"; arch = "linux-i686"; sha256 = "61de0fc548ff70367334c82bec580caa895f3db63c6b045c5a717bfa282e69db"; }
|
||||
{ locale = "ast"; arch = "linux-x86_64"; sha256 = "34c935a0b162e182a341699782143cad1e225ea63bf314c158d25f629889c5e1"; }
|
||||
{ locale = "be"; arch = "linux-i686"; sha256 = "4442d37c8bb411c5c151bd98d06a375dc8ffcf72fee4d03bed6ac8691ccd8e2c"; }
|
||||
{ locale = "be"; arch = "linux-x86_64"; sha256 = "e7226b6b42e7cfe4d36c430eca755f5deae8899fd64ea1877ad576f96fe29b8c"; }
|
||||
{ locale = "bg"; arch = "linux-i686"; sha256 = "eaf46e571b55800dfaf63a807236e8bf5fa8e8ba77bc996830ab0dfcdce23300"; }
|
||||
{ locale = "bg"; arch = "linux-x86_64"; sha256 = "62edb0cee78dd88a871355c996107901456f1fb70793d21209e75875c33d91a3"; }
|
||||
{ locale = "bn-BD"; arch = "linux-i686"; sha256 = "76e3222d9b7bc4f5948c56be6248deb23c1777550f497f115487e323c16b2f95"; }
|
||||
{ locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "b7ad9dd397abb89b844f8a1adbd34d0dfdea6bb85b3f8ad5d5f297e7f8b1b081"; }
|
||||
{ locale = "br"; arch = "linux-i686"; sha256 = "b10c7e572ba88f79acb2d57988308c5af6fde268f64434956c4312f8a7c3ed42"; }
|
||||
{ locale = "br"; arch = "linux-x86_64"; sha256 = "174f671aa90307e4dd6756d60f37a0b628d7d1cee8c7bb623a1a32c55b26a967"; }
|
||||
{ locale = "ca"; arch = "linux-i686"; sha256 = "b966f3381a30567db88890dd3885c56f9cf367d9c92e192d0c6c79066e482c91"; }
|
||||
{ locale = "ca"; arch = "linux-x86_64"; sha256 = "e5d96ddd9ed6b685b872d90e95bded23124e21575e9e0bcb7aeaa77ef0226009"; }
|
||||
{ locale = "cs"; arch = "linux-i686"; sha256 = "fdbe97bc87656569b20d8154619cd7b3b5c3b03cbbcd7ff2f1e07a3af547bb41"; }
|
||||
{ locale = "cs"; arch = "linux-x86_64"; sha256 = "b24ea0ae2977d9380cadfd130f83971e798677ce956152d794523e90a54222e6"; }
|
||||
{ locale = "cy"; arch = "linux-i686"; sha256 = "ba39bd39698ad0486e22806ff468b9a763712f35e943b93e6021365dc061c2ce"; }
|
||||
{ locale = "cy"; arch = "linux-x86_64"; sha256 = "f51e4dcaeac1aeb53d858d029c34c366e948616f7ca3f35eb22b165fd2839376"; }
|
||||
{ locale = "da"; arch = "linux-i686"; sha256 = "511441bfe56749643f59e10c9219b8c3192d64c50008ee3d8a2dc342993c0133"; }
|
||||
{ locale = "da"; arch = "linux-x86_64"; sha256 = "9f60a1c06da4e61a415359eeaed831d61a8c8ad377952948c1475ee6a2bc0cd3"; }
|
||||
{ locale = "de"; arch = "linux-i686"; sha256 = "d48939ad0dab7c4829cd41cd6afe9239d12ab2a2337296203b660613cbba2698"; }
|
||||
{ locale = "de"; arch = "linux-x86_64"; sha256 = "6b1398161ab1271caa14b20c4ad0b3e4372fca743b4ae2e3d5bd1d77d8038c15"; }
|
||||
{ locale = "dsb"; arch = "linux-i686"; sha256 = "c30f3fea47cca28fcc928d813e8c631db43a665d8f347f174b23ef3c1fdd7550"; }
|
||||
{ locale = "dsb"; arch = "linux-x86_64"; sha256 = "592b18fa8ff3749c7a68b5f5406f5ae42f9f97e47cc8c2f9c18b242c8f192b8d"; }
|
||||
{ locale = "el"; arch = "linux-i686"; sha256 = "1ccdde8b11337e75feabbd1e40f1316c287862769d0b9c37934f22108c74bf1a"; }
|
||||
{ locale = "el"; arch = "linux-x86_64"; sha256 = "acb837b0120f00f6cb39e447e86cb140c0cabbe599bff70d85429126df377d85"; }
|
||||
{ locale = "en-GB"; arch = "linux-i686"; sha256 = "ba4c223c22fda306f4b66daa6ed0d157c5c24489ec7627e1124c9f79b5aca989"; }
|
||||
{ locale = "en-GB"; arch = "linux-x86_64"; sha256 = "f4bb5a60493f3fbf519a55dc7ff2fa7bb455ad344d27b133addb2864f9d9d100"; }
|
||||
{ locale = "en-US"; arch = "linux-i686"; sha256 = "205729f0ce14666ef98b7e23dad0882d450a508b568fc1d2c99cdfffd2cc9547"; }
|
||||
{ locale = "en-US"; arch = "linux-x86_64"; sha256 = "7c7cb801ea902f93e57f944209e1358bcbe73f8ee312112e94ade2a2ef4b1194"; }
|
||||
{ locale = "es-AR"; arch = "linux-i686"; sha256 = "8bbb39afd31656bc7cdab60b179e0a5bb9d9d9fed62e1ad398dfc5c0f40a35ab"; }
|
||||
{ locale = "es-AR"; arch = "linux-x86_64"; sha256 = "0d86ebebfd2ba294b0f27b5eb84b083a7c8cecc8fea944705525831cf3c161b8"; }
|
||||
{ locale = "es-ES"; arch = "linux-i686"; sha256 = "76673ffb93fb3b902366c5939619dfa11ecd724dc5ff37fe769d598dc937c353"; }
|
||||
{ locale = "es-ES"; arch = "linux-x86_64"; sha256 = "6e7098cf9eb6f1b55d7504b341b709133fb5d4d20cb761984647422749b71615"; }
|
||||
{ locale = "et"; arch = "linux-i686"; sha256 = "3de2c84af3c7111a306e35f1f7304bf7a77a0e50c8d2c9bfbc896a11a6a23e5d"; }
|
||||
{ locale = "et"; arch = "linux-x86_64"; sha256 = "a2bb5c2b6e174a65cf825293f57cc1628930686f6a674d2cb7fcee6aaf755afc"; }
|
||||
{ locale = "eu"; arch = "linux-i686"; sha256 = "f0ec8c9613ee04c7f7c1b55cb81386036220a715b58edc302e2099882e2c642d"; }
|
||||
{ locale = "eu"; arch = "linux-x86_64"; sha256 = "3ed3c4431fc604fbc05b6f17c9c6e74057278e9ef85480d60ea638843eab1394"; }
|
||||
{ locale = "fi"; arch = "linux-i686"; sha256 = "e4dac93472bc5f41a75daf9ca18265de527b5fc621812bde2c634f1fa5a4692c"; }
|
||||
{ locale = "fi"; arch = "linux-x86_64"; sha256 = "8a30c0c7a586f598e6065f20b2a0dc1e105f59d3e4adac8167da462e8e0193d2"; }
|
||||
{ locale = "fr"; arch = "linux-i686"; sha256 = "adfe8aca07faf08ba780ca0f84d638d461f4a0f00b92d5a9cebe8102a94bce79"; }
|
||||
{ locale = "fr"; arch = "linux-x86_64"; sha256 = "19ccb4a2ec44b1c8edce204627af3d0e84f214591d3b7a4f6e67e297dd9db0f9"; }
|
||||
{ locale = "fy-NL"; arch = "linux-i686"; sha256 = "88f763080b2bbfb8957ed6b52189f2195b3317a1bfb851a6e686765e8a12181a"; }
|
||||
{ locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "5955d594802281794ef25e9fda196206464ac0594ce12e957b5c40c589c89ad0"; }
|
||||
{ locale = "ga-IE"; arch = "linux-i686"; sha256 = "7fb849565e25b1bba853b434d7f0207bfc9b3f39251f08edf65a8a38ccd0dd96"; }
|
||||
{ locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "b56cd8b5fc665ad24061fdf2ac3196aff9f953395e894007b133bc83f676be33"; }
|
||||
{ locale = "gd"; arch = "linux-i686"; sha256 = "860dca420cd8c6c18bc703ab4934948e038b4e7e91a1d80d3f632980f0799424"; }
|
||||
{ locale = "gd"; arch = "linux-x86_64"; sha256 = "4e8723dacd9a4961f02fece36066166c044880fbc0c7aab4e0f1289a36bd22c6"; }
|
||||
{ locale = "gl"; arch = "linux-i686"; sha256 = "fd071bf547ba0baaf13141e30f34c15108fb6e44432b02d55508cf3dfca91cdb"; }
|
||||
{ locale = "gl"; arch = "linux-x86_64"; sha256 = "b999261eb53e28c5b43fa5d3ffcb2f9c12cca45a38c6e8fc56a342b1a5dda78a"; }
|
||||
{ locale = "he"; arch = "linux-i686"; sha256 = "2c2e7d7a459dd85f88fb3839002e2eb602d47ce5df4d0572928d8a35a0df4773"; }
|
||||
{ locale = "he"; arch = "linux-x86_64"; sha256 = "0c540f0ffb1224c8d3b18423690f319d25ff5e0c004d18cc8bc6b7d69ecbc48a"; }
|
||||
{ locale = "hr"; arch = "linux-i686"; sha256 = "5d7e14f94f53c7623dc4fce69aa991a67792e0d2405a6c7044558d5023ea0cc0"; }
|
||||
{ locale = "hr"; arch = "linux-x86_64"; sha256 = "6355145ae642332d1798f8ce169cb85cc930af6add6c8cda142e8183666fdb71"; }
|
||||
{ locale = "hsb"; arch = "linux-i686"; sha256 = "897eca9ffdbf28f3d3f720dd44f68f67a289e4d2aff91005c180688b34358b08"; }
|
||||
{ locale = "hsb"; arch = "linux-x86_64"; sha256 = "43d2cf464be8be57a5d2bdba1683e6179641448e351d9a8bee9889febe1ebefd"; }
|
||||
{ locale = "hu"; arch = "linux-i686"; sha256 = "5e6b806364d7e97384bf3f30e4f398c8041cd8acc000b21edcf218ca24e1903a"; }
|
||||
{ locale = "hu"; arch = "linux-x86_64"; sha256 = "5b96ea401ec1af9473cc57e4f09f6f264598e52196dd9da38cebe3e802649fc9"; }
|
||||
{ locale = "hy-AM"; arch = "linux-i686"; sha256 = "3fbd40d914f9347f09848ffb3486d1cec9734f9ae3cc969bc71a8d9c61aea92b"; }
|
||||
{ locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "9f60903ccb571eebdf7fab4c62e1f0675d4c7f5bcbca7589e669c931b355b55a"; }
|
||||
{ locale = "id"; arch = "linux-i686"; sha256 = "bd0e53bb5d792c9caf2aedc67cf1df2281d234905b96748766446e842448e39e"; }
|
||||
{ locale = "id"; arch = "linux-x86_64"; sha256 = "f7bc98632e15fb73c61c5fd54c3e349e93f3f07b61ee92d704b105b05386949d"; }
|
||||
{ locale = "is"; arch = "linux-i686"; sha256 = "6361b21f9a57468cb8e6273805437d4a40f90c0b461d447b17543f84f9cae8c2"; }
|
||||
{ locale = "is"; arch = "linux-x86_64"; sha256 = "df4d4ef5a25a8aa2f9cbbfef2425056c19b568030e2b217f9bb535fcd81cc017"; }
|
||||
{ locale = "it"; arch = "linux-i686"; sha256 = "def27fdc02da10e148b3312199826157b981165a98ea9a3f5135866092e07ad3"; }
|
||||
{ locale = "it"; arch = "linux-x86_64"; sha256 = "3c55c72d8b9936dc0b0ecf2e88024d4e128f4cbdb32ec5770d4caa930e12d696"; }
|
||||
{ locale = "ja"; arch = "linux-i686"; sha256 = "7f1e39da21362857afd57151b0bb606c7a8b52f0ea1362cbb5bf9c4eb9b18db8"; }
|
||||
{ locale = "ja"; arch = "linux-x86_64"; sha256 = "3b70e990616d999c572a9e95f92dc62b004f5449891778a6530ee81dc1f42703"; }
|
||||
{ locale = "ko"; arch = "linux-i686"; sha256 = "7023635ab8fde872b41b08f523128721863091d7bd7e76646ea2f2929a667719"; }
|
||||
{ locale = "ko"; arch = "linux-x86_64"; sha256 = "370075633a30d3f4afbe69c617ecc4df33e51aa95704ef9fff599a13e9cb3ab2"; }
|
||||
{ locale = "lt"; arch = "linux-i686"; sha256 = "f143791c658916ee2ddac2199293ded234cfd8201cd6399775ccb996cb784e18"; }
|
||||
{ locale = "lt"; arch = "linux-x86_64"; sha256 = "5d48abb53a5b71be190dc4c127c5718704fbc12590c2c5fbcf3b4046f9840415"; }
|
||||
{ locale = "nb-NO"; arch = "linux-i686"; sha256 = "319df90e458817537f7323e97c3d7fdeb2fd965a215b1173f87378b3c94e3ac7"; }
|
||||
{ locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "2f93a35135f387c8cb2e4ca4b0c800f846596d0f93350f3be0983797a0571359"; }
|
||||
{ locale = "nl"; arch = "linux-i686"; sha256 = "8e3d9003a67a0d38821dae7a070eebe32698ae6a89272394d4f7faea91595360"; }
|
||||
{ locale = "nl"; arch = "linux-x86_64"; sha256 = "bf2bb1676c5966b6fdcf34c93eb3444ed0f3dd6ed03c8e2a39f6757811bf0e7f"; }
|
||||
{ locale = "nn-NO"; arch = "linux-i686"; sha256 = "e938fcf2e84bc19d766c89312f8ca8e055ffeaf7fe20ba8d616aeb0b862cd064"; }
|
||||
{ locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "ab0b01922e883a34874de33f6eae08a8e4e40d23dd7ddcdf42254386218728e6"; }
|
||||
{ locale = "pa-IN"; arch = "linux-i686"; sha256 = "fd3fd9fe5280365a27ef4e81f7965da2e85ad149e4e026f6a8714a73d976eeb2"; }
|
||||
{ locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "6a68c72828036a256a8d04b1678be58c786671ef97f106b23812ebcf149f1d15"; }
|
||||
{ locale = "pl"; arch = "linux-i686"; sha256 = "26bb8ca3617c70d1126ef4111787ab267bc6dcd28b2b995e07b7296bdf24723b"; }
|
||||
{ locale = "pl"; arch = "linux-x86_64"; sha256 = "de6ac16163aab662ba4fef2130dd822ec9cfecc0f4beec54f2017785fec8eb0a"; }
|
||||
{ locale = "pt-BR"; arch = "linux-i686"; sha256 = "82c459a487d2a7b156f92db36e85c815c714d59474ed9bd8cde46b08c69f1d57"; }
|
||||
{ locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "1f4caae64ced0c69fe6ba6330921fce0d220b616a0eb8b1e696da85cdcf5ec01"; }
|
||||
{ locale = "pt-PT"; arch = "linux-i686"; sha256 = "830b649a394cd844bb1b159a76d265455f6ace76dec6697491367b2f6eff1588"; }
|
||||
{ locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "e89e906cd896c8e04754a9658dc72617954e0a097e6e3b648e5ce827c8cec7d7"; }
|
||||
{ locale = "rm"; arch = "linux-i686"; sha256 = "260fc959ce74945d827c230124a451cec75b6347b78d7d8bbeb65a2bd91f5bd8"; }
|
||||
{ locale = "rm"; arch = "linux-x86_64"; sha256 = "aa416170d0d04d0e2e570d0b0874b6c585d706f8b670de3c24bc5a9ce9819d8d"; }
|
||||
{ locale = "ro"; arch = "linux-i686"; sha256 = "a24ec33c8812921ad0f15dd4306218a2443f7018be5141bcc8e87e0ce3f52929"; }
|
||||
{ locale = "ro"; arch = "linux-x86_64"; sha256 = "5c8bb4872206cacd17cfb77ed3cf58024cdc81be181908213f80659c4d36594b"; }
|
||||
{ locale = "ru"; arch = "linux-i686"; sha256 = "06bde08af3d4b73db3f0a8b87f4f5f3bbc95fd92d717a9ac83efddb7ebc0f12b"; }
|
||||
{ locale = "ru"; arch = "linux-x86_64"; sha256 = "6adf1e6992b05b6c93152bb19a79fe39f319b5a5a62d2491191544eaaabbcc1b"; }
|
||||
{ locale = "si"; arch = "linux-i686"; sha256 = "3f757064e857d8c4d025c0de8325b3bfd81648ac2b77ee11ca847e8ea85d35a5"; }
|
||||
{ locale = "si"; arch = "linux-x86_64"; sha256 = "01147194ad382e4cc61c22c6a2672a01740ced6fdb3d4c2a9394ca9d62503c24"; }
|
||||
{ locale = "sk"; arch = "linux-i686"; sha256 = "ffd8e8bbadb7be4672555f1ec8e4134af5c0898041cc197e1d0081b636d07642"; }
|
||||
{ locale = "sk"; arch = "linux-x86_64"; sha256 = "d1e9df7d081afa272e94534ee3d6310c3498629cd7bba0fd7ab86675ea885714"; }
|
||||
{ locale = "sl"; arch = "linux-i686"; sha256 = "2835ea496c48c171efa0d79924cd3183c12f6de49ce05af72214f6ad4a407c85"; }
|
||||
{ locale = "sl"; arch = "linux-x86_64"; sha256 = "e585b0839c2b31ef12f562c4303b46b392493c6619b7e1b0c92e21c3afdb7461"; }
|
||||
{ locale = "sq"; arch = "linux-i686"; sha256 = "592ece3de096b4135c24e9079f20b85b8c394d488caa6b7907b75d49f51fb30d"; }
|
||||
{ locale = "sq"; arch = "linux-x86_64"; sha256 = "048bcb92d0915b909e2174c990948dd5c50345452369e067bf8c5770bc7b40c4"; }
|
||||
{ locale = "sr"; arch = "linux-i686"; sha256 = "b24e02beeb02d44ba64884864cdfb6605e7b3454b6e953767ceeaf4817f41d95"; }
|
||||
{ locale = "sr"; arch = "linux-x86_64"; sha256 = "caad067689a49308c2e51385750f3d2319e3a06757cf56060ce3c5ecb74a9ed6"; }
|
||||
{ locale = "sv-SE"; arch = "linux-i686"; sha256 = "a2dc5de82a1736dd3aa157da305f5db478625508444df244a3492dfaff8278f3"; }
|
||||
{ locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "d2c4ab30e6e5d17716d7981d0039f043a41107edb917a838be66659d60653074"; }
|
||||
{ locale = "ta-LK"; arch = "linux-i686"; sha256 = "58773ebf8d949541a2c19924935eb09f0d996aa4059ad3c17a71c664357c2bcc"; }
|
||||
{ locale = "ta-LK"; arch = "linux-x86_64"; sha256 = "bb5c4d1d81373c1d25c1df4d896fbd1ba52acfed4e890a81650e34e5b9bd2ef0"; }
|
||||
{ locale = "tr"; arch = "linux-i686"; sha256 = "c95f531aaa3d36788cf6511d51afa1242657890bdc10628218aef60d6d80b106"; }
|
||||
{ locale = "tr"; arch = "linux-x86_64"; sha256 = "bf04a4f7b629e20f8389aad530b89b592686bd1a8340090311882934f9bea391"; }
|
||||
{ locale = "uk"; arch = "linux-i686"; sha256 = "2c0c6d3a2d4228b7838864835665ff7d46cf8564d59db817ee1d8f9665828410"; }
|
||||
{ locale = "uk"; arch = "linux-x86_64"; sha256 = "c51477c9aaa96765205c163df83acb003c2db837243225d5d1e8753b1de5b71b"; }
|
||||
{ locale = "vi"; arch = "linux-i686"; sha256 = "3c92aef738962dab12fa0e118d64d29bb0d110f9ef2050630b3649d574036476"; }
|
||||
{ locale = "vi"; arch = "linux-x86_64"; sha256 = "4854536b65fb7afb8925315ff4192c369db53f55b3ccec698cb561af1bc03f68"; }
|
||||
{ locale = "zh-CN"; arch = "linux-i686"; sha256 = "3aa69342828a99d075e0b70938d1360dcb9016ad322638c57fba9288e37b9b3e"; }
|
||||
{ locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "9d590c31e369d8e1287c915cb91061f14359329c89e5038e3491052ff3df894a"; }
|
||||
{ locale = "zh-TW"; arch = "linux-i686"; sha256 = "f133efa32b74f0203186abfeb5b191bf50711f04bf29762e2569b78e0feb66e3"; }
|
||||
{ locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "15d71526ef072de2b9adacb300e0eb158170839be82a7def9efa6ac55adcda37"; }
|
||||
{ locale = "ar"; arch = "linux-i686"; sha256 = "63cdb91df96bc132e0b9b6c702cdc82b9583a58be11863c76c0a1a04b689b1ed"; }
|
||||
{ locale = "ar"; arch = "linux-x86_64"; sha256 = "d1dc64cc1ca886b81da71e132b31644d89b8f61b4fab5f886c00b3b8defcd49a"; }
|
||||
{ locale = "ast"; arch = "linux-i686"; sha256 = "b71ee84b0e56d7dd9b4cb40032055c8c1f8b4c18e9d679d84b71c226c928a189"; }
|
||||
{ locale = "ast"; arch = "linux-x86_64"; sha256 = "dbb80209a669529b17553d152d5b3ccffbabd5c44b1e6a7e63a2d011e5425a2c"; }
|
||||
{ locale = "be"; arch = "linux-i686"; sha256 = "358cf7d9b9b13cbd5614daa4f140a412e777f2dffe0dfa2673b33582f59e02f9"; }
|
||||
{ locale = "be"; arch = "linux-x86_64"; sha256 = "bd4ac7afafcc4b4a65e34f207f7c07b24be36c06c8e067fb75f4a22ce759fb4b"; }
|
||||
{ locale = "bg"; arch = "linux-i686"; sha256 = "853629b5625f9dd9a81d5f18d862f0f527043435a7c4624f6f78fa68541a5bba"; }
|
||||
{ locale = "bg"; arch = "linux-x86_64"; sha256 = "8d094f3d934d2ca42c38b985145bec7f72b4ddb9af7c31e30413721eaecc934d"; }
|
||||
{ locale = "bn-BD"; arch = "linux-i686"; sha256 = "d569e6211c4c011955553f3480fd8530ba6dd853b227859f95b0d8af4d9e8c6e"; }
|
||||
{ locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "5ed4e24f7725864b47dcbb0602463bc95bb33c8e4413483854e0bf3f33ad9376"; }
|
||||
{ locale = "br"; arch = "linux-i686"; sha256 = "683716f591654dfc843a32198d5bbf6199bccb1a035d391293c4877f0ec47b1c"; }
|
||||
{ locale = "br"; arch = "linux-x86_64"; sha256 = "965d58b4ea4280f20d197e28e0e9eb87b29fc955e4f6e15b6582027000d0da6f"; }
|
||||
{ locale = "ca"; arch = "linux-i686"; sha256 = "eadc1248c9352574dcfcdcb3264a662d3a29f85a2f112f77a843f76d8778cba2"; }
|
||||
{ locale = "ca"; arch = "linux-x86_64"; sha256 = "cdd631c4a32d529a85f04bee01bbc7f50396b183a0f154808e801d29f0f11aab"; }
|
||||
{ locale = "cs"; arch = "linux-i686"; sha256 = "093f01ad325ba33f3f33f2efd72fb5cf3a87dd81162b094dc544744af78f3705"; }
|
||||
{ locale = "cs"; arch = "linux-x86_64"; sha256 = "f74b39dfd0d9f2241ea65d55a6e9459296796adf228def80c57dd66c3f05921d"; }
|
||||
{ locale = "cy"; arch = "linux-i686"; sha256 = "f84113f32952ae91a35d2aa166f16c4683e03fa43ce6fbd911d0f7f237b22ee8"; }
|
||||
{ locale = "cy"; arch = "linux-x86_64"; sha256 = "6e53fd624a5c968e60cd485ea7c7b80a68c164c2f165287ec68a180066c560cb"; }
|
||||
{ locale = "da"; arch = "linux-i686"; sha256 = "ff1f79558185d2a29487d15f95140716603f5978e8fcd891206ea0c5697342a0"; }
|
||||
{ locale = "da"; arch = "linux-x86_64"; sha256 = "522c53748cc7ab0faab84e124e45f3bcdb865f4b5312ff129fc50700ebc4d8ef"; }
|
||||
{ locale = "de"; arch = "linux-i686"; sha256 = "3e83bca492c325438f48880d76a259c3fbfa65eac71569a79e1fdff858268621"; }
|
||||
{ locale = "de"; arch = "linux-x86_64"; sha256 = "020655df7c19750f86a7e1778846ed53e2fe350d44a76f4ac0acaeb82c9d4100"; }
|
||||
{ locale = "dsb"; arch = "linux-i686"; sha256 = "3409d2988bb31b2dfc490e03976471e2d09139660a4c08daab518f3095b45170"; }
|
||||
{ locale = "dsb"; arch = "linux-x86_64"; sha256 = "f5d084e8efe87488fed491432d93fb74c7e14b1fbcbc2abf21af6c669110b5bf"; }
|
||||
{ locale = "el"; arch = "linux-i686"; sha256 = "514a3262c1d0e146b3dbfc24d54b73ce0a5e27e02f26692e25ba6e36897da125"; }
|
||||
{ locale = "el"; arch = "linux-x86_64"; sha256 = "924b0e1514cddbad893446bb6561ca9422d46f6f5303fa7f847550f2f92a988f"; }
|
||||
{ locale = "en-GB"; arch = "linux-i686"; sha256 = "1cff7f847a1ca8a52cfc9a733b7e223a8468a82f5ea9c7d8e1c074868a9baf27"; }
|
||||
{ locale = "en-GB"; arch = "linux-x86_64"; sha256 = "5e803270db14ba348ab7b8697d488d172b774a8d782c22f079db0e8ccda793bf"; }
|
||||
{ locale = "en-US"; arch = "linux-i686"; sha256 = "95428cacb129137747da7cab4c793f102f87a5224ad2a5adc6f52939df746432"; }
|
||||
{ locale = "en-US"; arch = "linux-x86_64"; sha256 = "828317d27c4336aebf7122e2e5268697d8d0cdcde9bf874b63798f7fc6f84fd1"; }
|
||||
{ locale = "es-AR"; arch = "linux-i686"; sha256 = "7ec8555eeb01f126671b89fd8dcc46f219bc938cf15ca8b7f67b13a1df38a101"; }
|
||||
{ locale = "es-AR"; arch = "linux-x86_64"; sha256 = "082c9ace7d6775aff0e0b379206fa5109ce5bac08686ab937b7441edd6e17d6f"; }
|
||||
{ locale = "es-ES"; arch = "linux-i686"; sha256 = "722e87bb5dbde3a7aa6ce5a913622a050a3fd1da822656a787cac6a18881737f"; }
|
||||
{ locale = "es-ES"; arch = "linux-x86_64"; sha256 = "4420c5d0b773e76bdfa4e4ac842b86f3875ad81dc5b4d0666497a30d77267720"; }
|
||||
{ locale = "et"; arch = "linux-i686"; sha256 = "a3128b1315428ec2906ff44bef49f8f448d7116bae80be7bd68bf78138cf5192"; }
|
||||
{ locale = "et"; arch = "linux-x86_64"; sha256 = "299284d934129a15b70ca9f2d26fb05773d555972b14afe9f65826aaeda7bbf6"; }
|
||||
{ locale = "eu"; arch = "linux-i686"; sha256 = "197ba5387010a6d95fff049d780829526d1676de43f1eaa16be2ae1f04f1601a"; }
|
||||
{ locale = "eu"; arch = "linux-x86_64"; sha256 = "fc8386c294d107994463311d3778ad507a8848af3be8a533fd2c5be7394b9222"; }
|
||||
{ locale = "fi"; arch = "linux-i686"; sha256 = "db764598fb0cec2fdd0e585b3396e53fa873af303c4f9a027061a0179e445705"; }
|
||||
{ locale = "fi"; arch = "linux-x86_64"; sha256 = "ea87a217ec9934fae484a32f4dcc655cac04116c9b0c73e458eaee7e595f2b77"; }
|
||||
{ locale = "fr"; arch = "linux-i686"; sha256 = "e27563fdfcfceb5ed4b2643d63d5c26834ca9afed1d887151671fd13086fd66a"; }
|
||||
{ locale = "fr"; arch = "linux-x86_64"; sha256 = "0ee8fdb3d0a1e50afa5f232fba57d84b97c428c41176e73a712a2438bc3e8796"; }
|
||||
{ locale = "fy-NL"; arch = "linux-i686"; sha256 = "a5a785c9ebfb40a7962e29603792de280c57ff5d77f7836c5048074d5c9d4178"; }
|
||||
{ locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "c5bbbb471fc2af310d768e7b01ff1336f78791a42a60b4473cdab00c0bd6e980"; }
|
||||
{ locale = "ga-IE"; arch = "linux-i686"; sha256 = "9c18f2677315f8613203dc69a7877b83e787f6c0b96fb150ab7e4ba3ac712e54"; }
|
||||
{ locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "ccfcca939876bcca2e3b9fd81aee747d1c94f0df02f5258c9ae43564f61c7c23"; }
|
||||
{ locale = "gd"; arch = "linux-i686"; sha256 = "60031f3767779568e49ea477fd2677adf0f437d5663a53b7d96203e2cbc85f1e"; }
|
||||
{ locale = "gd"; arch = "linux-x86_64"; sha256 = "1090d5993cfffa923be8a8bb3acb197bd7968c994a1558a1024d81283e9341b2"; }
|
||||
{ locale = "gl"; arch = "linux-i686"; sha256 = "5a67627f06ae51553730e9185a11208f6ba15c421ebc5fa3ba358a341830efae"; }
|
||||
{ locale = "gl"; arch = "linux-x86_64"; sha256 = "2f7d114cfd69859f1cecd479ad00735744efe19b8a3db1be391fcd7dfe6ca757"; }
|
||||
{ locale = "he"; arch = "linux-i686"; sha256 = "f6cd331db9669ec8d910210061e95f2c87e64afe6343f5faaf75a321a5b99471"; }
|
||||
{ locale = "he"; arch = "linux-x86_64"; sha256 = "f665b75ad6ad846c57007e747931b89d773984beedb825c87fcb07a86ab52f9b"; }
|
||||
{ locale = "hr"; arch = "linux-i686"; sha256 = "69b5baa57f47ce77373aa9505b2ccba0baf90911f2c3ebaef28b043b601ad34b"; }
|
||||
{ locale = "hr"; arch = "linux-x86_64"; sha256 = "7bd6d9e36e87cf2e3aadb4fc7dec2dea371004466bc9a84ead3f60a59af38ae8"; }
|
||||
{ locale = "hsb"; arch = "linux-i686"; sha256 = "72cd9a12387bc5dc02783bb6f6a1d55ab8444557e4d2c46c35b93ce0ab0cf394"; }
|
||||
{ locale = "hsb"; arch = "linux-x86_64"; sha256 = "27b60e8cee363317070e74702d9ba97e5d68318caba0e17fc37aad6bf0fbb362"; }
|
||||
{ locale = "hu"; arch = "linux-i686"; sha256 = "b0b8219da55e81f3feb0872333eadd0f490b251fae09244d31287f2e40339861"; }
|
||||
{ locale = "hu"; arch = "linux-x86_64"; sha256 = "fb1b52b27253280f98e01b11e6f46e01d854998831b337a52922b925570ca330"; }
|
||||
{ locale = "hy-AM"; arch = "linux-i686"; sha256 = "8474bc4a1fd0f8b27131ed3ba999402e1a56b7e04be157e571b95c470f43e779"; }
|
||||
{ locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "e68036c3057ce7c369b43335397c8248e5aac83a6db6e729c8e1116ed57a20a1"; }
|
||||
{ locale = "id"; arch = "linux-i686"; sha256 = "23ea1fb9c64baf835be0a87f7633ee5b87cc05db90a652ca05f17d6b2cb1904c"; }
|
||||
{ locale = "id"; arch = "linux-x86_64"; sha256 = "52584ff6ec72359f44891e630b099fc9114e1266a11cd0d063db5ff6034ed02e"; }
|
||||
{ locale = "is"; arch = "linux-i686"; sha256 = "3e018dd9407823747dce9d32571a390a8fdff11339826bcd68c6879b8edb9c1b"; }
|
||||
{ locale = "is"; arch = "linux-x86_64"; sha256 = "f86a8cd6be21403749607690c467baa126be38e547d1b0e3f50d40477b346fde"; }
|
||||
{ locale = "it"; arch = "linux-i686"; sha256 = "82afb08b29d44aa09da71c454c42d31fbf7ee2756c6f1ddca5c456179e5a7f89"; }
|
||||
{ locale = "it"; arch = "linux-x86_64"; sha256 = "d449b869faf6438697bb7e3f692c9bca6c1a116441b08dbd84e775de62564470"; }
|
||||
{ locale = "ja"; arch = "linux-i686"; sha256 = "02bcacb390dd85bf2e7809751d840fa7c87bb8eac467d9bc2cb50a77559060f9"; }
|
||||
{ locale = "ja"; arch = "linux-x86_64"; sha256 = "8ee832167990dc9546775a1c32518e4524b0f92147ce11e149b0b447932f7ecc"; }
|
||||
{ locale = "ko"; arch = "linux-i686"; sha256 = "374b797f6d662e3deb5a05f6939f650a0ec272f7788cc7dc1a02fc0262e5c903"; }
|
||||
{ locale = "ko"; arch = "linux-x86_64"; sha256 = "e0308132773119f13443ab475d66e651182adf508b7ca04b0efb65fd84013916"; }
|
||||
{ locale = "lt"; arch = "linux-i686"; sha256 = "dce54478d896490141be7f10ef780196ce446e3312cf5623315baedc4354f992"; }
|
||||
{ locale = "lt"; arch = "linux-x86_64"; sha256 = "e4b478609faa58ab0e8de7e2f542290f9ecf268d68f32828182208337523d3f5"; }
|
||||
{ locale = "nb-NO"; arch = "linux-i686"; sha256 = "14b2df6e331ae651d1d913c2d7116466df63e9fd24aad02db7a7f3dd010820c4"; }
|
||||
{ locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "779f48e75546babae4ee153ce7d16f93af9daabf70f855dd702281e948a75cba"; }
|
||||
{ locale = "nl"; arch = "linux-i686"; sha256 = "faa6893cff053c090428035964fe67af8ecf9f5b71225678754e96d38d498311"; }
|
||||
{ locale = "nl"; arch = "linux-x86_64"; sha256 = "8a3ddebc51e182175afc272f16bdb7a584d78dd7af8849844f4e02892a439efd"; }
|
||||
{ locale = "nn-NO"; arch = "linux-i686"; sha256 = "3298284a9b326eccc05343ec5795034fa46dbfe75458e19d39d23564391840ac"; }
|
||||
{ locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "e1f2da61eaf58f723e0c0021eb728e2a78a8cf36db60353e58d0233c2de60f73"; }
|
||||
{ locale = "pa-IN"; arch = "linux-i686"; sha256 = "4cb1c3b16b8d70f19e14a185bfbbc505d66795ddc4d55e1575193dd018c950d6"; }
|
||||
{ locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "72b2c72ee5da9c4b353868efc0431b78feaeb0be8c18eecab6df4cfa0c5c7a3c"; }
|
||||
{ locale = "pl"; arch = "linux-i686"; sha256 = "48e7d195e4b6b9144e32f4a254a40f10c59a167a05ce0f38a013f4b914511d55"; }
|
||||
{ locale = "pl"; arch = "linux-x86_64"; sha256 = "ac6b2064b76b2a5f3cfad6089897126bca7cbf64922b61474eb01b0d65638221"; }
|
||||
{ locale = "pt-BR"; arch = "linux-i686"; sha256 = "57aee02d52b638d393df6a824021a1355df83711dc50663cc67a71366004a017"; }
|
||||
{ locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "451de8f95bc2eaf67d1abb7ec604f566e5cb2f6b9a8ae2f2495f10a7157a12eb"; }
|
||||
{ locale = "pt-PT"; arch = "linux-i686"; sha256 = "98391cba2a9cfd194cb427243738e588f6de9c112762a6c1e099ba7a4fe621a0"; }
|
||||
{ locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "92eeb485a7da11f1d600371d596c31fff778415784b54ec2fc5ba74199f49ec5"; }
|
||||
{ locale = "rm"; arch = "linux-i686"; sha256 = "f4e3073d31b221dc2fb37162011d6ab9c0980137cd81f0d9bf70384cfda91e4a"; }
|
||||
{ locale = "rm"; arch = "linux-x86_64"; sha256 = "4694fd61f7fe2a1066e08f85f041112076d63cf0fcb99db79c5833d714684388"; }
|
||||
{ locale = "ro"; arch = "linux-i686"; sha256 = "088c29a337c926dcbe11ef19c072624014ae7b59cf0ba2a0b8f25a5a725ec796"; }
|
||||
{ locale = "ro"; arch = "linux-x86_64"; sha256 = "0cb7c16955538ce7089e3aa8e5bc5c3325c4867aadf56837e7e3a05e86c4f482"; }
|
||||
{ locale = "ru"; arch = "linux-i686"; sha256 = "b420443eec07c56afed8435c02c305d355935cb0131b672814878cc9fb0143e6"; }
|
||||
{ locale = "ru"; arch = "linux-x86_64"; sha256 = "5964971c7261ba0619d34ce70d1fcf00aa105f159e2e47853d67fe03579dcbb7"; }
|
||||
{ locale = "si"; arch = "linux-i686"; sha256 = "ffb21e8a7a02ec8ef445735bc519671f3f3bf90f994db750a4d29385d574fd24"; }
|
||||
{ locale = "si"; arch = "linux-x86_64"; sha256 = "1177e20ff9b866c4c7e49a929c1f54c47174f80a8541ad0c98d5e472c4f20d26"; }
|
||||
{ locale = "sk"; arch = "linux-i686"; sha256 = "1309eaf342d7bd7a31c1022183e13e1b02275b01228fbfbd0d5e8b3ef235cceb"; }
|
||||
{ locale = "sk"; arch = "linux-x86_64"; sha256 = "adf736651eab43de2a927cd7ad471042f35eada0a5df4a09c0bbccf75dd17b44"; }
|
||||
{ locale = "sl"; arch = "linux-i686"; sha256 = "102c828dd42872ca9472d94ff842f412bd907be1f4cec8605805fea9f75250e2"; }
|
||||
{ locale = "sl"; arch = "linux-x86_64"; sha256 = "ebb608409f3c4ab44a6818020a826be7c3402977c18b08200df6b332e0a7fd3c"; }
|
||||
{ locale = "sq"; arch = "linux-i686"; sha256 = "ff984951130343fdba5377f91e325e7cd21b7c4e25a524b4a1bc98978842e45c"; }
|
||||
{ locale = "sq"; arch = "linux-x86_64"; sha256 = "15ca7d36207f8e7a80744d0d15966015c8dc395464cf7f70c98b643059f19fcb"; }
|
||||
{ locale = "sr"; arch = "linux-i686"; sha256 = "6c93f80d249ab5558543cc7b13cf72c2abba1da0616a817661f790e5c17c24cd"; }
|
||||
{ locale = "sr"; arch = "linux-x86_64"; sha256 = "3c6c64fbc264d4a3c98ae69c92ea778a87bd84ea23ded7f63117b4c77f93b4d5"; }
|
||||
{ locale = "sv-SE"; arch = "linux-i686"; sha256 = "3a82d99b249d9a99d207fc0b1d5a1bd8523833dc61ec09dd917ff427659ec338"; }
|
||||
{ locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "0bf0e9ff45b3d25ef1b31f28b91e30280e8bdb25f864a31ccac795f66e27bb68"; }
|
||||
{ locale = "ta-LK"; arch = "linux-i686"; sha256 = "d346b57092959dbc880c9dc5a8b832dc7967c171ac361aa9b7e77b5589bd4c9e"; }
|
||||
{ locale = "ta-LK"; arch = "linux-x86_64"; sha256 = "6d86d75981ba1850980c3fa498c804dc64b4328c90d12d3a5c13af2f1e47af6d"; }
|
||||
{ locale = "tr"; arch = "linux-i686"; sha256 = "179a67fbb2420615e179d1c69cc5dccf1b135a7c61aea26bda658c724655931f"; }
|
||||
{ locale = "tr"; arch = "linux-x86_64"; sha256 = "bc95ac4b30ae806658218df21f5d9aa6c26b8b8c5fc8a58090de92e347735c58"; }
|
||||
{ locale = "uk"; arch = "linux-i686"; sha256 = "8b49fbe88dcc328b94a99f3b30af9f783910dbcdea1fc5b160526409d56994f7"; }
|
||||
{ locale = "uk"; arch = "linux-x86_64"; sha256 = "2ab49ec5742c07c44028d8aa980a6bd96623c554699037fd64d28cf4744789ce"; }
|
||||
{ locale = "vi"; arch = "linux-i686"; sha256 = "6eecd8d5fa6d6a826fec7a09ba11092348a0fa74c7c7a8c1239f41392d2e2055"; }
|
||||
{ locale = "vi"; arch = "linux-x86_64"; sha256 = "fdb2a25480eee0659803432fea02794f73aa18e9fe5a4b1c1c70ac5aceb09b4f"; }
|
||||
{ locale = "zh-CN"; arch = "linux-i686"; sha256 = "64358161ecc5064ee9fd26e301136a58f32b387466d6127604772b59b44f32c5"; }
|
||||
{ locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "f9f54927e4ee378f56879b6ffc121d02ad300f6982d7751e730564ed9a9d8c80"; }
|
||||
{ locale = "zh-TW"; arch = "linux-i686"; sha256 = "78a6721da743bec597c9dd1e6bededffa43d675784f3585b0d1f03989007f295"; }
|
||||
{ locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "fc3460aae0c3395220644ec0ce8c139512726e62d591ef51f4900ac3c9a9e461"; }
|
||||
];
|
||||
}
|
||||
|
||||
@@ -6,14 +6,14 @@
|
||||
}:
|
||||
|
||||
let pname = "liferea";
|
||||
version = "1.10.18";
|
||||
version = "1.10.19";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/lwindolf/${pname}/releases/download/v${version}/${name}.tar.bz2";
|
||||
sha256 = "0xyy0qm3h22b69if2hmg36jzvvljxb1w0zy2m2a28kdqfzpa6m8g";
|
||||
sha256 = "1h6x8xd4ldrgw9mbf2gwf7wxi6z34h0d0rnwy9kyskdcgkymvi80";
|
||||
};
|
||||
|
||||
buildInputs = with gst_all_1; [
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
{ stdenv, fetchurl, ncurses, gtk, pkgconfig, autoconf, automake, perl, halibut, libtool }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.66";
|
||||
version = "0.67";
|
||||
name = "putty-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://the.earth.li/~sgtatham/putty/latest/${name}.tar.gz";
|
||||
sha256 = "14r9yfqjs61l82q09m8zifgcxrzvs6dvgx32ndl5i1jldkv14wzy";
|
||||
sha256 = "0isak6dy5vmfzf9ckcq6jvhgrn3xfmfcmziaa7g2jqm4x1c286c0";
|
||||
};
|
||||
|
||||
preConfigure = ''
|
||||
|
||||
@@ -12,14 +12,14 @@ let
|
||||
then "i386"
|
||||
else "amd64";
|
||||
|
||||
shortVersion = "1.16-stable";
|
||||
shortVersion = "1.16.1-stable";
|
||||
|
||||
version = "${shortVersion}_${arch}";
|
||||
|
||||
url = "http://desktop-download.mendeley.com/download/apt/pool/main/m/mendeleydesktop/mendeleydesktop_${version}.deb";
|
||||
sha256 = if stdenv.system == arch32
|
||||
then "da56abe0e0e86d868d305119f06cf6d14273d2f65e5c135fc2d190ca599b3cb6"
|
||||
else "e9c2f026fd267db34396ff5f24bce9c6a4beba530bd8b40265a792d417282fba";
|
||||
then "0lsmaw8zzyfvndsz1awz3vl5cdvsik9wc3ck8983y20awh7r9f4m"
|
||||
else "12p6rgxiqajnfgd8nmknyb8icdkln727sshba8x1xlxakxg5c4q4";
|
||||
|
||||
deps = [
|
||||
gcc.cc
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "why3-${version}";
|
||||
version = "0.86.3";
|
||||
version = "0.87.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = https://gforge.inria.fr/frs/download.php/file/35537/why3-0.86.3.tar.gz;
|
||||
sha256 = "0sph6i4ga9450bk60wpm5cq3psw3g8xprnac7yjfq64iqz1dyz03";
|
||||
url = https://gforge.inria.fr/frs/download.php/file/35643/why3-0.87.0.tar.gz;
|
||||
sha256 = "0c3vhcb70ay7iwvmq0m25fqh38y40c5x7mki4r9pxf13vgbs3xb0";
|
||||
};
|
||||
|
||||
buildInputs = (with ocamlPackages; [
|
||||
|
||||
@@ -58,12 +58,12 @@ let
|
||||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
name = "mpv-${meta.version}";
|
||||
name = "mpv-${version}";
|
||||
version = "0.16.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/mpv-player/mpv/archive/v${meta.version}.tar.gz";
|
||||
sha256 = "1p0b83048g66icpz5n66v3k4ldr1z0rmg5d2rr7kcbspm1xj2cbx";
|
||||
url = "https://github.com/mpv-player/mpv/archive/v${version}.tar.gz";
|
||||
sha256 = "1fiqxx85s418qynq2fp0v7cpzrz8j285hwmc4fqgn5ny1vg1jdpw";
|
||||
};
|
||||
|
||||
patchPhase = ''
|
||||
@@ -129,7 +129,6 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
version = "0.15.0";
|
||||
description = "A media player that supports many video formats (MPlayer and mplayer2 fork)";
|
||||
homepage = http://mpv.io;
|
||||
license = licenses.gpl2Plus;
|
||||
|
||||
@@ -46,9 +46,9 @@ while [ $n -lt ${#params[*]} ]; do
|
||||
isCpp=1
|
||||
elif [ "$p" = -nostdlib ]; then
|
||||
isCpp=-1
|
||||
elif [ "${i:0:1}" != - ]; then
|
||||
elif [ "${p:0:1}" != - ]; then
|
||||
nonFlagArgs=1
|
||||
elif [ "$i" = -m32 ]; then
|
||||
elif [ "$p" = -m32 ]; then
|
||||
if [ -e @out@/nix-support/dynamic-linker-m32 ]; then
|
||||
NIX_LDFLAGS="$NIX_LDFLAGS -dynamic-linker $(cat @out@/nix-support/dynamic-linker-m32)"
|
||||
fi
|
||||
|
||||
@@ -1781,22 +1781,22 @@ rec {
|
||||
};
|
||||
|
||||
debian8i386 = {
|
||||
name = "debian-8.3-jessie-i386";
|
||||
fullName = "Debian 8.3 Jessie (i386)";
|
||||
name = "debian-8.4-jessie-i386";
|
||||
fullName = "Debian 8.4 Jessie (i386)";
|
||||
packagesList = fetchurl {
|
||||
url = mirror://debian/dists/jessie/main/binary-i386/Packages.xz;
|
||||
sha256 = "1240d404bd99afbeec042c08fdab049f0b5a984a393cac7c221553ab08f637f5";
|
||||
sha256 = "1j8swc1nzsi20vbcmya2sv0fzcnz7lhwb32lxabgcwm3xlkzlg58";
|
||||
};
|
||||
urlPrefix = mirror://debian;
|
||||
packages = commonDebianPackages;
|
||||
};
|
||||
|
||||
debian8x86_64 = {
|
||||
name = "debian-8.3-jessie-amd64";
|
||||
fullName = "Debian 8.3 Jessie (amd64)";
|
||||
name = "debian-8.4-jessie-amd64";
|
||||
fullName = "Debian 8.4 Jessie (amd64)";
|
||||
packagesList = fetchurl {
|
||||
url = mirror://debian/dists/jessie/main/binary-amd64/Packages.xz;
|
||||
sha256 = "ec937c1b3bbfe4803f0fa43681b19d089eb6b355455ac7caa17ec8e9ff604e56";
|
||||
sha256 = "0kipisyjkhczghzqj4a8y1n4az9c4c8lsj8sw7js13b053lpj6ga";
|
||||
};
|
||||
urlPrefix = mirror://debian;
|
||||
packages = commonDebianPackages;
|
||||
|
||||
@@ -498,8 +498,6 @@ stdenv.mkDerivation ({
|
||||
|
||||
inherit (stdenv) is64bit;
|
||||
|
||||
setupHook = ./use-old-abi.sh;
|
||||
|
||||
meta = {
|
||||
homepage = http://gcc.gnu.org/;
|
||||
license = stdenv.lib.licenses.gpl3Plus; # runtime support libraries are typically LGPLv3+
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
NIX_CFLAGS_COMPILE+=" -D_GLIBCXX_USE_CXX11_ABI=0"
|
||||
@@ -12,6 +12,8 @@ stdenv.mkDerivation {
|
||||
|
||||
buildInputs = [ m4 ];
|
||||
|
||||
configureFlags = stdenv.lib.optional stdenv.isDarwin [ "--build=x86_64-apple-darwin" ];
|
||||
|
||||
postInstall = ''
|
||||
mkdir -p $out/share/emacs/site-lisp
|
||||
cp gforth.el $out/share/emacs/site-lisp/
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{ stdenv, fetchurl, writeText, sbclBootstrap
|
||||
, sbclBootstrapHost ? "${sbclBootstrap}/bin/sbcl --disable-debugger --no-userinit --no-sysinit"
|
||||
, threadSupport ? (stdenv.isi686 || stdenv.isx86_64)
|
||||
# Meant for sbcl used for creating binaries portable to non-NixOS via save-lisp-and-die.
|
||||
# Note that the created binaries still need `patchelf --set-interpreter ...`
|
||||
# to get rid of ${glibc} dependency.
|
||||
@@ -8,11 +9,11 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "sbcl-${version}";
|
||||
version = "1.3.3";
|
||||
version = "1.3.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/project/sbcl/sbcl/${version}/${name}-source.tar.bz2";
|
||||
sha256 = "0kzvwzz196ws9z20l8fm15m5gckhmkkc6lxvdib12mfvy80gcf6v";
|
||||
sha256 = "0zx6z43xfnw1b6v5d3bpjrwgqs14wxlji22nl0lr4wmzbfbzvqli";
|
||||
};
|
||||
|
||||
patchPhase = ''
|
||||
@@ -23,10 +24,11 @@ stdenv.mkDerivation rec {
|
||||
(pushnew x features))
|
||||
(disable (x)
|
||||
(setf features (remove x features))))
|
||||
#-arm
|
||||
(enable :sb-thread)
|
||||
#+arm
|
||||
(enable :arm))) " > customize-target-features.lisp
|
||||
''
|
||||
+ stdenv.lib.optionalString threadSupport "(enable :sb-thread)"
|
||||
+ stdenv.lib.optionalString stdenv.isArm "(enable :arm)"
|
||||
+ ''
|
||||
)) " > customize-target-features.lisp
|
||||
|
||||
pwd
|
||||
|
||||
|
||||
@@ -963,8 +963,12 @@ self: super: {
|
||||
jsaddle = dontCheck super.jsaddle;
|
||||
|
||||
# https://github.com/gwern/mueval/issues/14
|
||||
mueval = super.mueval.override {
|
||||
hint = self.hint_0_4_3;
|
||||
};
|
||||
mueval = super.mueval.override { hint = self.hint_0_4_3; };
|
||||
|
||||
# Looks like Avahi provides the missing library
|
||||
dnssd = super.dnssd.override { dns_sd = pkgs.avahi.override { withLibdnssdCompat = true; }; };
|
||||
|
||||
# https://github.com/danidiaz/pipes-transduce/issues/2
|
||||
pipes-transduce = super.pipes-transduce.override { foldl = self.foldl_1_1_6; };
|
||||
|
||||
}
|
||||
|
||||
@@ -125,11 +125,6 @@ self: super: {
|
||||
# https://github.com/kazu-yamamoto/unix-time/issues/30
|
||||
unix-time = dontCheck super.unix-time;
|
||||
|
||||
present = appendPatch super.present (pkgs.fetchpatch {
|
||||
url = "https://github.com/chrisdone/present/commit/6a61f099bf01e2127d0c68f1abe438cd3eaa15f7.patch";
|
||||
sha256 = "1vn3xm38v2f4lzyzkadvq322f3s2yf8c88v56wpdpzfxmvlzaqr8";
|
||||
});
|
||||
|
||||
ghcjs-prim = self.callPackage ({ mkDerivation, fetchgit, primitive }: mkDerivation {
|
||||
pname = "ghcjs-prim";
|
||||
version = "0.1.0.0";
|
||||
|
||||
@@ -47,9 +47,16 @@ self: super: {
|
||||
hspec-core = dontCheck super.hspec-core;
|
||||
|
||||
# Deviate from Stackage here to fix lots of builds.
|
||||
transformers-compat = super.transformers-compat_0_5_1_4;
|
||||
transformers-compat = self.transformers-compat_0_5_1_4;
|
||||
|
||||
# https://github.com/sol/doctest/issues/125
|
||||
doctest = self.doctest_0_11_0;
|
||||
|
||||
# No modules defined for this compiler.
|
||||
fail = dontHaddock super.fail;
|
||||
|
||||
# Version 4.x doesn't compile with transformers 0.5 or later.
|
||||
comonad_5 = dontCheck super.comonad_5; # https://github.com/ekmett/comonad/issues/33
|
||||
comonad = self.comonad_5;
|
||||
|
||||
}
|
||||
|
||||
@@ -191,6 +191,7 @@ dont-distribute-packages:
|
||||
AERN-RnToRm: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
aeson-bson: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
aeson-native: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
aeson-schema: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
aeson-smart: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
AesonBson: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
afv: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
@@ -206,6 +207,7 @@ dont-distribute-packages:
|
||||
al: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
alea: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
alga: [ i686-linux ]
|
||||
algebra-sql: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
algebraic: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
AlignmentAlgorithms: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
Allure: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
@@ -289,7 +291,7 @@ dont-distribute-packages:
|
||||
atlassian-connect-core: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
atlassian-connect-descriptor: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
atom-msp430: [ x86_64-darwin, x86_64-linux ]
|
||||
atomic-primops-foreign: [ x86_64-darwin ]
|
||||
atomic-primops-foreign: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
atomic-primops-vector: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
atomo: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
AttoJson: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
@@ -362,6 +364,7 @@ dont-distribute-packages:
|
||||
berp: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
bff: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
bgzf: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
bibdb: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
bidirectionalization-combined: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
bidispec: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
BigPixel: [ x86_64-darwin ]
|
||||
@@ -417,6 +420,7 @@ dont-distribute-packages:
|
||||
bindings-sc3: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
bindings-sipc: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
bindings-svm: [ x86_64-darwin ]
|
||||
bindings-wlc: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
binembed-example: [ x86_64-darwin ]
|
||||
bio: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
Biobase: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
@@ -766,6 +770,7 @@ dont-distribute-packages:
|
||||
craftwerk-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
craftwerk-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
craftwerk: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
craze: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
crc16: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
crf-chain1-constrained: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
crf-chain1: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
@@ -778,6 +783,7 @@ dont-distribute-packages:
|
||||
crunghc: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
crypto-cipher-benchmarks: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
crypto-enigma: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
cryptonite-openssl: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
cryptsy-api: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
crystalfontz: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
cse-ghc-plugin: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
@@ -854,6 +860,7 @@ dont-distribute-packages:
|
||||
ddc-driver: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
ddc-source-tetra: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
ddc-tools: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
ddc-war: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
ddci-core: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
dead-simple-json: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
decepticons: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
@@ -913,6 +920,7 @@ dont-distribute-packages:
|
||||
DifferenceLogic: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
DifferentialEvolution: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
digestive-functors-hsp: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
DigitalOcean: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
DimensionalHash: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
dingo-core: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
dingo-example: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
@@ -925,6 +933,7 @@ dont-distribute-packages:
|
||||
direct-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
directed-cubical: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
dirfiles: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
discogs-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
discount: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
disjoint-set: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
DisTract: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
@@ -977,6 +986,7 @@ dont-distribute-packages:
|
||||
dropbox-sdk: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
dropsolve: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
ds-kanren: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
dsh-sql: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
dsmc-tools: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
dsmc: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
DSTM: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
@@ -1237,7 +1247,7 @@ dont-distribute-packages:
|
||||
funsat: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
future: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
fuzzytime: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
fwgl-glfw: [ i686-linux, x86_64-darwin ]
|
||||
fwgl-glfw: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
fwgl: [ i686-linux ]
|
||||
g-npm: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
gact: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
@@ -1303,6 +1313,10 @@ dont-distribute-packages:
|
||||
gi-girepository: [ i686-linux, x86_64-darwin ]
|
||||
gi-glib: [ i686-linux ]
|
||||
gi-gobject: [ i686-linux ]
|
||||
gi-gst: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
gi-gstaudio: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
gi-gstbase: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
gi-gstvideo: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
gi-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
gi-javascriptcore: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
gi-notify: [ i686-linux, x86_64-darwin ]
|
||||
@@ -1344,13 +1358,13 @@ dont-distribute-packages:
|
||||
glome-hs: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
GlomeTrace: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
GlomeView: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
gloss-accelerate: [ x86_64-darwin ]
|
||||
gloss-accelerate: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
gloss-algorithms: [ x86_64-darwin ]
|
||||
gloss-banana: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
gloss-devil: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
gloss-examples: [ x86_64-darwin ]
|
||||
gloss-game: [ x86_64-darwin ]
|
||||
gloss-juicy: [ x86_64-darwin ]
|
||||
gloss-game: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
gloss-juicy: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
gloss-raster: [ x86_64-darwin ]
|
||||
gloss-rendering: [ x86_64-darwin ]
|
||||
gloss-sodium: [ x86_64-darwin ]
|
||||
@@ -1602,6 +1616,7 @@ dont-distribute-packages:
|
||||
haskell-mpi: [ x86_64-darwin ]
|
||||
haskell-names: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
haskell-openflow: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
haskell-packages: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
haskell-pdf-presenter: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
haskell-platform-test: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
haskell-plot: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
@@ -1776,6 +1791,7 @@ dont-distribute-packages:
|
||||
hgithub: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
hgom: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
HGraphStorage: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
hgrev: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
hgrib: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
hharp: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
HHDL: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
@@ -1806,6 +1822,7 @@ dont-distribute-packages:
|
||||
HipmunkPlayground: [ x86_64-darwin ]
|
||||
hircules: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
hirt: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
Hish: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
hissmetrics: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
hist-pl-fusion: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
hist-pl-lmf: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
@@ -1903,6 +1920,8 @@ dont-distribute-packages:
|
||||
hp2any-core: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
hp2any-graph: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
hp2any-manager: [ i686-linux, x86_64-linux, x86_64-darwin ]
|
||||
hpaco-lib: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
hpaco: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
hpage: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
hpapi: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
hpaste: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
@@ -2125,7 +2144,7 @@ dont-distribute-packages:
|
||||
imm: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
imparse: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
imperative-edsl-vhdl: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
imperative-edsl: [ i686-linux, x86_64-darwin ]
|
||||
imperative-edsl: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
ImperativeHaskell: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
improve: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
INblobs: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
@@ -2148,6 +2167,7 @@ dont-distribute-packages:
|
||||
inilist: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
inline-c-cpp: [ x86_64-darwin ]
|
||||
inline-r: [ i686-linux, x86_64-darwin ]
|
||||
instant-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
instant-zipper: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
integer-pure: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
intel-aes: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
@@ -2230,6 +2250,7 @@ dont-distribute-packages:
|
||||
JSONb: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
JsonGrammar: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
jsonresume: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
jsonschema-gen: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
jspath: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
judy: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
jukebox: [ x86_64-darwin ]
|
||||
@@ -2512,8 +2533,8 @@ dont-distribute-packages:
|
||||
manatee-welcome: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
manatee: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
mandulia: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
manifold-random: [ x86_64-darwin ]
|
||||
manifolds: [ x86_64-darwin ]
|
||||
manifold-random: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
manifolds: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
mappy: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
marionetta: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
markdown-kate: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
@@ -2595,6 +2616,7 @@ dont-distribute-packages:
|
||||
modular-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
module-management: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
Moe: [ x86_64-darwin ]
|
||||
MoeDict: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
mohws: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
monad-abort-fd: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
monad-atom-simple: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
@@ -2822,6 +2844,7 @@ dont-distribute-packages:
|
||||
OpenVG: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
OpenVGRaw: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
Operads: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
operational-alacarte: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
optimal-blocks: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
optimusprime: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
orchestrate: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
@@ -2978,6 +3001,7 @@ dont-distribute-packages:
|
||||
posix-realtime: [ x86_64-darwin ]
|
||||
posix-timer: [ x86_64-darwin ]
|
||||
posix-waitpid: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
postcodes: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
postgresql-simple-typed: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
postgresql-typed: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
PostgreSQL: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
@@ -3411,6 +3435,7 @@ dont-distribute-packages:
|
||||
sirkel: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
sized: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
skeleton: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
skulk: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
skype4hs: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
slack: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
slidemews: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
@@ -3574,6 +3599,7 @@ dont-distribute-packages:
|
||||
syb-extras: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
sylvia: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
sym-plot: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
sym: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
symengine-hs: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
sync-mht: [ i686-linux ]
|
||||
sync: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
@@ -3692,6 +3718,7 @@ dont-distribute-packages:
|
||||
time-series: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
time-w3c: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
timecalc: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
timelike-clock: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
timemap: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
timeout: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
timeparsers: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
@@ -3780,6 +3807,7 @@ dont-distribute-packages:
|
||||
typeable-th: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
TypeClass: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
typed-spreadsheet: [ x86_64-darwin ]
|
||||
typed-wire-utils: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
typed-wire: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
typedquery: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
typehash: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
@@ -3846,6 +3874,7 @@ dont-distribute-packages:
|
||||
vacuum: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
vampire: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
var: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
varying: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
vaultaire-common: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
vcache-trie: [ x86_64-darwin ]
|
||||
vcache: [ x86_64-darwin ]
|
||||
@@ -3870,6 +3899,7 @@ dont-distribute-packages:
|
||||
vintage-basic: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
vinyl-gl: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
vinyl-json: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
vinyl-plus: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
vinyl-vectors: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
virthualenv: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
vision: [ i686-linux, x86_64-darwin, x86_64-linux ]
|
||||
|
||||
@@ -965,6 +965,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1341,6 +1342,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -3027,6 +3029,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4064,6 +4067,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4830,6 +4834,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5137,12 +5142,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5229,6 +5237,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5562,6 +5571,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5690,6 +5700,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6981,7 +6992,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7148,6 +7161,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular" = doDistribute super."regular_0_3_4_3";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
@@ -8552,6 +8566,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = dontDistribute super."type-list";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -965,6 +965,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1341,6 +1342,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -3027,6 +3029,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4064,6 +4067,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4830,6 +4834,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5137,12 +5142,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5229,6 +5237,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5562,6 +5571,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5690,6 +5700,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6981,7 +6992,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7148,6 +7161,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular" = doDistribute super."regular_0_3_4_3";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
@@ -8552,6 +8566,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = dontDistribute super."type-list";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -965,6 +965,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1341,6 +1342,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -3027,6 +3029,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4064,6 +4067,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4830,6 +4834,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5137,12 +5142,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5229,6 +5237,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5562,6 +5571,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5690,6 +5700,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6981,7 +6992,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7148,6 +7161,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular" = doDistribute super."regular_0_3_4_3";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
@@ -8552,6 +8566,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = dontDistribute super."type-list";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -965,6 +965,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1341,6 +1342,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -3027,6 +3029,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4064,6 +4067,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4830,6 +4834,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5137,12 +5142,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5229,6 +5237,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5562,6 +5571,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5690,6 +5700,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6981,7 +6992,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7148,6 +7161,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular" = doDistribute super."regular_0_3_4_3";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
@@ -8552,6 +8566,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = dontDistribute super."type-list";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -965,6 +965,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1341,6 +1342,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -3026,6 +3028,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4061,6 +4064,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4827,6 +4831,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5134,12 +5139,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5226,6 +5234,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5559,6 +5568,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5687,6 +5697,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6978,7 +6989,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7145,6 +7158,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular" = doDistribute super."regular_0_3_4_3";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
@@ -8548,6 +8562,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = dontDistribute super."type-list";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -965,6 +965,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1341,6 +1342,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -3026,6 +3028,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4061,6 +4064,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4827,6 +4831,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5134,12 +5139,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5226,6 +5234,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5559,6 +5568,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5687,6 +5697,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6978,7 +6989,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7145,6 +7158,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular" = doDistribute super."regular_0_3_4_3";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
@@ -8548,6 +8562,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = dontDistribute super."type-list";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -964,6 +964,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1340,6 +1341,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -3025,6 +3027,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4060,6 +4063,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4825,6 +4829,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5132,12 +5137,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5224,6 +5232,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5557,6 +5566,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5685,6 +5695,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6976,7 +6987,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7143,6 +7156,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8545,6 +8559,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = dontDistribute super."type-list";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -964,6 +964,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1340,6 +1341,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -3025,6 +3027,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4060,6 +4063,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4825,6 +4829,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5132,12 +5137,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5224,6 +5232,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5557,6 +5566,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5685,6 +5695,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6976,7 +6987,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7143,6 +7156,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8545,6 +8559,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = dontDistribute super."type-list";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -961,6 +961,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1337,6 +1338,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -3016,6 +3018,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4052,6 +4055,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4816,6 +4820,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5123,12 +5128,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5215,6 +5223,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5548,6 +5557,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5676,6 +5686,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6967,7 +6978,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7134,6 +7147,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8534,6 +8548,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_0";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -961,6 +961,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1337,6 +1338,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -3013,6 +3015,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4048,6 +4051,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4810,6 +4814,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5117,12 +5122,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5209,6 +5217,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5542,6 +5551,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5670,6 +5680,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6960,7 +6971,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7127,6 +7140,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8522,6 +8536,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_0";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -960,6 +960,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1336,6 +1337,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -3009,6 +3011,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4038,6 +4041,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4799,6 +4803,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5101,12 +5106,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5193,6 +5201,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5525,6 +5534,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5653,6 +5663,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6940,7 +6951,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7106,6 +7119,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8495,6 +8509,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -960,6 +960,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1336,6 +1337,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -3009,6 +3011,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4037,6 +4040,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4798,6 +4802,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5098,12 +5103,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5190,6 +5198,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5521,6 +5530,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5649,6 +5659,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6936,7 +6947,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7102,6 +7115,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8491,6 +8505,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -960,6 +960,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1336,6 +1337,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -3009,6 +3011,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4037,6 +4040,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4797,6 +4801,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5097,12 +5102,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5189,6 +5197,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5520,6 +5529,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5648,6 +5658,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6935,7 +6946,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7101,6 +7114,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8490,6 +8504,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -960,6 +960,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1336,6 +1337,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -3009,6 +3011,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4036,6 +4039,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4796,6 +4800,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5096,12 +5101,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5188,6 +5196,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5519,6 +5528,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5647,6 +5657,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6934,7 +6945,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7100,6 +7113,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8488,6 +8502,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -959,6 +959,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1335,6 +1336,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -3006,6 +3008,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4033,6 +4036,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4793,6 +4797,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5093,12 +5098,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5185,6 +5193,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5516,6 +5525,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5644,6 +5654,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6929,7 +6940,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7095,6 +7108,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8483,6 +8497,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -958,6 +958,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1334,6 +1335,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -3002,6 +3004,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4029,6 +4032,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4789,6 +4793,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5089,12 +5094,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5181,6 +5189,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5512,6 +5521,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5640,6 +5650,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6922,7 +6933,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7088,6 +7101,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8474,6 +8488,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -961,6 +961,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1337,6 +1338,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -3011,6 +3013,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4045,6 +4048,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4807,6 +4811,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5114,12 +5119,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5206,6 +5214,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5539,6 +5548,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5667,6 +5677,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6956,7 +6967,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7122,6 +7135,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8516,6 +8530,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_0";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -960,6 +960,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1336,6 +1337,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -3010,6 +3012,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4043,6 +4046,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4804,6 +4808,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5111,12 +5116,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5203,6 +5211,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5536,6 +5545,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5664,6 +5674,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6952,7 +6963,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7118,6 +7131,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8511,6 +8525,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_0";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -960,6 +960,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1336,6 +1337,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -3009,6 +3011,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4042,6 +4045,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4803,6 +4807,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5110,12 +5115,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5202,6 +5210,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5535,6 +5544,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5663,6 +5673,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6951,7 +6962,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7117,6 +7130,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8509,6 +8523,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_0";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -960,6 +960,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1336,6 +1337,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -3009,6 +3011,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4042,6 +4045,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4803,6 +4807,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5105,12 +5110,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5197,6 +5205,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5530,6 +5539,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5658,6 +5668,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6946,7 +6957,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7112,6 +7125,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8504,6 +8518,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -960,6 +960,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1336,6 +1337,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -3009,6 +3011,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4039,6 +4042,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4800,6 +4804,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5102,12 +5107,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5194,6 +5202,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5526,6 +5535,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5654,6 +5664,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6942,7 +6953,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7108,6 +7121,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8499,6 +8513,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -960,6 +960,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1336,6 +1337,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -3009,6 +3011,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4038,6 +4041,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4799,6 +4803,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5101,12 +5106,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5193,6 +5201,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5525,6 +5534,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5653,6 +5663,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6941,7 +6952,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7107,6 +7120,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8498,6 +8512,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -952,6 +952,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1328,6 +1329,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -2990,6 +2992,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4012,6 +4015,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4769,6 +4773,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5064,12 +5069,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5154,6 +5162,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5480,6 +5489,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5607,6 +5617,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6877,7 +6888,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7043,6 +7056,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8421,6 +8435,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -952,6 +952,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1328,6 +1329,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -2989,6 +2991,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4011,6 +4014,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4768,6 +4772,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5063,12 +5068,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5153,6 +5161,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5479,6 +5488,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5606,6 +5616,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6876,7 +6887,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7042,6 +7055,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8420,6 +8434,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -949,6 +949,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1323,6 +1324,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -2975,6 +2977,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -3992,6 +3995,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4747,6 +4751,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5041,12 +5046,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5129,6 +5137,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5454,6 +5463,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5581,6 +5591,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6844,7 +6855,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7010,6 +7023,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8376,6 +8390,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -949,6 +949,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1322,6 +1323,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -2974,6 +2976,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -3990,6 +3993,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4744,6 +4748,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5038,12 +5043,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5125,6 +5133,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5450,6 +5459,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5577,6 +5587,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6838,7 +6849,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7004,6 +7017,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8367,6 +8381,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -949,6 +949,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1322,6 +1323,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -2974,6 +2976,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -3990,6 +3993,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4744,6 +4748,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5038,12 +5043,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5125,6 +5133,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5450,6 +5459,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5577,6 +5587,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6838,7 +6849,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7004,6 +7017,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8366,6 +8380,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -949,6 +949,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1322,6 +1323,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -2974,6 +2976,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -3989,6 +3992,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4743,6 +4747,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5036,12 +5041,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5123,6 +5131,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5448,6 +5457,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5575,6 +5585,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6836,7 +6847,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7002,6 +7015,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8364,6 +8378,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -949,6 +949,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1322,6 +1323,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -2974,6 +2976,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -3988,6 +3991,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4741,6 +4745,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5034,12 +5039,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5121,6 +5129,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5446,6 +5455,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5573,6 +5583,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6834,7 +6845,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7000,6 +7013,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8361,6 +8375,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -949,6 +949,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1322,6 +1323,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -2973,6 +2975,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -3987,6 +3990,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4740,6 +4744,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5033,12 +5038,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5120,6 +5128,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5445,6 +5454,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5572,6 +5582,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6832,7 +6843,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -6998,6 +7011,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8358,6 +8372,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -949,6 +949,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1322,6 +1323,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -2970,6 +2972,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -3983,6 +3986,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4736,6 +4740,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5029,12 +5034,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5116,6 +5124,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5440,6 +5449,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5567,6 +5577,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6827,7 +6838,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -6993,6 +7006,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8353,6 +8367,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -949,6 +949,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1322,6 +1323,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -2968,6 +2970,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -3979,6 +3982,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4732,6 +4736,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5025,12 +5030,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5112,6 +5120,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5436,6 +5445,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5563,6 +5573,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6822,7 +6833,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -6988,6 +7001,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8348,6 +8362,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -949,6 +949,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1322,6 +1323,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -2966,6 +2968,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -3977,6 +3980,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4730,6 +4734,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5023,12 +5028,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5110,6 +5118,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5434,6 +5443,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5561,6 +5571,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6819,7 +6830,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -6985,6 +6998,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8344,6 +8358,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -949,6 +949,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1322,6 +1323,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -2966,6 +2968,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -3976,6 +3979,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4729,6 +4733,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5022,12 +5027,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5109,6 +5117,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5433,6 +5442,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5560,6 +5570,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6817,7 +6828,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -6983,6 +6996,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8341,6 +8355,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -951,6 +951,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1327,6 +1328,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -2986,6 +2988,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4008,6 +4011,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4765,6 +4769,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5060,12 +5065,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5150,6 +5158,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5476,6 +5485,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5603,6 +5613,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6873,7 +6884,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7039,6 +7052,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8417,6 +8431,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -949,6 +949,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1322,6 +1323,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -2965,6 +2967,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -3975,6 +3978,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4728,6 +4732,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5021,12 +5026,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5108,6 +5116,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5432,6 +5441,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5559,6 +5569,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6815,7 +6826,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -6981,6 +6994,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8338,6 +8352,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -949,6 +949,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1322,6 +1323,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -2965,6 +2967,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -3975,6 +3978,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4728,6 +4732,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5021,12 +5026,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5108,6 +5116,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5432,6 +5441,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5559,6 +5569,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6814,7 +6825,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -6980,6 +6993,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8337,6 +8351,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -949,6 +949,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1322,6 +1323,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -2965,6 +2967,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -3975,6 +3978,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4727,6 +4731,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5020,12 +5025,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5107,6 +5115,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5431,6 +5440,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5558,6 +5568,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6813,7 +6824,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -6979,6 +6992,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8336,6 +8350,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -951,6 +951,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1327,6 +1328,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -2986,6 +2988,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4007,6 +4010,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4764,6 +4768,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5058,12 +5063,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5148,6 +5156,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5474,6 +5483,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5601,6 +5611,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6871,7 +6882,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7037,6 +7050,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8415,6 +8429,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -951,6 +951,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1327,6 +1328,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -2985,6 +2987,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4006,6 +4009,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4763,6 +4767,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5057,12 +5062,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5147,6 +5155,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5473,6 +5482,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5600,6 +5610,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6869,7 +6880,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7035,6 +7048,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8412,6 +8426,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -951,6 +951,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1327,6 +1328,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -2984,6 +2986,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4005,6 +4008,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4762,6 +4766,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5056,12 +5061,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5146,6 +5154,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5472,6 +5481,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5599,6 +5609,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6868,7 +6879,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7034,6 +7047,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8411,6 +8425,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -951,6 +951,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1325,6 +1326,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -2981,6 +2983,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -4000,6 +4003,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4757,6 +4761,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5051,12 +5056,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5141,6 +5149,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5467,6 +5476,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5594,6 +5604,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6862,7 +6873,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7028,6 +7041,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8403,6 +8417,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -950,6 +950,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1324,6 +1325,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -2980,6 +2982,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -3999,6 +4002,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4756,6 +4760,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5050,12 +5055,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5140,6 +5148,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5466,6 +5475,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5593,6 +5603,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6862,7 +6873,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7028,6 +7041,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8403,6 +8417,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -949,6 +949,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1323,6 +1324,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -2979,6 +2981,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -3997,6 +4000,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4754,6 +4758,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5048,12 +5053,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5138,6 +5146,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5464,6 +5473,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5591,6 +5601,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6860,7 +6871,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7026,6 +7039,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8397,6 +8411,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -949,6 +949,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1323,6 +1324,7 @@ self: super: {
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"angel" = dontDistribute super."angel";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
|
||||
"anonymous-sums" = dontDistribute super."anonymous-sums";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
@@ -2976,6 +2978,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -3993,6 +3996,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4748,6 +4752,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_3";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -5042,12 +5047,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -5132,6 +5140,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5457,6 +5466,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
|
||||
@@ -5584,6 +5594,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines" = doDistribute super."machines_0_4_1";
|
||||
@@ -6851,7 +6862,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -7017,6 +7030,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
"regular-web" = dontDistribute super."regular-web";
|
||||
@@ -8384,6 +8398,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_0_0_1";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -558,6 +558,7 @@ self: super: {
|
||||
"INblobs" = dontDistribute super."INblobs";
|
||||
"IOR" = dontDistribute super."IOR";
|
||||
"IORefCAS" = dontDistribute super."IORefCAS";
|
||||
"IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2";
|
||||
"IcoGrid" = dontDistribute super."IcoGrid";
|
||||
"Imlib" = dontDistribute super."Imlib";
|
||||
"ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
|
||||
@@ -930,6 +931,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1298,6 +1300,7 @@ self: super: {
|
||||
"android" = dontDistribute super."android";
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
"ansi-pretty" = dontDistribute super."ansi-pretty";
|
||||
@@ -2891,6 +2894,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -3011,6 +3015,7 @@ self: super: {
|
||||
"fallingblocks" = dontDistribute super."fallingblocks";
|
||||
"family-tree" = dontDistribute super."family-tree";
|
||||
"farmhash" = dontDistribute super."farmhash";
|
||||
"fast-builder" = doDistribute super."fast-builder_0_0_0_2";
|
||||
"fast-digits" = dontDistribute super."fast-digits";
|
||||
"fast-logger" = doDistribute super."fast-logger_2_4_0";
|
||||
"fast-math" = dontDistribute super."fast-math";
|
||||
@@ -3883,6 +3888,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4626,6 +4632,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -4905,12 +4912,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -4991,6 +5001,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5296,6 +5307,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3";
|
||||
@@ -5422,6 +5434,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines-binary" = dontDistribute super."machines-binary";
|
||||
@@ -6642,7 +6655,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -6805,6 +6820,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular" = dontDistribute super."regular";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
@@ -8136,6 +8152,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_2_0_0";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -558,6 +558,7 @@ self: super: {
|
||||
"INblobs" = dontDistribute super."INblobs";
|
||||
"IOR" = dontDistribute super."IOR";
|
||||
"IORefCAS" = dontDistribute super."IORefCAS";
|
||||
"IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2";
|
||||
"IcoGrid" = dontDistribute super."IcoGrid";
|
||||
"Imlib" = dontDistribute super."Imlib";
|
||||
"ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
|
||||
@@ -930,6 +931,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1297,6 +1299,7 @@ self: super: {
|
||||
"android" = dontDistribute super."android";
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
"ansi-pretty" = dontDistribute super."ansi-pretty";
|
||||
@@ -2890,6 +2893,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -3010,7 +3014,9 @@ self: super: {
|
||||
"fallingblocks" = dontDistribute super."fallingblocks";
|
||||
"family-tree" = dontDistribute super."family-tree";
|
||||
"farmhash" = dontDistribute super."farmhash";
|
||||
"fast-builder" = doDistribute super."fast-builder_0_0_0_2";
|
||||
"fast-digits" = dontDistribute super."fast-digits";
|
||||
"fast-logger" = doDistribute super."fast-logger_2_4_1";
|
||||
"fast-math" = dontDistribute super."fast-math";
|
||||
"fast-tags" = dontDistribute super."fast-tags";
|
||||
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
|
||||
@@ -3880,6 +3886,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4623,6 +4630,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -4902,12 +4910,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -4988,6 +4999,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5293,6 +5305,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3";
|
||||
@@ -5418,6 +5431,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines-binary" = dontDistribute super."machines-binary";
|
||||
@@ -6636,7 +6650,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -6799,6 +6815,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular" = dontDistribute super."regular";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
@@ -8129,6 +8146,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_2_0_0";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -556,6 +556,7 @@ self: super: {
|
||||
"INblobs" = dontDistribute super."INblobs";
|
||||
"IOR" = dontDistribute super."IOR";
|
||||
"IORefCAS" = dontDistribute super."IORefCAS";
|
||||
"IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2";
|
||||
"IcoGrid" = dontDistribute super."IcoGrid";
|
||||
"Imlib" = dontDistribute super."Imlib";
|
||||
"ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
|
||||
@@ -927,6 +928,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1294,6 +1296,7 @@ self: super: {
|
||||
"android" = dontDistribute super."android";
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
"ansi-pretty" = dontDistribute super."ansi-pretty";
|
||||
@@ -2872,6 +2875,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -2992,7 +2996,9 @@ self: super: {
|
||||
"fallingblocks" = dontDistribute super."fallingblocks";
|
||||
"family-tree" = dontDistribute super."family-tree";
|
||||
"farmhash" = dontDistribute super."farmhash";
|
||||
"fast-builder" = doDistribute super."fast-builder_0_0_0_2";
|
||||
"fast-digits" = dontDistribute super."fast-digits";
|
||||
"fast-logger" = doDistribute super."fast-logger_2_4_1";
|
||||
"fast-math" = dontDistribute super."fast-math";
|
||||
"fast-tags" = dontDistribute super."fast-tags";
|
||||
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
|
||||
@@ -3856,6 +3862,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4595,6 +4602,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -4872,12 +4880,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -4958,6 +4969,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5258,6 +5270,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4";
|
||||
@@ -5383,6 +5396,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines-binary" = dontDistribute super."machines-binary";
|
||||
@@ -6588,7 +6602,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -6750,6 +6766,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular" = dontDistribute super."regular";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
@@ -8070,6 +8087,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_2_0_0";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -556,6 +556,7 @@ self: super: {
|
||||
"INblobs" = dontDistribute super."INblobs";
|
||||
"IOR" = dontDistribute super."IOR";
|
||||
"IORefCAS" = dontDistribute super."IORefCAS";
|
||||
"IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2";
|
||||
"IcoGrid" = dontDistribute super."IcoGrid";
|
||||
"Imlib" = dontDistribute super."Imlib";
|
||||
"ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
|
||||
@@ -927,6 +928,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1294,6 +1296,7 @@ self: super: {
|
||||
"android" = dontDistribute super."android";
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
"ansi-pretty" = dontDistribute super."ansi-pretty";
|
||||
@@ -2871,6 +2874,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -2990,7 +2994,9 @@ self: super: {
|
||||
"fallingblocks" = dontDistribute super."fallingblocks";
|
||||
"family-tree" = dontDistribute super."family-tree";
|
||||
"farmhash" = dontDistribute super."farmhash";
|
||||
"fast-builder" = doDistribute super."fast-builder_0_0_0_2";
|
||||
"fast-digits" = dontDistribute super."fast-digits";
|
||||
"fast-logger" = doDistribute super."fast-logger_2_4_1";
|
||||
"fast-math" = dontDistribute super."fast-math";
|
||||
"fast-tags" = dontDistribute super."fast-tags";
|
||||
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
|
||||
@@ -3854,6 +3860,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4593,6 +4600,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -4870,12 +4878,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -4956,6 +4967,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5256,6 +5268,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4";
|
||||
@@ -5381,6 +5394,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines-binary" = dontDistribute super."machines-binary";
|
||||
@@ -6585,7 +6599,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -6747,6 +6763,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular" = dontDistribute super."regular";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
@@ -8067,6 +8084,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_2_0_0";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -556,6 +556,7 @@ self: super: {
|
||||
"INblobs" = dontDistribute super."INblobs";
|
||||
"IOR" = dontDistribute super."IOR";
|
||||
"IORefCAS" = dontDistribute super."IORefCAS";
|
||||
"IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2";
|
||||
"IcoGrid" = dontDistribute super."IcoGrid";
|
||||
"Imlib" = dontDistribute super."Imlib";
|
||||
"ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
|
||||
@@ -927,6 +928,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1294,6 +1296,7 @@ self: super: {
|
||||
"android" = dontDistribute super."android";
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
"ansi-pretty" = dontDistribute super."ansi-pretty";
|
||||
@@ -2870,6 +2873,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -2989,7 +2993,9 @@ self: super: {
|
||||
"fallingblocks" = dontDistribute super."fallingblocks";
|
||||
"family-tree" = dontDistribute super."family-tree";
|
||||
"farmhash" = dontDistribute super."farmhash";
|
||||
"fast-builder" = doDistribute super."fast-builder_0_0_0_2";
|
||||
"fast-digits" = dontDistribute super."fast-digits";
|
||||
"fast-logger" = doDistribute super."fast-logger_2_4_1";
|
||||
"fast-math" = dontDistribute super."fast-math";
|
||||
"fast-tags" = dontDistribute super."fast-tags";
|
||||
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
|
||||
@@ -3852,6 +3858,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4591,6 +4598,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -4868,12 +4876,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -4954,6 +4965,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5254,6 +5266,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4";
|
||||
@@ -5379,6 +5392,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines-binary" = dontDistribute super."machines-binary";
|
||||
@@ -6582,7 +6596,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -6744,6 +6760,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular" = dontDistribute super."regular";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
@@ -8062,6 +8079,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_2_0_0";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -556,6 +556,7 @@ self: super: {
|
||||
"INblobs" = dontDistribute super."INblobs";
|
||||
"IOR" = dontDistribute super."IOR";
|
||||
"IORefCAS" = dontDistribute super."IORefCAS";
|
||||
"IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2";
|
||||
"IcoGrid" = dontDistribute super."IcoGrid";
|
||||
"Imlib" = dontDistribute super."Imlib";
|
||||
"ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
|
||||
@@ -927,6 +928,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1294,6 +1296,7 @@ self: super: {
|
||||
"android" = dontDistribute super."android";
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
"ansi-pretty" = dontDistribute super."ansi-pretty";
|
||||
@@ -2870,6 +2873,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -2989,7 +2993,9 @@ self: super: {
|
||||
"fallingblocks" = dontDistribute super."fallingblocks";
|
||||
"family-tree" = dontDistribute super."family-tree";
|
||||
"farmhash" = dontDistribute super."farmhash";
|
||||
"fast-builder" = doDistribute super."fast-builder_0_0_0_2";
|
||||
"fast-digits" = dontDistribute super."fast-digits";
|
||||
"fast-logger" = doDistribute super."fast-logger_2_4_1";
|
||||
"fast-math" = dontDistribute super."fast-math";
|
||||
"fast-tags" = dontDistribute super."fast-tags";
|
||||
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
|
||||
@@ -3852,6 +3858,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4590,6 +4597,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -4867,12 +4875,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -4953,6 +4964,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5252,6 +5264,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4";
|
||||
@@ -5377,6 +5390,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines-binary" = dontDistribute super."machines-binary";
|
||||
@@ -6579,7 +6593,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -6741,6 +6757,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular" = dontDistribute super."regular";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
@@ -8059,6 +8076,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_2_0_0";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -556,6 +556,7 @@ self: super: {
|
||||
"INblobs" = dontDistribute super."INblobs";
|
||||
"IOR" = dontDistribute super."IOR";
|
||||
"IORefCAS" = dontDistribute super."IORefCAS";
|
||||
"IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2";
|
||||
"IcoGrid" = dontDistribute super."IcoGrid";
|
||||
"Imlib" = dontDistribute super."Imlib";
|
||||
"ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
|
||||
@@ -927,6 +928,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1292,6 +1294,7 @@ self: super: {
|
||||
"android" = dontDistribute super."android";
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
"ansi-pretty" = dontDistribute super."ansi-pretty";
|
||||
@@ -2864,6 +2867,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -2983,7 +2987,9 @@ self: super: {
|
||||
"fallingblocks" = dontDistribute super."fallingblocks";
|
||||
"family-tree" = dontDistribute super."family-tree";
|
||||
"farmhash" = dontDistribute super."farmhash";
|
||||
"fast-builder" = doDistribute super."fast-builder_0_0_0_2";
|
||||
"fast-digits" = dontDistribute super."fast-digits";
|
||||
"fast-logger" = doDistribute super."fast-logger_2_4_1";
|
||||
"fast-math" = dontDistribute super."fast-math";
|
||||
"fast-tags" = dontDistribute super."fast-tags";
|
||||
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
|
||||
@@ -3846,6 +3852,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4583,6 +4590,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
@@ -4860,12 +4868,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -4946,6 +4957,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5245,6 +5257,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4";
|
||||
@@ -5370,6 +5383,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines-binary" = dontDistribute super."machines-binary";
|
||||
@@ -6572,7 +6586,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -6734,6 +6750,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular" = dontDistribute super."regular";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
@@ -8052,6 +8069,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_2_0_0";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
@@ -556,6 +556,7 @@ self: super: {
|
||||
"INblobs" = dontDistribute super."INblobs";
|
||||
"IOR" = dontDistribute super."IOR";
|
||||
"IORefCAS" = dontDistribute super."IORefCAS";
|
||||
"IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2";
|
||||
"IcoGrid" = dontDistribute super."IcoGrid";
|
||||
"Imlib" = dontDistribute super."Imlib";
|
||||
"ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
|
||||
@@ -927,6 +928,7 @@ self: super: {
|
||||
"TableAlgebra" = dontDistribute super."TableAlgebra";
|
||||
"Tables" = dontDistribute super."Tables";
|
||||
"Tablify" = dontDistribute super."Tablify";
|
||||
"Tahin" = dontDistribute super."Tahin";
|
||||
"Tainted" = dontDistribute super."Tainted";
|
||||
"Takusen" = dontDistribute super."Takusen";
|
||||
"Tape" = dontDistribute super."Tape";
|
||||
@@ -1292,6 +1294,7 @@ self: super: {
|
||||
"android" = dontDistribute super."android";
|
||||
"android-lint-summary" = dontDistribute super."android-lint-summary";
|
||||
"animalcase" = dontDistribute super."animalcase";
|
||||
"annihilator" = dontDistribute super."annihilator";
|
||||
"annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0";
|
||||
"anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
|
||||
"ansi-pretty" = dontDistribute super."ansi-pretty";
|
||||
@@ -2864,6 +2867,7 @@ self: super: {
|
||||
"enummapset-th" = dontDistribute super."enummapset-th";
|
||||
"enumset" = dontDistribute super."enumset";
|
||||
"env-parser" = dontDistribute super."env-parser";
|
||||
"envelope" = dontDistribute super."envelope";
|
||||
"envparse" = dontDistribute super."envparse";
|
||||
"envy" = dontDistribute super."envy";
|
||||
"epanet-haskell" = dontDistribute super."epanet-haskell";
|
||||
@@ -2983,7 +2987,9 @@ self: super: {
|
||||
"fallingblocks" = dontDistribute super."fallingblocks";
|
||||
"family-tree" = dontDistribute super."family-tree";
|
||||
"farmhash" = dontDistribute super."farmhash";
|
||||
"fast-builder" = doDistribute super."fast-builder_0_0_0_2";
|
||||
"fast-digits" = dontDistribute super."fast-digits";
|
||||
"fast-logger" = doDistribute super."fast-logger_2_4_1";
|
||||
"fast-math" = dontDistribute super."fast-math";
|
||||
"fast-tags" = dontDistribute super."fast-tags";
|
||||
"fast-tagsoup" = dontDistribute super."fast-tagsoup";
|
||||
@@ -3846,6 +3852,7 @@ self: super: {
|
||||
"happybara" = dontDistribute super."happybara";
|
||||
"happybara-webkit" = dontDistribute super."happybara-webkit";
|
||||
"happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
|
||||
"hapstone" = dontDistribute super."hapstone";
|
||||
"har" = dontDistribute super."har";
|
||||
"harchive" = dontDistribute super."harchive";
|
||||
"hardware-edsl" = dontDistribute super."hardware-edsl";
|
||||
@@ -4581,6 +4588,7 @@ self: super: {
|
||||
"http-monad" = dontDistribute super."http-monad";
|
||||
"http-proxy" = dontDistribute super."http-proxy";
|
||||
"http-querystring" = dontDistribute super."http-querystring";
|
||||
"http-response-decoder" = dontDistribute super."http-response-decoder";
|
||||
"http-server" = dontDistribute super."http-server";
|
||||
"http-shed" = dontDistribute super."http-shed";
|
||||
"http-test" = dontDistribute super."http-test";
|
||||
@@ -4857,12 +4865,15 @@ self: super: {
|
||||
"ivar-simple" = dontDistribute super."ivar-simple";
|
||||
"ivor" = dontDistribute super."ivor";
|
||||
"ivory" = dontDistribute super."ivory";
|
||||
"ivory-artifact" = dontDistribute super."ivory-artifact";
|
||||
"ivory-backend-c" = dontDistribute super."ivory-backend-c";
|
||||
"ivory-bitdata" = dontDistribute super."ivory-bitdata";
|
||||
"ivory-eval" = dontDistribute super."ivory-eval";
|
||||
"ivory-examples" = dontDistribute super."ivory-examples";
|
||||
"ivory-hw" = dontDistribute super."ivory-hw";
|
||||
"ivory-opts" = dontDistribute super."ivory-opts";
|
||||
"ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
|
||||
"ivory-serialize" = dontDistribute super."ivory-serialize";
|
||||
"ivory-stdlib" = dontDistribute super."ivory-stdlib";
|
||||
"ivy-web" = dontDistribute super."ivy-web";
|
||||
"ix-shapable" = dontDistribute super."ix-shapable";
|
||||
@@ -4943,6 +4954,7 @@ self: super: {
|
||||
"jsonsql" = dontDistribute super."jsonsql";
|
||||
"jsontsv" = dontDistribute super."jsontsv";
|
||||
"jspath" = dontDistribute super."jspath";
|
||||
"juandelacosa" = dontDistribute super."juandelacosa";
|
||||
"judy" = dontDistribute super."judy";
|
||||
"jukebox" = dontDistribute super."jukebox";
|
||||
"jump" = dontDistribute super."jump";
|
||||
@@ -5242,6 +5254,7 @@ self: super: {
|
||||
"lipsum-gen" = dontDistribute super."lipsum-gen";
|
||||
"liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
|
||||
"liquidhaskell" = dontDistribute super."liquidhaskell";
|
||||
"liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
|
||||
"lispparser" = dontDistribute super."lispparser";
|
||||
"list-extras" = dontDistribute super."list-extras";
|
||||
"list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4";
|
||||
@@ -5367,6 +5380,7 @@ self: super: {
|
||||
"lzma-streams" = dontDistribute super."lzma-streams";
|
||||
"maam" = dontDistribute super."maam";
|
||||
"mac" = dontDistribute super."mac";
|
||||
"macbeth-lib" = dontDistribute super."macbeth-lib";
|
||||
"maccatcher" = dontDistribute super."maccatcher";
|
||||
"machinecell" = dontDistribute super."machinecell";
|
||||
"machines-binary" = dontDistribute super."machines-binary";
|
||||
@@ -6569,7 +6583,9 @@ self: super: {
|
||||
"quiver-cell" = dontDistribute super."quiver-cell";
|
||||
"quiver-csv" = dontDistribute super."quiver-csv";
|
||||
"quiver-enumerator" = dontDistribute super."quiver-enumerator";
|
||||
"quiver-groups" = dontDistribute super."quiver-groups";
|
||||
"quiver-http" = dontDistribute super."quiver-http";
|
||||
"quiver-interleave" = dontDistribute super."quiver-interleave";
|
||||
"quoridor-hs" = dontDistribute super."quoridor-hs";
|
||||
"qux" = dontDistribute super."qux";
|
||||
"rabocsv2qif" = dontDistribute super."rabocsv2qif";
|
||||
@@ -6731,6 +6747,7 @@ self: super: {
|
||||
"regions-monadsfd" = dontDistribute super."regions-monadsfd";
|
||||
"regions-monadstf" = dontDistribute super."regions-monadstf";
|
||||
"regions-mtl" = dontDistribute super."regions-mtl";
|
||||
"register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
|
||||
"regress" = dontDistribute super."regress";
|
||||
"regular" = dontDistribute super."regular";
|
||||
"regular-extras" = dontDistribute super."regular-extras";
|
||||
@@ -8048,6 +8065,7 @@ self: super: {
|
||||
"type-level-tf" = dontDistribute super."type-level-tf";
|
||||
"type-list" = doDistribute super."type-list_0_2_0_0";
|
||||
"type-natural" = dontDistribute super."type-natural";
|
||||
"type-operators" = dontDistribute super."type-operators";
|
||||
"type-ord" = dontDistribute super."type-ord";
|
||||
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
|
||||
"type-prelude" = dontDistribute super."type-prelude";
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user