ardour: merge upstream master

This commit is contained in:
Florian Paul Schmidt 2015-10-16 00:36:06 +02:00
commit a8b7b385dc
150 changed files with 1720 additions and 564 deletions

View File

@ -1,6 +1,8 @@
if ! builtins ? nixVersion || builtins.compareVersions "1.8" builtins.nixVersion == 1 then
let requiredVersion = "1.10"; in
abort "This version of Nixpkgs requires Nix >= 1.8, please upgrade! See https://nixos.org/wiki/How_to_update_when_nix_is_too_old_to_evaluate_nixpkgs"
if ! builtins ? nixVersion || builtins.compareVersions requiredVersion builtins.nixVersion == 1 then
abort "This version of Nixpkgs requires Nix >= ${requiredVersion}, please upgrade! See https://nixos.org/wiki/How_to_update_when_Nix_is_too_old_to_evaluate_Nixpkgs"
else

View File

@ -81,6 +81,7 @@
dezgeg = "Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>";
dfoxfranke = "Daniel Fox Franke <dfoxfranke@gmail.com>";
dmalikov = "Dmitry Malikov <malikov.d.y@gmail.com>";
dochang = "Desmond O. Chang <dochang@gmail.com>";
doublec = "Chris Double <chris.double@double.co.nz>";
ebzzry = "Rommel Martinez <ebzzry@gmail.com>";
ederoyd46 = "Matthew Brown <matt@ederoyd.co.uk>";

View File

@ -469,6 +469,7 @@ rec {
mkBefore = mkOrder 500;
mkAfter = mkOrder 1500;
# Convenient property used to transfer all definitions and their
# properties from one option to another. This property is useful for
# renaming options, and also for including properties from another module
@ -498,4 +499,68 @@ rec {
/* Compatibility. */
fixMergeModules = modules: args: evalModules { inherit modules args; check = false; };
/* Return a module that causes a warning to be shown if the
specified option is defined. For example,
mkRemovedOptionModule [ "boot" "loader" "grub" "bootDevice" ]
causes a warning if the user defines boot.loader.grub.bootDevice.
*/
mkRemovedOptionModule = optionName:
{ options, ... }:
{ options = setAttrByPath optionName (mkOption {
visible = false;
});
config.warnings =
let opt = getAttrFromPath optionName options; in
optional opt.isDefined
"The option definition `${showOption optionName}' in ${showFiles opt.files} no longer has any effect; please remove it.";
};
/* Return a module that causes a warning to be shown if the
specified "from" option is defined; the defined value is however
forwarded to the "to" option. This can be used to rename options
while providing backward compatibility. For example,
mkRenamedOptionModule [ "boot" "copyKernels" ] [ "boot" "loader" "grub" "copyKernels" ]
forwards any definitions of boot.copyKernels to
boot.loader.grub.copyKernels while printing a warning.
*/
mkRenamedOptionModule = from: to: doRename {
inherit from to;
visible = false;
warn = true;
use = builtins.trace "Obsolete option `${showOption from}' is used. It was renamed to `${showOption to}'.";
};
/* Like mkRenamedOptionModule, but doesn't show a warning. */
mkAliasOptionModule = from: to: doRename {
inherit from to;
visible = true;
warn = false;
use = id;
};
doRename = { from, to, visible, warn, use }:
let
toOf = attrByPath to
(abort "Renaming error: option `${showOption to}' does not exists.");
in
{ config, options, ... }:
{ options = setAttrByPath from (mkOption {
description = "Alias of <option>${showOption to}</option>.";
apply = x: use (toOf config);
});
config = {
/*
warnings =
let opt = getAttrFromPath from options; in
optional (warn && opt.isDefined)
"The option `${showOption from}' defined in ${showFiles opt.files} has been renamed to `${showOption to}'.";
*/
} // setAttrByPath to (mkAliasDefinitions (getAttrFromPath from options));
};
}

View File

@ -550,4 +550,8 @@ in {
};
imports =
[ (mkAliasOptionModule [ "users" "extraUsers" ] [ "users" "users" ])
(mkAliasOptionModule [ "users" "extraGroups" ] [ "users" "groups" ])
];
}

View File

@ -152,6 +152,22 @@ sub pciCheck {
push @kernelModules, "wl";
}
# broadcom FullMac driver
# list taken from
# https://wireless.wiki.kernel.org/en/users/Drivers/brcm80211#brcmfmac
if ($vendor eq "0x14e4" &&
($device eq "0x43a3" || $device eq "0x43df" || $device eq "0x43ec" ||
$device eq "0x43d3" || $device eq "0x43d9" || $device eq "0x43e9" ||
$device eq "0x43ba" || $device eq "0x43bb" || $device eq "0x43bc" ||
$device eq "0xaa52" || $device eq "0x43ca" || $device eq "0x43cb" ||
$device eq "0x43cc" || $device eq "0x43c3" || $device eq "0x43c4" ||
$device eq "0x43c5"
) )
{
# we need e.g. brcmfmac43602-pcie.bin
push @imports, "<nixos/modules/hardware/network/broadcom-43xx.nix>";
}
# Can't rely on $module here, since the module may not be loaded
# due to missing firmware. Ideally we would check modules.pcimap
# here.

View File

@ -1,170 +1,88 @@
{ config, lib, options, ... }:
{ lib, ... }:
with lib;
let
{
imports = [
(mkRenamedOptionModule [ "environment" "x11Packages" ] [ "environment" "systemPackages" ])
(mkRenamedOptionModule [ "environment" "enableBashCompletion" ] [ "programs" "bash" "enableCompletion" ])
(mkRenamedOptionModule [ "environment" "nix" ] [ "nix" "package" ])
(mkRenamedOptionModule [ "fonts" "enableFontConfig" ] [ "fonts" "fontconfig" "enable" ])
(mkRenamedOptionModule [ "fonts" "extraFonts" ] [ "fonts" "fonts" ])
alias = from: to: rename {
inherit from to;
name = "Alias";
use = id;
define = id;
visible = true;
};
(mkRenamedOptionModule [ "security" "extraSetuidPrograms" ] [ "security" "setuidPrograms" ])
(mkRenamedOptionModule [ "networking" "enableWLAN" ] [ "networking" "wireless" "enable" ])
(mkRenamedOptionModule [ "networking" "enableRT73Firmware" ] [ "networking" "enableRalinkFirmware" ])
# warn option was renamed
obsolete = from: to: rename {
inherit from to;
name = "Obsolete name";
use = x: builtins.trace "Obsolete option `${showOption from}' is used. It was renamed to `${showOption to}'." x;
define = x: builtins.trace "Obsolete option `${showOption from}' is used. It was renamed to `${showOption to}'." x;
};
# Old Grub-related options.
(mkRenamedOptionModule [ "boot" "initrd" "extraKernelModules" ] [ "boot" "initrd" "kernelModules" ])
(mkRenamedOptionModule [ "boot" "extraKernelParams" ] [ "boot" "kernelParams" ])
# abort if deprecated option is used
deprecated = from: to: rename {
inherit from to;
name = "Deprecated name";
use = x: abort "Deprecated option `${showOption from}' is used. It was renamed to `${showOption to}'.";
define = x: abort "Deprecated option `${showOption from}' is used. It was renamed to `${showOption to}'.";
};
# smartd
(mkRenamedOptionModule [ "services" "smartd" "deviceOpts" ] [ "services" "smartd" "defaults" "monitored" ])
showOption = concatStringsSep ".";
# OpenSSH
(mkRenamedOptionModule [ "services" "sshd" "ports" ] [ "services" "openssh" "ports" ])
(mkAliasOptionModule [ "services" "sshd" "enable" ] [ "services" "openssh" "enable" ])
(mkRenamedOptionModule [ "services" "sshd" "allowSFTP" ] [ "services" "openssh" "allowSFTP" ])
(mkRenamedOptionModule [ "services" "sshd" "forwardX11" ] [ "services" "openssh" "forwardX11" ])
(mkRenamedOptionModule [ "services" "sshd" "gatewayPorts" ] [ "services" "openssh" "gatewayPorts" ])
(mkRenamedOptionModule [ "services" "sshd" "permitRootLogin" ] [ "services" "openssh" "permitRootLogin" ])
(mkRenamedOptionModule [ "services" "xserver" "startSSHAgent" ] [ "services" "xserver" "startOpenSSHAgent" ])
(mkRenamedOptionModule [ "services" "xserver" "startOpenSSHAgent" ] [ "programs" "ssh" "startAgent" ])
(mkAliasOptionModule [ "services" "openssh" "knownHosts" ] [ "programs" "ssh" "knownHosts" ])
zipModules = list:
zipAttrsWith (n: v:
if tail v != [] then
if all (o: isAttrs o && o ? _type) v then mkMerge v
else if n == "_type" then head v
else if n == "warnings" then concatLists v
else if n == "description" || n == "apply" then
abort "Cannot rename an option to multiple options."
else zipModules v
else head v
) list;
# VirtualBox
(mkRenamedOptionModule [ "services" "virtualbox" "enable" ] [ "virtualisation" "virtualbox" "guest" "enable" ])
(mkRenamedOptionModule [ "services" "virtualboxGuest" "enable" ] [ "virtualisation" "virtualbox" "guest" "enable" ])
(mkRenamedOptionModule [ "programs" "virtualbox" "enable" ] [ "virtualisation" "virtualbox" "host" "enable" ])
(mkRenamedOptionModule [ "programs" "virtualbox" "addNetworkInterface" ] [ "virtualisation" "virtualbox" "host" "addNetworkInterface" ])
(mkRenamedOptionModule [ "programs" "virtualbox" "enableHardening" ] [ "virtualisation" "virtualbox" "host" "enableHardening" ])
(mkRenamedOptionModule [ "services" "virtualboxHost" "enable" ] [ "virtualisation" "virtualbox" "host" "enable" ])
(mkRenamedOptionModule [ "services" "virtualboxHost" "addNetworkInterface" ] [ "virtualisation" "virtualbox" "host" "addNetworkInterface" ])
(mkRenamedOptionModule [ "services" "virtualboxHost" "enableHardening" ] [ "virtualisation" "virtualbox" "host" "enableHardening" ])
rename = { from, to, name, use, define, visible ? false }:
let
setTo = setAttrByPath to;
setFrom = setAttrByPath from;
toOf = attrByPath to
(abort "Renaming error: option `${showOption to}' does not exists.");
fromOf = attrByPath from
(abort "Internal error: option `${showOption from}' should be declared.");
in
[ { options = setFrom (mkOption {
description = "${name} of <option>${showOption to}</option>.";
apply = x: use (toOf config);
inherit visible;
});
# Tarsnap
(mkRenamedOptionModule [ "services" "tarsnap" "config" ] [ "services" "tarsnap" "archives" ])
config = setTo (mkAliasAndWrapDefinitions define (fromOf options));
}
];
# proxy
(mkRenamedOptionModule [ "nix" "proxy" ] [ "networking" "proxy" "default" ])
obsolete' = option: singleton
{ options = setAttrByPath option (mkOption {
default = null;
visible = false;
});
config.warnings = optional (getAttrFromPath option config != null)
"The option `${showOption option}' defined in your configuration no longer has any effect; please remove it.";
};
# KDE
(mkRenamedOptionModule [ "kde" "extraPackages" ] [ "environment" "systemPackages" ])
(mkRenamedOptionModule [ "environment" "kdePackages" ] [ "environment" "systemPackages" ])
in zipModules ([]
# Multiple efi bootloaders now
(mkRenamedOptionModule [ "boot" "loader" "efi" "efibootmgr" "enable" ] [ "boot" "loader" "efi" "canTouchEfiVariables" ])
++ obsolete [ "environment" "x11Packages" ] [ "environment" "systemPackages" ]
++ obsolete [ "environment" "enableBashCompletion" ] [ "programs" "bash" "enableCompletion" ]
++ obsolete [ "environment" "nix" ] [ "nix" "package" ]
++ obsolete [ "fonts" "enableFontConfig" ] [ "fonts" "fontconfig" "enable" ]
++ obsolete [ "fonts" "extraFonts" ] [ "fonts" "fonts" ]
++ alias [ "users" "extraUsers" ] [ "users" "users" ]
++ alias [ "users" "extraGroups" ] [ "users" "groups" ]
# NixOS environment changes
# !!! this hardcodes bash, could we detect from config which shell is actually used?
(mkRenamedOptionModule [ "environment" "promptInit" ] [ "programs" "bash" "promptInit" ])
++ obsolete [ "security" "extraSetuidPrograms" ] [ "security" "setuidPrograms" ]
++ obsolete [ "networking" "enableWLAN" ] [ "networking" "wireless" "enable" ]
++ obsolete [ "networking" "enableRT73Firmware" ] [ "networking" "enableRalinkFirmware" ]
(mkRenamedOptionModule [ "services" "xserver" "driSupport" ] [ "hardware" "opengl" "driSupport" ])
(mkRenamedOptionModule [ "services" "xserver" "driSupport32Bit" ] [ "hardware" "opengl" "driSupport32Bit" ])
(mkRenamedOptionModule [ "services" "xserver" "s3tcSupport" ] [ "hardware" "opengl" "s3tcSupport" ])
(mkRenamedOptionModule [ "hardware" "opengl" "videoDrivers" ] [ "services" "xserver" "videoDrivers" ])
# FIXME: Remove these eventually.
++ obsolete [ "boot" "systemd" "sockets" ] [ "systemd" "sockets" ]
++ obsolete [ "boot" "systemd" "targets" ] [ "systemd" "targets" ]
++ obsolete [ "boot" "systemd" "services" ] [ "systemd" "services" ]
(mkRenamedOptionModule [ "services" "mysql55" ] [ "services" "mysql" ])
# Old Grub-related options.
++ obsolete [ "boot" "copyKernels" ] [ "boot" "loader" "grub" "copyKernels" ]
++ obsolete [ "boot" "extraGrubEntries" ] [ "boot" "loader" "grub" "extraEntries" ]
++ obsolete [ "boot" "extraGrubEntriesBeforeNixos" ] [ "boot" "loader" "grub" "extraEntriesBeforeNixOS" ]
++ obsolete [ "boot" "grubDevice" ] [ "boot" "loader" "grub" "device" ]
++ obsolete [ "boot" "bootMount" ] [ "boot" "loader" "grub" "bootDevice" ]
++ obsolete [ "boot" "grubSplashImage" ] [ "boot" "loader" "grub" "splashImage" ]
(mkAliasOptionModule [ "environment" "checkConfigurationOptions" ] [ "_module" "check" ])
++ obsolete [ "boot" "initrd" "extraKernelModules" ] [ "boot" "initrd" "kernelModules" ]
++ obsolete [ "boot" "extraKernelParams" ] [ "boot" "kernelParams" ]
# XBMC
(mkRenamedOptionModule [ "services" "xserver" "windowManager" "xbmc" ] [ "services" "xserver" "desktopManager" "kodi" ])
(mkRenamedOptionModule [ "services" "xserver" "desktopManager" "xbmc" ] [ "services" "xserver" "desktopManager" "kodi" ])
# smartd
++ obsolete [ "services" "smartd" "deviceOpts" ] [ "services" "smartd" "defaults" "monitored" ]
# DNSCrypt-proxy
(mkRenamedOptionModule [ "services" "dnscrypt-proxy" "port" ] [ "services" "dnscrypt-proxy" "localPort" ])
# OpenSSH
++ obsolete [ "services" "sshd" "ports" ] [ "services" "openssh" "ports" ]
++ alias [ "services" "sshd" "enable" ] [ "services" "openssh" "enable" ]
++ obsolete [ "services" "sshd" "allowSFTP" ] [ "services" "openssh" "allowSFTP" ]
++ obsolete [ "services" "sshd" "forwardX11" ] [ "services" "openssh" "forwardX11" ]
++ obsolete [ "services" "sshd" "gatewayPorts" ] [ "services" "openssh" "gatewayPorts" ]
++ obsolete [ "services" "sshd" "permitRootLogin" ] [ "services" "openssh" "permitRootLogin" ]
++ obsolete [ "services" "xserver" "startSSHAgent" ] [ "services" "xserver" "startOpenSSHAgent" ]
++ obsolete [ "services" "xserver" "startOpenSSHAgent" ] [ "programs" "ssh" "startAgent" ]
++ alias [ "services" "openssh" "knownHosts" ] [ "programs" "ssh" "knownHosts" ]
# Options that are obsolete and have no replacement.
(mkRemovedOptionModule [ "boot" "initrd" "luks" "enable" ])
(mkRemovedOptionModule [ "programs" "bash" "enable" ])
(mkRemovedOptionModule [ "services" "samba" "defaultShare" ])
(mkRemovedOptionModule [ "services" "syslog-ng" "serviceName" ])
(mkRemovedOptionModule [ "services" "syslog-ng" "listenToJournal" ])
(mkRemovedOptionModule [ "ec2" "metadata" ])
(mkRemovedOptionModule [ "services" "openvpn" "enable" ])
# VirtualBox
++ obsolete [ "services" "virtualbox" "enable" ] [ "virtualisation" "virtualbox" "guest" "enable" ]
++ obsolete [ "services" "virtualboxGuest" "enable" ] [ "virtualisation" "virtualbox" "guest" "enable" ]
++ obsolete [ "programs" "virtualbox" "enable" ] [ "virtualisation" "virtualbox" "host" "enable" ]
++ obsolete [ "programs" "virtualbox" "addNetworkInterface" ] [ "virtualisation" "virtualbox" "host" "addNetworkInterface" ]
++ obsolete [ "programs" "virtualbox" "enableHardening" ] [ "virtualisation" "virtualbox" "host" "enableHardening" ]
++ obsolete [ "services" "virtualboxHost" "enable" ] [ "virtualisation" "virtualbox" "host" "enable" ]
++ obsolete [ "services" "virtualboxHost" "addNetworkInterface" ] [ "virtualisation" "virtualbox" "host" "addNetworkInterface" ]
++ obsolete [ "services" "virtualboxHost" "enableHardening" ] [ "virtualisation" "virtualbox" "host" "enableHardening" ]
# Tarsnap
++ obsolete [ "services" "tarsnap" "config" ] [ "services" "tarsnap" "archives" ]
# proxy
++ obsolete [ "nix" "proxy" ] [ "networking" "proxy" "default" ]
# KDE
++ deprecated [ "kde" "extraPackages" ] [ "environment" "systemPackages" ]
++ obsolete [ "environment" "kdePackages" ] [ "environment" "systemPackages" ]
# Multiple efi bootloaders now
++ obsolete [ "boot" "loader" "efi" "efibootmgr" "enable" ] [ "boot" "loader" "efi" "canTouchEfiVariables" ]
# NixOS environment changes
# !!! this hardcodes bash, could we detect from config which shell is actually used?
++ obsolete [ "environment" "promptInit" ] [ "programs" "bash" "promptInit" ]
++ obsolete [ "services" "xserver" "driSupport" ] [ "hardware" "opengl" "driSupport" ]
++ obsolete [ "services" "xserver" "driSupport32Bit" ] [ "hardware" "opengl" "driSupport32Bit" ]
++ obsolete [ "services" "xserver" "s3tcSupport" ] [ "hardware" "opengl" "s3tcSupport" ]
++ obsolete [ "hardware" "opengl" "videoDrivers" ] [ "services" "xserver" "videoDrivers" ]
++ obsolete [ "services" "mysql55" ] [ "services" "mysql" ]
++ alias [ "environment" "checkConfigurationOptions" ] [ "_module" "check" ]
# XBMC
++ obsolete [ "services" "xserver" "windowManager" "xbmc" ] [ "services" "xserver" "desktopManager" "kodi" ]
++ obsolete [ "services" "xserver" "desktopManager" "xbmc" ] [ "services" "xserver" "desktopManager" "kodi" ]
# DNSCrypt-proxy
++ obsolete [ "services" "dnscrypt-proxy" "port" ] [ "services" "dnscrypt-proxy" "localPort" ]
# Options that are obsolete and have no replacement.
++ obsolete' [ "boot" "loader" "grub" "bootDevice" ]
++ obsolete' [ "boot" "initrd" "luks" "enable" ]
++ obsolete' [ "programs" "bash" "enable" ]
++ obsolete' [ "services" "samba" "defaultShare" ]
++ obsolete' [ "services" "syslog-ng" "serviceName" ]
++ obsolete' [ "services" "syslog-ng" "listenToJournal" ]
++ obsolete' [ "ec2" "metadata" ]
++ obsolete' [ "services" "openvpn" "enable" ]
)
];
}

View File

@ -39,7 +39,8 @@ in
systemd.services."copy-com-${cfg.user}" = {
description = "Copy.com client";
after = [ "network.target" "local-fs.target" ];
wants = [ "network-online.target" ];
after = [ "network-online.target" "local-fs.target" ];
wantedBy = [ "multi-user.target" ];
serviceConfig = {
ExecStart = "${pkgs.copy-com}/bin/CopyConsole ${if cfg.debug then "-consoleOutput -debugToConsole=dirwatch,path-watch,csm_path,csm -debug -console" else ""}";

View File

@ -488,4 +488,15 @@ in
];
imports =
[ (mkRemovedOptionModule [ "boot" "loader" "grub" "bootDevice" ])
(mkRenamedOptionModule [ "boot" "copyKernels" ] [ "boot" "loader" "grub" "copyKernels" ])
(mkRenamedOptionModule [ "boot" "extraGrubEntries" ] [ "boot" "loader" "grub" "extraEntries" ])
(mkRenamedOptionModule [ "boot" "extraGrubEntriesBeforeNixos" ] [ "boot" "loader" "grub" "extraEntriesBeforeNixOS" ])
(mkRenamedOptionModule [ "boot" "grubDevice" ] [ "boot" "loader" "grub" "device" ])
(mkRenamedOptionModule [ "boot" "bootMount" ] [ "boot" "loader" "grub" "bootDevice" ])
(mkRenamedOptionModule [ "boot" "grubSplashImage" ] [ "boot" "loader" "grub" "splashImage" ])
];
}

View File

@ -772,4 +772,11 @@ in
};
# FIXME: Remove these eventually.
imports =
[ (mkRenamedOptionModule [ "boot" "systemd" "sockets" ] [ "systemd" "sockets" ])
(mkRenamedOptionModule [ "boot" "systemd" "targets" ] [ "systemd" "targets" ])
(mkRenamedOptionModule [ "boot" "systemd" "services" ] [ "systemd" "services" ])
];
}

View File

@ -90,7 +90,7 @@ in
serviceConfig.Type = "forking";
serviceConfig.ExecStart = ''
@${pkgs.nfs-utils}/sbin/rpc.statd rpc.statd --no-notify \
${if cfg.statdPort != null then "-p ${toString statdPort}" else ""}
${if cfg.statdPort != null then "-p ${toString cfg.statdPort}" else ""}
'';
serviceConfig.Restart = "always";
};

View File

@ -51,7 +51,7 @@ in rec {
(all nixos.tests.chromium)
(all nixos.tests.firefox)
(all nixos.tests.firewall)
(all nixos.tests.gnome3)
nixos.tests.gnome3.x86_64-linux # FIXME: i686-linux
(all nixos.tests.installer.lvm)
(all nixos.tests.installer.luksroot)
(all nixos.tests.installer.separateBoot)

View File

@ -0,0 +1,12 @@
--- ../tmp-orig/meterbridge-0.9.2/src/main.h 2003-06-05 11:42:41.000000000 +0200
+++ ./src/main.h 2004-12-29 10:27:24.160912488 +0100
@@ -8,7 +8,7 @@
extern SDL_Surface *screen;
extern SDL_Surface *image, *meter, *meter_buf;
-extern SDL_Rect win, buf_rect[MAX_METERS], dest[MAX_METERS];
+extern SDL_Rect win, dest[MAX_METERS];
extern jack_port_t *input_ports[MAX_METERS];
extern jack_port_t *output_ports[MAX_METERS];

View File

@ -0,0 +1,26 @@
{ stdenv, fetchurl, pkgconfig, SDL, SDL_image, libjack2
}:
stdenv.mkDerivation rec {
version = "0.9.2";
name = "meterbridge-${version}";
src = fetchurl {
url = "http://plugin.org.uk/meterbridge/${name}.tar.gz";
sha256 = "0jb6g3kbfyr5yf8mvblnciva2bmc01ijpr51m21r27rqmgi8gj5k";
};
patches = [ ./buf_rect.patch ];
buildInputs =
[ pkgconfig SDL SDL_image libjack2
];
meta = with stdenv.lib; {
description = "Various meters (VU, PPM, DPM, JF, SCO) for Jack Audio Connection Kit";
homepage = http://plugin.org.uk/meterbridge/;
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.nico202 ];
};
}

View File

@ -0,0 +1,28 @@
{ stdenv, fetchFromGitHub, emacs }:
let
version = "2.0-82-gfe30ef7";
in
stdenv.mkDerivation {
name = "markdown-mode-${version}";
src = fetchFromGitHub {
owner = "defunkt";
repo = "markdown-mode";
rev = "v${version}";
sha256 = "14a6r05j0g2ppq2q4kd14qyxwr6yv5jwndavbwzkmp6qhmm9k8nz";
};
buildInputs = [ emacs ];
buildPhase = ''
emacs -L . --batch -f batch-byte-compile *.el
'';
installPhase = ''
install -d $out/share/emacs/site-lisp
install *.el *.elc $out/share/emacs/site-lisp
'';
meta.license = stdenv.lib.licenses.gpl3Plus;
}

View File

@ -14,7 +14,7 @@ with stdenv.lib;
let
version = "2015-10-08";
version = "2015-10-12";
# Note: this is NOT the libvterm already in nixpkgs, but some NIH silliness:
neovimLibvterm = let version = "2015-02-23"; in stdenv.mkDerivation {
@ -58,8 +58,8 @@ let
name = "neovim-${version}";
src = fetchFromGitHub {
sha256 = "1kx4jsajl09klg0h0gzsv7mjz2kr09q4glznxwf8f5cncahgldfc";
rev = "57d3a2a52fea57874d08472d0f8ee8f1bcee87c1";
sha256 = "1rlybdldz708pz7k0qs2rpm0cjk8ywwyj5s38hyq4mzsswqszdsc";
rev = "a3f048ee06dea15490d7b874d295c3fc850cdc51";
repo = "neovim";
owner = "neovim";
};
@ -103,7 +103,7 @@ let
'' + optionalString withPython ''
ln -s ${pythonEnv}/bin/python $out/bin/nvim-python
'' + optionalString withPython3 ''
ln -s ${python3Env}/bin/python $out/bin/nvim-python3
ln -s ${python3Env}/bin/python3 $out/bin/nvim-python3
'' + optionalString (withPython || withPython3) ''
wrapProgram $out/bin/nvim --add-flags "${
(optionalString withPython

View File

@ -1,12 +1,12 @@
{ stdenv, fetchurl, makeWrapper, xulrunner }:
stdenv.mkDerivation rec {
version = "2.0.13";
version = "2.0.14";
name = "pencil-${version}";
src = fetchurl {
url = "https://github.com/prikhi/pencil/releases/download/v${version}/Pencil-${version}-linux-pkg.tar.gz";
sha256 = "150jsaq27n01l0vf10jiyrlfm0canqhphdxi42di96b9zsfkphpk";
sha256 = "59f46db863e6d95ee6987e600d658ad4b58b03b0744c5c6d17ce04f5ae92d260";
};

View File

@ -1,12 +1,12 @@
{ stdenv, fetchurl, cairo, colord, glib, gtk3, gusb, intltool, itstool, libusb
, libxml2, makeWrapper, packagekit, pkgconfig, saneBackends, systemd, vala }:
let version = "3.18.0"; in
let version = "3.18.1"; in
stdenv.mkDerivation rec {
name = "simple-scan-${version}";
src = fetchurl {
sha256 = "09qki4h1px65fxwpr7jppzqsi5cfcb8168p13blp3wcfizjgb9gl";
sha256 = "1i37j36kbn1h8yfzcvbis6f38xz2nj5512ls3gb0j5na0bvja2cw";
url = "https://launchpad.net/simple-scan/3.18/${version}/+download/${name}.tar.xz";
};

View File

@ -1,12 +1,12 @@
{ stdenv, fetchurl, requireFile, makeWrapper, unzip, jre }:
stdenv.mkDerivation rec {
name = "yEd-3.14.3";
name = "yEd-3.14.4";
src = requireFile {
name = "${name}.zip";
url = "https://www.yworks.com/en/products/yfiles/yed/";
sha256 = "0xgazknbz82sgk65hxmvbycl1vd25z80a7jgwjgw7syicrgmplcl";
sha256 = "0pm271ss6cq2s6cv9ww92haaq2abkjxd9dvc8d72h6af5awv8xy6";
};
nativeBuildInputs = [ unzip makeWrapper ];

View File

@ -1,12 +1,14 @@
{ stdenv, fetchgit }:
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation {
name = "urxvt-perls-2015-03-28";
stdenv.mkDerivation rec {
name = "urxvt-perls-${version}";
version = "2.2";
src = fetchgit {
url = "git://github.com/muennich/urxvt-perls";
rev = "e4dbde31edd19e2f4c2b6c91117ee91e2f83ddd7";
sha256 = "1f8a27c3d54377fdd4ab0be2f4efb8329d4900bb1c792b306dc23b5ee59260b1";
src = fetchFromGitHub {
owner = "muennich";
repo = "urxvt-perls";
rev = version;
sha256 = "1cb0jbjmwfy2dlq2ny8wpc04k79jp3pz9qhbmgagsxs3sp1jg2hz";
};
installPhase = ''

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, perlSupport, libX11, libXt, libXft, ncurses, perl,
{ stdenv, fetchurl, fetchpatch, perlSupport, libX11, libXt, libXft, ncurses, perl,
fontconfig, freetype, pkgconfig, libXrender, gdkPixbufSupport, gdk_pixbuf,
unicode3Support }:
@ -28,6 +28,10 @@ stdenv.mkDerivation (rec {
patches = [
./rxvt-unicode-9.06-font-width.patch
./rxvt-unicode-256-color-resources.patch
(fetchpatch {
url = "https://raw.githubusercontent.com/mina86/urxvt-tabbedex/ad4f54c8b8d3a01fc17975fd3fd14aa674c07d2b/rxvt-unicode-scroll-bug-fix.patch";
sha256 = "1ild0r6y7jb800yiss5pgd4k60s7l9njv3nn3x280yvg1lx6ihpg";
})
]
++ stdenv.lib.optional stdenv.isDarwin ./rxvt-unicode-makefile-phony.patch;

View File

@ -7,15 +7,15 @@
sha256bin64 = "1ycdp37ikdc9w4hp9qgpzjp47zh37g01ax8x4ack202vrv0dxhsh";
};
beta = {
version = "46.0.2490.52";
sha256 = "00sgb1pnp3fcijwdwpngnnddmn5nrbljsqz7f6dlnd63qfc91xjw";
sha256bin32 = "10jgcxc2zwffg8lxi55zl9apql6pyxh1g1n3z46gcb6j6am4y5m5";
sha256bin64 = "0i839ir4qcjl9llpqnwy793hvbdfh898x1izc5k93h7nm6i34ry9";
version = "46.0.2490.64";
sha256 = "1k2zir4rbs7hwdasbjpwyjr4ibis2vm6lx45bfm2r2f469mf3y2g";
sha256bin32 = "0j1xncws0r5z2rvvjsi0gxxmnslfcbiasaxr6bjhbxnzjv7chrd4";
sha256bin64 = "1m8vv3qh79an3719afz7n2ijqanf4cyxz2q4bzm512x52z5zipl7";
};
stable = {
version = "45.0.2454.101";
sha256 = "1yw5xlgy5hd3iwcyf0sillq5p367fcpvp4mizpmv52cwmv52ss0v";
sha256bin32 = "1ll8lmkmx7v74naz1vcnrwk5ighh0skfcb66jkq4kgxrb5fjgwm5";
sha256bin64 = "1cwbd3n77dnbfnrfr8g0qng9xkgvz6y7mx489gpx1wsamgi42bzj";
version = "46.0.2490.71";
sha256 = "1dnwhwvn39x8lm1jszjn8y7vy478zy75gm696rr2dvk4kqj1hjyd";
sha256bin32 = "1v1acg32dzmkydzy7sh6xjbzqar052iw8x8hql2yjz5kxznir4sf";
sha256bin64 = "15ladhxiym760mid5zq09vp73irzwlp31br9yqslzgv4460ma3np";
};
}

View File

@ -36,7 +36,7 @@
let
# -> http://get.adobe.com/flashplayer/
version = "11.2.202.521";
version = "11.2.202.535";
src =
if stdenv.system == "x86_64-linux" then
@ -47,7 +47,7 @@ let
else rec {
inherit version;
url = "http://fpdownload.adobe.com/get/flashplayer/pdc/${version}/install_flash_player_11_linux.x86_64.tar.gz";
sha256 = "1fckmapjy7rvy1g5jr71x69j7vviy9262wwpwk6cipym2fi7zvid";
sha256 = "13fy842plbnv4w081sbhga0jrpbwz8yydg49c2v96l2marmzw9zp";
}
else if stdenv.system == "i686-linux" then
if debug then
@ -60,7 +60,7 @@ let
else rec {
inherit version;
url = "http://fpdownload.adobe.com/get/flashplayer/pdc/${version}/install_flash_player_11_linux.i386.tar.gz";
sha256 = "1483bi34ymchv1cqg57whxhlrhhvwhcw33zjgwzmy7bacxbkj9ia";
sha256 = "0z99nz1k0cf86dgs367ddxfnf05m32psidpmdzi5qiqaj10h6j6s";
}
else throw "Flash Player is not supported on this platform";

View File

@ -1,12 +1,12 @@
{ stdenv, fetchFromGitHub, cppcheck, libmrss }:
let version = "2015-09-06"; in
let version = "2.1"; in
stdenv.mkDerivation rec {
name = "rsstail-${version}";
src = fetchFromGitHub {
sha256 = "1rfzib5fzm0i8wf3njld1lvxgbci0hxxnvp2qx1k4bwpv744xkpx";
rev = "16636539e4cc75dafbfa7f05539769be7dad4b66";
sha256 = "12p69i3g1fwlw0bds9jqsdmzkid3k5a41w31d227i7vm12wcvjf6";
rev = "6f2436185372b3f945a4989406c4b6a934fe8a95";
repo = "rsstail";
owner = "flok99";
};
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
++ stdenv.lib.optional doCheck cppcheck;
postPatch = ''
substituteInPlace Makefile --replace -liconv ""
substituteInPlace Makefile --replace -liconv_hook ""
'';
makeFlags = "prefix=$(out)";

View File

@ -4,11 +4,11 @@
, gsm, speex, portaudio, spandsp, libuuid
}:
stdenv.mkDerivation rec {
version = "0.4.14";
version = "0.4.15";
name = "baresip-${version}";
src=fetchurl {
url = "http://www.creytiv.com/pub/baresip-${version}.tar.gz";
sha256 = "19vn63j6dpybjy14mgnwf0yk2jbcbfdjs50whzwyrrkcv6ipj6hc";
sha256 = "13712li6y3ikwzl17j46w25xyv3z98yqj7zpr3jifyvbna9ls5r3";
};
buildInputs = [zlib openssl libre librem pkgconfig
cairo mpg123 gstreamer gst_ffmpeg gst_plugins_base gst_plugins_bad gst_plugins_good

View File

@ -20,11 +20,11 @@ with stdenv.lib;
stdenv.mkDerivation rec {
name = "gajim-${version}";
version = "0.16.3";
version = "0.16.4";
src = fetchurl {
url = "http://www.gajim.org/downloads/0.16/gajim-${version}.tar.bz2";
sha256 = "05a59hf9wna6n9fi0a4bhz1hifqj21bwb4ff9rd0my23rdwmij51";
sha256 = "0zyfs7q1qg8iqszr8l1gb18gqla6zrrfsgpmbxblpi9maqxas5i1";
};
patches = [

View File

@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
make install PREFIX=$out
'';
meta = {
meta = with stdenv.lib; {
homepage = "https://www.agwa.name/projects/git-crypt";
description = "transparent file encryption in git";
longDescription = ''
@ -33,9 +33,9 @@ stdenv.mkDerivation rec {
entire repository.
'';
downloadPage = "https://github.com/AGWA/git-crypt/releases";
license = stdenv.lib.licenses.gpl3;
license = licenses.gpl3;
version = "0.5.0";
maintainers = [ "Desmond O. Chang <dochang@gmail.com>" ];
maintainers = [ maintainers.dochang ];
};
}

View File

@ -110,6 +110,7 @@ in stdenv.mkDerivation rec {
--prefix LD_LIBRARY_PATH ":" "${libvdpau}/lib" \
--prefix LD_LIBRARY_PATH ":" "${libcec}/lib" \
--prefix LD_LIBRARY_PATH ":" "${libcec_platform}/lib" \
--prefix LD_LIBRARY_PATH ":" "${libass}/lib" \
--prefix LD_LIBRARY_PATH ":" "${rtmpdump}/lib"
done
'';

View File

@ -1,7 +1,7 @@
{ stdenv, fetchurl, pythonPackages, intltool, libxml2Python, curl, python
, wrapGAppsHook, virtinst, pyGtkGlade, pythonDBus, gnome_python, gtkvnc, vte
, gtk3, gobjectIntrospection, libvirt-glib, gsettings_desktop_schemas, glib
, avahi, dconf, spiceSupport ? true, spice_gtk, libosinfo, gnome3
, avahi, dconf, spiceSupport ? true, spice_gtk, libosinfo, gnome3, system-libvirt
}:
with stdenv.lib;
@ -40,6 +40,10 @@ buildPythonPackage rec {
dconf
];
patchPhase = ''
sed -i 's|/usr/share/libvirt/cpu_map.xml|${system-libvirt}/share/libvirt/cpu_map.xml|g' virtinst/capabilities.py
'';
configurePhase = ''
sed -i 's/from distutils.core/from setuptools/g' setup.py
sed -i 's/from distutils.command.install/from setuptools.command.install/g' setup.py

View File

@ -33,7 +33,7 @@ let
grKernel = if cfg.stable
then mkKernel pkgs.linux_3_14 stable-patch
else mkKernel pkgs.linux_4_1 test-patch;
else mkKernel pkgs.linux_4_2 test-patch;
## -- grsecurity configuration ---------------------------------------------

View File

@ -0,0 +1,26 @@
{stdenv, fetchurl, unzip}:
stdenv.mkDerivation rec {
name = "kawkab-mono-20151015";
src = fetchurl {
url = "http://makkuk.com/kawkab-mono/downloads/kawkab-mono-0.1.zip";
sha256 = "16pv9s4q7199aacbzfi2d10rcrq77vyfvzcy42g80nhfrkz1cb0m";
};
buildInputs = [ unzip ];
sourceRoot = ".";
installPhase = ''
mkdir -p $out/share/fonts/truetype
cp *.ttf $out/share/fonts/truetype
'';
meta = {
description = "An arab fixed-width font";
homepage = "http://makkuk.com/kawkab-mono/";
license = stdenv.lib.licenses.ofl;
};
}

View File

@ -0,0 +1,36 @@
{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
name = "paratype-pt-mono";
src = fetchurl rec {
url = "http://www.paratype.ru/uni/public/PTMono.zip";
sha256 = "1wqaai7d6xh552vvr5svch07kjn1q89ab5jimi2z0sbd0rbi86vl";
};
buildInputs = [unzip];
phases = "unpackPhase installPhase";
sourceRoot = ".";
installPhase = ''
mkdir -p $out/share/fonts/truetype
mkdir -p $out/share/doc/paratype
cp *.ttf $out/share/fonts/truetype
cp *.txt $out/share/doc/paratype
'';
meta = with stdenv.lib; {
homepage = "http://www.paratype.ru/public/";
description = "An open Paratype font";
license = "Open Paratype license";
# no commercial distribution of the font on its own
# must rename on modification
# http://www.paratype.ru/public/pt_openlicense.asp
platforms = platforms.all;
maintainers = with maintainers; [ raskin ];
};
}

View File

@ -0,0 +1,36 @@
{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
name = "paratype-pt-sane";
src = fetchurl rec {
url = "http://www.paratype.ru/uni/public/PTSans.zip";
sha256 = "1j9gkbqyhxx8pih5agr9nl8vbpsfr9vdqmhx73ji3isahqm3bhv5";
};
buildInputs = [unzip];
phases = "unpackPhase installPhase";
sourceRoot = ".";
installPhase = ''
mkdir -p $out/share/fonts/truetype
mkdir -p $out/share/doc/paratype
cp *.ttf $out/share/fonts/truetype
cp *.txt $out/share/doc/paratype
'';
meta = with stdenv.lib; {
homepage = "http://www.paratype.ru/public/";
description = "An open Paratype font";
license = "Open Paratype license";
# no commercial distribution of the font on its own
# must rename on modification
# http://www.paratype.ru/public/pt_openlicense.asp
platforms = platforms.all;
maintainers = with maintainers; [ raskin ];
};
}

View File

@ -0,0 +1,36 @@
{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
name = "paratype-pt-serif";
src = fetchurl rec {
url = "http://www.paratype.ru/uni/public/PTSerif.zip";
sha256 = "0x3l58c1rvwmh83bmmgqwwbw9av1mvvq68sw2hdkyyihjvamyvvs";
};
buildInputs = [unzip];
phases = "unpackPhase installPhase";
sourceRoot = ".";
installPhase = ''
mkdir -p $out/share/fonts/truetype
mkdir -p $out/share/doc/paratype
cp *.ttf $out/share/fonts/truetype
cp *.txt $out/share/doc/paratype
'';
meta = with stdenv.lib; {
homepage = "http://www.paratype.ru/public/";
description = "An open Paratype font";
license = "Open Paratype license";
# no commercial distribution of the font on its own
# must rename on modification
# http://www.paratype.ru/public/pt_openlicense.asp
platforms = platforms.all;
maintainers = with maintainers; [ raskin ];
};
}

View File

@ -8,7 +8,7 @@ let
# Annoyingly, these files are updated without a change in URL. This means that
# builds will start failing every month or so, until the hashes are updated.
version = "2015-10-09";
version = "2015-10-13";
in
stdenv.mkDerivation {
name = "geolite-legacy-${version}";
@ -27,10 +27,10 @@ stdenv.mkDerivation {
"0jdgfcy90mk7q25rhb8ymnddkskmp2cmyzmbjr3ij0zvbbpzxl4i";
srcGeoIPASNum = fetchDB
"asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz"
"05j2nygvb7xi4s636dik12vgrdi37q5fdv5k3liqgswf9z0msz81";
"0j73lw2i6nnx1mgp1hspfa95zca5h0hqj12g16rln7pss868wnwi";
srcGeoIPASNumv6 = fetchDB
"asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz"
"17s7pcqmfd9xvq0hd7g7nh62sjayl24w04ifm39snrq2a32l667n";
"1id4rkxp5pppr274y276w2zmx44dn0h44d4ax780g8cbhlc9n2br";
meta = with stdenv.lib; {
inherit version;

View File

@ -5,14 +5,15 @@
, gnome3, librsvg, gnome_doc_utils, webkitgtk }:
let
majorVersion = "0.8";
majorVersion = "0.10";
minorVersion = "0";
in
stdenv.mkDerivation rec {
name = "geary-${majorVersion}.2";
name = "geary-${majorVersion}.${minorVersion}";
src = fetchurl {
url = "mirror://gnome/sources/geary/${majorVersion}/${name}.tar.xz";
sha256 = "3cfa626168935acf49c9415fad54c7849f17fd833026cfd3c224ba0fb892d641";
sha256 = "46197a5a1b8b040adcee99082dbfd9fff9ca804e3bf0055a2e90b13214bdbca5";
};
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
@ -39,7 +40,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
patches = [ ./disable_valadoc.patch ];
# patches = [ ./disable_valadoc.patch ];
patchFlags = "-p0";
meta = with stdenv.lib; {

View File

@ -1,18 +1,18 @@
{ stdenv, coreutils, fetchgit, m4, libtool, clang, ghcWithPackages }:
let wrappedGhc = ghcWithPackages (hpkgs: with hpkgs; [shuffle hashable mtl network uhc-util uulib] );
let wrappedGhc = ghcWithPackages (hpkgs: with hpkgs; [fgl vector syb uulib network binary hashable uhc-util mtl transformers directory containers array process filepath shuffle uuagc] );
in stdenv.mkDerivation rec {
# Important:
# The commits "Fixate/tag v..." are the released versions.
# Ignore the "bumped version to ...." commits, they do not
# correspond to releases.
version = "1.1.9.1.20150611";
version = "1.1.9.1";
name = "uhc-${version}";
src = fetchgit {
url = "https://github.com/UU-ComputerScience/uhc.git";
rev = "b80098e07d12900f098ea964b1d2b3f38e5c9900";
sha256 = "14qg1fd9pgbczcmn5ggkd9674qadx1izmz8363ps7c207dg94f9x";
rev = "ce93d01486972c994ea2bbbd3d43859911120c39";
sha256 = "1y670sc6ky74l3msayzqjlkjv1kpv3g35pirsq3q79klzvnpyj2x";
};
postUnpack = "sourceRoot=\${sourceRoot}/EHC";
@ -50,6 +50,5 @@ in stdenv.mkDerivation rec {
# On Darwin, the GNU libtool is used, which does not
# support the -static flag and thus breaks the build.
platforms = ["x86_64-linux"];
broken = true; # https://github.com/UU-ComputerScience/uhc/issues/60
};
}

View File

@ -635,8 +635,8 @@ self: super: {
# Uses OpenGL in testing
caramia = dontCheck super.caramia;
# Supports only 3.4 for now, https://github.com/bscarlet/llvm-general/issues/144
llvm-general = super.llvm-general.override { llvm-config = pkgs.llvm_34; };
# Supports only 3.5 for now, https://github.com/bscarlet/llvm-general/issues/142
llvm-general = super.llvm-general.override { llvm-config = pkgs.llvm_35; };
# Needs help finding LLVM.
spaceprobe = addBuildTool super.spaceprobe self.llvmPackages.llvm;

View File

@ -91,4 +91,7 @@ self: super: {
# Needs hashable on pre 7.10.x compilers.
nats = addBuildDepend super.nats self.hashable;
# Needs void on pre 7.10.x compilers.
conduit = addBuildDepend super.conduit self.void;
}

View File

@ -73,4 +73,7 @@ self: super: {
# Newer versions require bytestring >=0.10.
tar = super.tar_0_4_1_0;
# Needs void on pre 7.10.x compilers.
conduit = addBuildDepend super.conduit self.void;
}

View File

@ -73,4 +73,7 @@ self: super: {
# Newer versions require bytestring >=0.10.
tar = super.tar_0_4_1_0;
# Needs void on pre 7.10.x compilers.
conduit = addBuildDepend super.conduit self.void;
}

View File

@ -82,4 +82,7 @@ self: super: {
# Newer versions require bytestring >=0.10.
tar = super.tar_0_4_1_0;
# Needs void on pre 7.10.x compilers.
conduit = addBuildDepend super.conduit self.void;
}

View File

@ -79,10 +79,6 @@ self: super: {
# Needs hashable on pre 7.10.x compilers.
nats = addBuildDepend super.nats self.hashable;
# Newer versions always trigger the non-deterministic library ID bug
# and are virtually impossible to compile on Hydra.
conduit = super.conduit_1_2_4_1;
# https://github.com/magthe/sandi/issues/7
sandi = overrideCabal super.sandi (drv: {
postPatch = "sed -i -e 's|base ==4.8.*,|base,|' sandi.cabal";
@ -96,4 +92,7 @@ self: super: {
convertible = markBroken super.convertible;
ghc-mod = markBroken super.ghc-mod;
# Needs void on pre 7.10.x compilers.
conduit = addBuildDepend super.conduit self.void;
}

View File

@ -138,4 +138,7 @@ self: super: {
xss-sanitize_0_3_5_4 = addBuildDepend super.xss-sanitize_0_3_5_4 self.network;
xss-sanitize_0_3_5_5 = addBuildDepend super.xss-sanitize_0_3_5_5 self.network;
# Needs void on pre 7.10.x compilers.
conduit = addBuildDepend super.conduit self.void;
}

View File

@ -617,6 +617,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -3035,6 +3036,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -7658,6 +7660,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";

View File

@ -617,6 +617,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -3034,6 +3035,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -7657,6 +7659,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";

View File

@ -617,6 +617,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -3034,6 +3035,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -7657,6 +7659,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";

View File

@ -617,6 +617,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -3034,6 +3035,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -7657,6 +7659,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";

View File

@ -617,6 +617,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -3033,6 +3034,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -7652,6 +7654,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";

View File

@ -617,6 +617,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -3033,6 +3034,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -7652,6 +7654,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";

View File

@ -617,6 +617,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -3030,6 +3031,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -7646,6 +7648,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";

View File

@ -617,6 +617,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -3030,6 +3031,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -7646,6 +7648,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";

View File

@ -614,6 +614,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -3020,6 +3021,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -7630,6 +7632,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";

View File

@ -614,6 +614,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -3014,6 +3015,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -7612,6 +7614,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";

View File

@ -613,6 +613,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -3005,6 +3006,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5367,6 +5369,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7574,6 +7577,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7839,6 +7843,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7969,6 +7974,7 @@ self: super: {
"vector-space-points" = doDistribute super."vector-space-points_0_2_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -613,6 +613,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -3005,6 +3006,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5363,6 +5365,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7568,6 +7571,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7833,6 +7837,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7963,6 +7968,7 @@ self: super: {
"vector-space-points" = doDistribute super."vector-space-points_0_2_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -613,6 +613,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -3005,6 +3006,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5362,6 +5364,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7565,6 +7568,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7830,6 +7834,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7960,6 +7965,7 @@ self: super: {
"vector-space-points" = doDistribute super."vector-space-points_0_2_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -613,6 +613,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -3004,6 +3005,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5359,6 +5361,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7561,6 +7564,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7826,6 +7830,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7956,6 +7961,7 @@ self: super: {
"vector-space-points" = doDistribute super."vector-space-points_0_2_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -612,6 +612,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -3001,6 +3002,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5353,6 +5355,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7553,6 +7556,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7818,6 +7822,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7948,6 +7953,7 @@ self: super: {
"vector-space-points" = doDistribute super."vector-space-points_0_2_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -612,6 +612,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2996,6 +2997,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5347,6 +5349,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7541,6 +7544,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7806,6 +7810,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7935,6 +7940,7 @@ self: super: {
"vector-space-points" = doDistribute super."vector-space-points_0_2_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -614,6 +614,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -3012,6 +3013,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -7606,6 +7608,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -8005,6 +8008,7 @@ self: super: {
"vector-space-points" = doDistribute super."vector-space-points_0_2_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -613,6 +613,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -3010,6 +3011,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -7599,6 +7601,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7998,6 +8001,7 @@ self: super: {
"vector-space-points" = doDistribute super."vector-space-points_0_2_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -613,6 +613,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -3009,6 +3010,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -7597,6 +7599,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7994,6 +7997,7 @@ self: super: {
"vector-space-points" = doDistribute super."vector-space-points_0_2_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -613,6 +613,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -3009,6 +3010,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -7591,6 +7593,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7988,6 +7991,7 @@ self: super: {
"vector-space-points" = doDistribute super."vector-space-points_0_2_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -613,6 +613,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -3007,6 +3008,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -7586,6 +7588,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7982,6 +7985,7 @@ self: super: {
"vector-space-points" = doDistribute super."vector-space-points_0_2_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -613,6 +613,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -3007,6 +3008,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5369,6 +5371,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7582,6 +7585,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7978,6 +7982,7 @@ self: super: {
"vector-space-points" = doDistribute super."vector-space-points_0_2_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -607,6 +607,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2975,6 +2976,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5292,6 +5294,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7463,6 +7466,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7727,6 +7731,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7855,6 +7860,7 @@ self: super: {
"vector-space-points" = doDistribute super."vector-space-points_0_2_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -607,6 +607,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2974,6 +2975,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5290,6 +5292,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7461,6 +7464,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7725,6 +7729,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7852,6 +7857,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -347,6 +347,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
"GLURaw" = doDistribute super."GLURaw_1_5_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_1";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@ -605,6 +606,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2953,6 +2955,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5246,6 +5249,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7394,6 +7398,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7656,6 +7661,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7783,6 +7789,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -347,6 +347,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
"GLURaw" = doDistribute super."GLURaw_1_5_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_1";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@ -605,6 +606,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2952,6 +2954,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5238,6 +5241,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7381,6 +7385,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7643,6 +7648,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7770,6 +7776,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -347,6 +347,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
"GLURaw" = doDistribute super."GLURaw_1_5_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_1";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@ -605,6 +606,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2952,6 +2954,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5238,6 +5241,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7380,6 +7384,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7642,6 +7647,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7769,6 +7775,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -347,6 +347,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
"GLURaw" = doDistribute super."GLURaw_1_5_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_1";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@ -605,6 +606,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2952,6 +2954,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5236,6 +5239,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7376,6 +7380,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7638,6 +7643,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7765,6 +7771,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -347,6 +347,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
"GLURaw" = doDistribute super."GLURaw_1_5_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_1";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@ -605,6 +606,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2950,6 +2952,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5233,6 +5236,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7371,6 +7375,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7633,6 +7638,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7760,6 +7766,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -347,6 +347,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
"GLURaw" = doDistribute super."GLURaw_1_5_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_1";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@ -605,6 +606,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2948,6 +2950,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5230,6 +5233,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7365,6 +7369,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7627,6 +7632,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7754,6 +7760,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -346,6 +346,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
"GLURaw" = doDistribute super."GLURaw_1_5_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_1";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@ -603,6 +604,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2941,6 +2943,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5220,6 +5223,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7353,6 +7357,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7615,6 +7620,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7742,6 +7748,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -346,6 +346,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
"GLURaw" = doDistribute super."GLURaw_1_5_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_1";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@ -603,6 +604,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2936,6 +2938,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5212,6 +5215,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7342,6 +7346,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7604,6 +7609,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7731,6 +7737,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -346,6 +346,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
"GLURaw" = doDistribute super."GLURaw_1_5_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_1";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@ -602,6 +603,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2930,6 +2932,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5204,6 +5207,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7331,6 +7335,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7593,6 +7598,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7720,6 +7726,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -346,6 +346,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
"GLURaw" = doDistribute super."GLURaw_1_5_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_1";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@ -602,6 +603,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2930,6 +2932,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5202,6 +5205,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7326,6 +7330,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7588,6 +7593,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7715,6 +7721,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -607,6 +607,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2971,6 +2972,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5286,6 +5288,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7456,6 +7459,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7720,6 +7724,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7847,6 +7852,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -346,6 +346,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
"GLURaw" = doDistribute super."GLURaw_1_5_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_1";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@ -602,6 +603,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2926,6 +2928,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5197,6 +5200,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7319,6 +7323,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7581,6 +7586,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7708,6 +7714,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -346,6 +346,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
"GLURaw" = doDistribute super."GLURaw_1_5_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_1";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@ -602,6 +603,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2926,6 +2928,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5195,6 +5198,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7313,6 +7317,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7575,6 +7580,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7700,6 +7706,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -346,6 +346,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
"GLURaw" = doDistribute super."GLURaw_1_5_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_1";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@ -602,6 +603,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2925,6 +2927,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5191,6 +5194,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7309,6 +7313,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7571,6 +7576,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7696,6 +7702,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -607,6 +607,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2970,6 +2971,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5284,6 +5286,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7453,6 +7456,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7717,6 +7721,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7844,6 +7849,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -607,6 +607,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2969,6 +2970,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5282,6 +5284,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7447,6 +7450,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7711,6 +7715,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7838,6 +7843,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -607,6 +607,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2967,6 +2968,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5279,6 +5281,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7443,6 +7446,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7707,6 +7711,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7834,6 +7839,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -607,6 +607,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2963,6 +2964,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5273,6 +5275,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7436,6 +7439,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7698,6 +7702,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7825,6 +7830,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -347,6 +347,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
"GLURaw" = doDistribute super."GLURaw_1_5_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_1";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@ -605,6 +606,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2961,6 +2963,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5271,6 +5274,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7434,6 +7438,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7696,6 +7701,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7823,6 +7829,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -347,6 +347,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
"GLURaw" = doDistribute super."GLURaw_1_5_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_1";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@ -605,6 +606,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2960,6 +2962,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5267,6 +5270,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7426,6 +7430,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7688,6 +7693,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7815,6 +7821,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -347,6 +347,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
"GLURaw" = doDistribute super."GLURaw_1_5_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_1";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@ -605,6 +606,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2955,6 +2957,7 @@ self: super: {
"fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -5257,6 +5260,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-peel" = dontDistribute super."monad-peel";
@ -7409,6 +7413,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7671,6 +7676,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlambda" = dontDistribute super."unlambda";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
@ -7798,6 +7804,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -587,6 +587,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2455,6 +2456,7 @@ self: super: {
"djinn" = dontDistribute super."djinn";
"djinn-th" = dontDistribute super."djinn-th";
"dlist" = doDistribute super."dlist_0_7_1_1";
"dns" = doDistribute super."dns_2_0_0";
"dnscache" = dontDistribute super."dnscache";
"dnsrbl" = dontDistribute super."dnsrbl";
"dnssd" = dontDistribute super."dnssd";
@ -2810,6 +2812,7 @@ self: super: {
"find-conduit" = dontDistribute super."find-conduit";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -3399,6 +3402,7 @@ self: super: {
"happstack-lite" = dontDistribute super."happstack-lite";
"happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
"happstack-plugins" = dontDistribute super."happstack-plugins";
"happstack-server" = doDistribute super."happstack-server_7_4_4";
"happstack-server-tls" = dontDistribute super."happstack-server-tls";
"happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
"happstack-state" = dontDistribute super."happstack-state";
@ -4975,6 +4979,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-ran" = dontDistribute super."monad-ran";
@ -7009,6 +7014,7 @@ self: super: {
"time-w3c" = dontDistribute super."time-w3c";
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7169,6 +7175,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
"type-list" = doDistribute super."type-list_0_2_0_0";
"type-natural" = dontDistribute super."type-natural";
"type-ord" = dontDistribute super."type-ord";
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
@ -7261,6 +7268,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
"unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
@ -7375,6 +7383,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -587,6 +587,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2452,6 +2453,7 @@ self: super: {
"djinn" = dontDistribute super."djinn";
"djinn-th" = dontDistribute super."djinn-th";
"dlist" = doDistribute super."dlist_0_7_1_1";
"dns" = doDistribute super."dns_2_0_0";
"dnscache" = dontDistribute super."dnscache";
"dnsrbl" = dontDistribute super."dnsrbl";
"dnssd" = dontDistribute super."dnssd";
@ -2804,6 +2806,7 @@ self: super: {
"find-conduit" = dontDistribute super."find-conduit";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -3393,6 +3396,7 @@ self: super: {
"happstack-lite" = dontDistribute super."happstack-lite";
"happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
"happstack-plugins" = dontDistribute super."happstack-plugins";
"happstack-server" = doDistribute super."happstack-server_7_4_4";
"happstack-server-tls" = dontDistribute super."happstack-server-tls";
"happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
"happstack-state" = dontDistribute super."happstack-state";
@ -4967,6 +4971,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-ran" = dontDistribute super."monad-ran";
@ -6998,6 +7003,7 @@ self: super: {
"time-w3c" = dontDistribute super."time-w3c";
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7158,6 +7164,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
"type-list" = doDistribute super."type-list_0_2_0_0";
"type-natural" = dontDistribute super."type-natural";
"type-ord" = dontDistribute super."type-ord";
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
@ -7250,6 +7257,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
"unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
@ -7363,6 +7371,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -584,6 +584,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2447,6 +2448,7 @@ self: super: {
"dixi" = dontDistribute super."dixi";
"djinn" = dontDistribute super."djinn";
"djinn-th" = dontDistribute super."djinn-th";
"dns" = doDistribute super."dns_2_0_0";
"dnscache" = dontDistribute super."dnscache";
"dnsrbl" = dontDistribute super."dnsrbl";
"dnssd" = dontDistribute super."dnssd";
@ -2799,6 +2801,7 @@ self: super: {
"find-conduit" = dontDistribute super."find-conduit";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -3386,6 +3389,7 @@ self: super: {
"happstack-lite" = dontDistribute super."happstack-lite";
"happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
"happstack-plugins" = dontDistribute super."happstack-plugins";
"happstack-server" = doDistribute super."happstack-server_7_4_4";
"happstack-server-tls" = dontDistribute super."happstack-server-tls";
"happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
"happstack-state" = dontDistribute super."happstack-state";
@ -4957,6 +4961,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-ran" = dontDistribute super."monad-ran";
@ -6980,6 +6985,7 @@ self: super: {
"time-w3c" = dontDistribute super."time-w3c";
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7140,6 +7146,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
"type-list" = doDistribute super."type-list_0_2_0_0";
"type-natural" = dontDistribute super."type-natural";
"type-ord" = dontDistribute super."type-ord";
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
@ -7232,6 +7239,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
"unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
@ -7345,6 +7353,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -583,6 +583,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2442,6 +2443,7 @@ self: super: {
"dixi" = dontDistribute super."dixi";
"djinn" = dontDistribute super."djinn";
"djinn-th" = dontDistribute super."djinn-th";
"dns" = doDistribute super."dns_2_0_0";
"dnscache" = dontDistribute super."dnscache";
"dnsrbl" = dontDistribute super."dnsrbl";
"dnssd" = dontDistribute super."dnssd";
@ -2794,6 +2796,7 @@ self: super: {
"find-conduit" = dontDistribute super."find-conduit";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -3380,6 +3383,7 @@ self: super: {
"happstack-lite" = dontDistribute super."happstack-lite";
"happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
"happstack-plugins" = dontDistribute super."happstack-plugins";
"happstack-server" = doDistribute super."happstack-server_7_4_4";
"happstack-server-tls" = dontDistribute super."happstack-server-tls";
"happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
"happstack-state" = dontDistribute super."happstack-state";
@ -4949,6 +4953,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-ran" = dontDistribute super."monad-ran";
@ -4983,6 +4988,7 @@ self: super: {
"mongrel2-handler" = dontDistribute super."mongrel2-handler";
"monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_9_3";
"monoid-extras" = doDistribute super."monoid-extras_0_4_0_1";
"monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record";
@ -6966,6 +6972,7 @@ self: super: {
"time-w3c" = dontDistribute super."time-w3c";
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7126,6 +7133,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
"type-list" = doDistribute super."type-list_0_2_0_0";
"type-natural" = dontDistribute super."type-natural";
"type-ord" = dontDistribute super."type-ord";
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
@ -7218,6 +7226,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
"unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
@ -7330,6 +7339,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -583,6 +583,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -2441,6 +2442,7 @@ self: super: {
"dixi" = dontDistribute super."dixi";
"djinn" = dontDistribute super."djinn";
"djinn-th" = dontDistribute super."djinn-th";
"dns" = doDistribute super."dns_2_0_0";
"dnscache" = dontDistribute super."dnscache";
"dnsrbl" = dontDistribute super."dnsrbl";
"dnssd" = dontDistribute super."dnssd";
@ -2793,6 +2795,7 @@ self: super: {
"find-conduit" = dontDistribute super."find-conduit";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -3379,6 +3382,7 @@ self: super: {
"happstack-lite" = dontDistribute super."happstack-lite";
"happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
"happstack-plugins" = dontDistribute super."happstack-plugins";
"happstack-server" = doDistribute super."happstack-server_7_4_4";
"happstack-server-tls" = dontDistribute super."happstack-server-tls";
"happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
"happstack-state" = dontDistribute super."happstack-state";
@ -4948,6 +4952,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-ran" = dontDistribute super."monad-ran";
@ -4982,6 +4987,7 @@ self: super: {
"mongrel2-handler" = dontDistribute super."mongrel2-handler";
"monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_9_3";
"monoid-extras" = doDistribute super."monoid-extras_0_4_0_1";
"monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record";
@ -6963,6 +6969,7 @@ self: super: {
"time-w3c" = dontDistribute super."time-w3c";
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7123,6 +7130,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
"type-list" = doDistribute super."type-list_0_2_0_0";
"type-natural" = dontDistribute super."type-natural";
"type-ord" = dontDistribute super."type-ord";
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
@ -7215,6 +7223,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
"unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
@ -7327,6 +7336,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -583,6 +583,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -772,6 +773,7 @@ self: super: {
"RNAdesign" = dontDistribute super."RNAdesign";
"RNAdraw" = dontDistribute super."RNAdraw";
"RNAwolf" = dontDistribute super."RNAwolf";
"RSA" = doDistribute super."RSA_2_1_0_3";
"Raincat" = dontDistribute super."Raincat";
"Random123" = dontDistribute super."Random123";
"RandomDotOrg" = dontDistribute super."RandomDotOrg";
@ -2437,6 +2439,7 @@ self: super: {
"dixi" = dontDistribute super."dixi";
"djinn" = dontDistribute super."djinn";
"djinn-th" = dontDistribute super."djinn-th";
"dns" = doDistribute super."dns_2_0_0";
"dnscache" = dontDistribute super."dnscache";
"dnsrbl" = dontDistribute super."dnsrbl";
"dnssd" = dontDistribute super."dnssd";
@ -2787,6 +2790,7 @@ self: super: {
"find-conduit" = dontDistribute super."find-conduit";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -3373,6 +3377,7 @@ self: super: {
"happstack-lite" = dontDistribute super."happstack-lite";
"happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
"happstack-plugins" = dontDistribute super."happstack-plugins";
"happstack-server" = doDistribute super."happstack-server_7_4_4";
"happstack-server-tls" = dontDistribute super."happstack-server-tls";
"happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
"happstack-state" = dontDistribute super."happstack-state";
@ -4935,6 +4940,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-ran" = dontDistribute super."monad-ran";
@ -4969,6 +4975,7 @@ self: super: {
"mongrel2-handler" = dontDistribute super."mongrel2-handler";
"monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_9_3";
"monoid-extras" = doDistribute super."monoid-extras_0_4_0_1";
"monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record";
@ -6940,6 +6947,7 @@ self: super: {
"time-w3c" = dontDistribute super."time-w3c";
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7100,6 +7108,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
"type-list" = doDistribute super."type-list_0_2_0_0";
"type-natural" = dontDistribute super."type-natural";
"type-ord" = dontDistribute super."type-ord";
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
@ -7192,6 +7201,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
"unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
@ -7304,6 +7314,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -583,6 +583,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -772,6 +773,7 @@ self: super: {
"RNAdesign" = dontDistribute super."RNAdesign";
"RNAdraw" = dontDistribute super."RNAdraw";
"RNAwolf" = dontDistribute super."RNAwolf";
"RSA" = doDistribute super."RSA_2_1_0_3";
"Raincat" = dontDistribute super."Raincat";
"Random123" = dontDistribute super."Random123";
"RandomDotOrg" = dontDistribute super."RandomDotOrg";
@ -2432,6 +2434,7 @@ self: super: {
"dixi" = dontDistribute super."dixi";
"djinn" = dontDistribute super."djinn";
"djinn-th" = dontDistribute super."djinn-th";
"dns" = doDistribute super."dns_2_0_0";
"dnscache" = dontDistribute super."dnscache";
"dnsrbl" = dontDistribute super."dnsrbl";
"dnssd" = dontDistribute super."dnssd";
@ -2778,6 +2781,7 @@ self: super: {
"find-conduit" = dontDistribute super."find-conduit";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -3360,6 +3364,7 @@ self: super: {
"happstack-lite" = dontDistribute super."happstack-lite";
"happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
"happstack-plugins" = dontDistribute super."happstack-plugins";
"happstack-server" = doDistribute super."happstack-server_7_4_4";
"happstack-server-tls" = dontDistribute super."happstack-server-tls";
"happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
"happstack-state" = dontDistribute super."happstack-state";
@ -4915,6 +4920,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-ran" = dontDistribute super."monad-ran";
@ -4949,6 +4955,7 @@ self: super: {
"mongrel2-handler" = dontDistribute super."mongrel2-handler";
"monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_9_3";
"monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record";
"monoid-statistics" = dontDistribute super."monoid-statistics";
@ -6913,6 +6920,7 @@ self: super: {
"time-w3c" = dontDistribute super."time-w3c";
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7072,6 +7080,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
"type-list" = doDistribute super."type-list_0_2_0_0";
"type-natural" = dontDistribute super."type-natural";
"type-ord" = dontDistribute super."type-ord";
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
@ -7164,6 +7173,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
"unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
@ -7275,6 +7285,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -581,6 +581,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -770,6 +771,7 @@ self: super: {
"RNAdesign" = dontDistribute super."RNAdesign";
"RNAdraw" = dontDistribute super."RNAdraw";
"RNAwolf" = dontDistribute super."RNAwolf";
"RSA" = doDistribute super."RSA_2_1_0_3";
"Raincat" = dontDistribute super."Raincat";
"Random123" = dontDistribute super."Random123";
"RandomDotOrg" = dontDistribute super."RandomDotOrg";
@ -2418,6 +2420,7 @@ self: super: {
"dixi" = dontDistribute super."dixi";
"djinn" = dontDistribute super."djinn";
"djinn-th" = dontDistribute super."djinn-th";
"dns" = doDistribute super."dns_2_0_0";
"dnscache" = dontDistribute super."dnscache";
"dnsrbl" = dontDistribute super."dnsrbl";
"dnssd" = dontDistribute super."dnssd";
@ -2763,6 +2766,7 @@ self: super: {
"find-conduit" = dontDistribute super."find-conduit";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -3344,6 +3348,7 @@ self: super: {
"happstack-lite" = dontDistribute super."happstack-lite";
"happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
"happstack-plugins" = dontDistribute super."happstack-plugins";
"happstack-server" = doDistribute super."happstack-server_7_4_4";
"happstack-server-tls" = dontDistribute super."happstack-server-tls";
"happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
"happstack-state" = dontDistribute super."happstack-state";
@ -4893,6 +4898,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-ran" = dontDistribute super."monad-ran";
@ -4927,6 +4933,7 @@ self: super: {
"mongrel2-handler" = dontDistribute super."mongrel2-handler";
"monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_9_3";
"monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record";
"monoid-statistics" = dontDistribute super."monoid-statistics";
@ -6176,16 +6183,21 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
"servant" = doDistribute super."servant_0_4_4_4";
"servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0";
"servant-blaze" = dontDistribute super."servant-blaze";
"servant-client" = doDistribute super."servant-client_0_4_4_4";
"servant-docs" = doDistribute super."servant-docs_0_4_4_4";
"servant-ede" = dontDistribute super."servant-ede";
"servant-examples" = dontDistribute super."servant-examples";
"servant-jquery" = doDistribute super."servant-jquery_0_4_4_4";
"servant-lucid" = dontDistribute super."servant-lucid";
"servant-mock" = dontDistribute super."servant-mock";
"servant-pool" = dontDistribute super."servant-pool";
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-response" = dontDistribute super."servant-response";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_4";
"servius" = dontDistribute super."servius";
"ses-html" = dontDistribute super."ses-html";
"ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
@ -6876,6 +6888,7 @@ self: super: {
"time-w3c" = dontDistribute super."time-w3c";
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7033,6 +7046,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
"type-list" = doDistribute super."type-list_0_2_0_0";
"type-natural" = dontDistribute super."type-natural";
"type-ord" = dontDistribute super."type-ord";
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
@ -7125,6 +7139,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
"unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
@ -7236,6 +7251,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";

View File

@ -581,6 +581,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -770,6 +771,7 @@ self: super: {
"RNAdesign" = dontDistribute super."RNAdesign";
"RNAdraw" = dontDistribute super."RNAdraw";
"RNAwolf" = dontDistribute super."RNAwolf";
"RSA" = doDistribute super."RSA_2_1_0_3";
"Raincat" = dontDistribute super."Raincat";
"Random123" = dontDistribute super."Random123";
"RandomDotOrg" = dontDistribute super."RandomDotOrg";
@ -2404,6 +2406,7 @@ self: super: {
"dixi" = dontDistribute super."dixi";
"djinn" = dontDistribute super."djinn";
"djinn-th" = dontDistribute super."djinn-th";
"dns" = doDistribute super."dns_2_0_0";
"dnscache" = dontDistribute super."dnscache";
"dnsrbl" = dontDistribute super."dnsrbl";
"dnssd" = dontDistribute super."dnssd";
@ -2748,6 +2751,7 @@ self: super: {
"find-conduit" = dontDistribute super."find-conduit";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -3328,6 +3332,7 @@ self: super: {
"happstack-lite" = dontDistribute super."happstack-lite";
"happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
"happstack-plugins" = dontDistribute super."happstack-plugins";
"happstack-server" = doDistribute super."happstack-server_7_4_4";
"happstack-server-tls" = dontDistribute super."happstack-server-tls";
"happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
"happstack-state" = dontDistribute super."happstack-state";
@ -4873,6 +4878,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-ran" = dontDistribute super."monad-ran";
@ -4907,6 +4913,7 @@ self: super: {
"mongrel2-handler" = dontDistribute super."mongrel2-handler";
"monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_9_3";
"monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record";
"monoid-statistics" = dontDistribute super."monoid-statistics";
@ -6152,16 +6159,21 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
"servant" = doDistribute super."servant_0_4_4_4";
"servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0";
"servant-blaze" = dontDistribute super."servant-blaze";
"servant-client" = doDistribute super."servant-client_0_4_4_4";
"servant-docs" = doDistribute super."servant-docs_0_4_4_4";
"servant-ede" = dontDistribute super."servant-ede";
"servant-examples" = dontDistribute super."servant-examples";
"servant-jquery" = doDistribute super."servant-jquery_0_4_4_4";
"servant-lucid" = dontDistribute super."servant-lucid";
"servant-mock" = dontDistribute super."servant-mock";
"servant-pool" = dontDistribute super."servant-pool";
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-response" = dontDistribute super."servant-response";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_4";
"servius" = dontDistribute super."servius";
"ses-html" = dontDistribute super."ses-html";
"ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
@ -6848,6 +6860,7 @@ self: super: {
"time-w3c" = dontDistribute super."time-w3c";
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -7004,6 +7017,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
"type-list" = doDistribute super."type-list_0_2_0_0";
"type-natural" = dontDistribute super."type-natural";
"type-ord" = dontDistribute super."type-ord";
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
@ -7096,6 +7110,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
"unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
@ -7207,6 +7222,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";
@ -7327,6 +7343,7 @@ self: super: {
"webrtc-vad" = dontDistribute super."webrtc-vad";
"webserver" = dontDistribute super."webserver";
"websnap" = dontDistribute super."websnap";
"websockets" = doDistribute super."websockets_0_9_6_0";
"websockets-snap" = dontDistribute super."websockets-snap";
"webwire" = dontDistribute super."webwire";
"wedding-announcement" = dontDistribute super."wedding-announcement";

View File

@ -580,6 +580,7 @@ self: super: {
"LambdaNet" = dontDistribute super."LambdaNet";
"LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
"LambdaShell" = dontDistribute super."LambdaShell";
"Lambdaya" = dontDistribute super."Lambdaya";
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
"Lastik" = dontDistribute super."Lastik";
"Lattices" = dontDistribute super."Lattices";
@ -768,6 +769,7 @@ self: super: {
"RNAdesign" = dontDistribute super."RNAdesign";
"RNAdraw" = dontDistribute super."RNAdraw";
"RNAwolf" = dontDistribute super."RNAwolf";
"RSA" = doDistribute super."RSA_2_1_0_3";
"Raincat" = dontDistribute super."Raincat";
"Random123" = dontDistribute super."Random123";
"RandomDotOrg" = dontDistribute super."RandomDotOrg";
@ -2397,6 +2399,7 @@ self: super: {
"dixi" = dontDistribute super."dixi";
"djinn" = dontDistribute super."djinn";
"djinn-th" = dontDistribute super."djinn-th";
"dns" = doDistribute super."dns_2_0_0";
"dnscache" = dontDistribute super."dnscache";
"dnsrbl" = dontDistribute super."dnsrbl";
"dnssd" = dontDistribute super."dnssd";
@ -2739,6 +2742,7 @@ self: super: {
"find-conduit" = dontDistribute super."find-conduit";
"fingertree-tf" = dontDistribute super."fingertree-tf";
"finite-field" = dontDistribute super."finite-field";
"first-and-last" = dontDistribute super."first-and-last";
"first-class-patterns" = dontDistribute super."first-class-patterns";
"firstify" = dontDistribute super."firstify";
"fishfood" = dontDistribute super."fishfood";
@ -3318,6 +3322,7 @@ self: super: {
"happstack-lite" = dontDistribute super."happstack-lite";
"happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
"happstack-plugins" = dontDistribute super."happstack-plugins";
"happstack-server" = doDistribute super."happstack-server_7_4_4";
"happstack-server-tls" = dontDistribute super."happstack-server-tls";
"happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
"happstack-state" = dontDistribute super."happstack-state";
@ -4861,6 +4866,7 @@ self: super: {
"monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
"monad-open" = dontDistribute super."monad-open";
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
"monad-ran" = dontDistribute super."monad-ran";
@ -4894,6 +4900,7 @@ self: super: {
"mongrel2-handler" = dontDistribute super."mongrel2-handler";
"monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_9_3";
"monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record";
"monoid-statistics" = dontDistribute super."monoid-statistics";
@ -6136,16 +6143,21 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
"servant" = doDistribute super."servant_0_4_4_4";
"servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0";
"servant-blaze" = dontDistribute super."servant-blaze";
"servant-client" = doDistribute super."servant-client_0_4_4_4";
"servant-docs" = doDistribute super."servant-docs_0_4_4_4";
"servant-ede" = dontDistribute super."servant-ede";
"servant-examples" = dontDistribute super."servant-examples";
"servant-jquery" = doDistribute super."servant-jquery_0_4_4_4";
"servant-lucid" = dontDistribute super."servant-lucid";
"servant-mock" = dontDistribute super."servant-mock";
"servant-pool" = dontDistribute super."servant-pool";
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-response" = dontDistribute super."servant-response";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_4";
"servius" = dontDistribute super."servius";
"ses-html" = dontDistribute super."ses-html";
"ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
@ -6831,6 +6843,7 @@ self: super: {
"time-w3c" = dontDistribute super."time-w3c";
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeless" = dontDistribute super."timeless";
"timeout" = dontDistribute super."timeout";
"timeout-control" = dontDistribute super."timeout-control";
"timeout-with-results" = dontDistribute super."timeout-with-results";
@ -6987,6 +7000,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
"type-list" = doDistribute super."type-list_0_2_0_0";
"type-natural" = dontDistribute super."type-natural";
"type-ord" = dontDistribute super."type-ord";
"type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
@ -7079,6 +7093,7 @@ self: super: {
"unix-memory" = dontDistribute super."unix-memory";
"unix-process-conduit" = dontDistribute super."unix-process-conduit";
"unix-pty-light" = dontDistribute super."unix-pty-light";
"unix-time" = doDistribute super."unix-time_0_3_5";
"unlit" = dontDistribute super."unlit";
"unm-hip" = dontDistribute super."unm-hip";
"unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
@ -7190,6 +7205,7 @@ self: super: {
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
"verbalexpressions" = dontDistribute super."verbalexpressions";
"verbosity" = dontDistribute super."verbosity";
"verilog" = dontDistribute super."verilog";
@ -7309,6 +7325,7 @@ self: super: {
"webrtc-vad" = dontDistribute super."webrtc-vad";
"webserver" = dontDistribute super."webserver";
"websnap" = dontDistribute super."websnap";
"websockets" = doDistribute super."websockets_0_9_6_0";
"websockets-snap" = dontDistribute super."websockets-snap";
"webwire" = dontDistribute super."webwire";
"wedding-announcement" = dontDistribute super."wedding-announcement";
@ -7485,6 +7502,7 @@ self: super: {
"yes-precure5-command" = dontDistribute super."yes-precure5-command";
"yesod-angular" = dontDistribute super."yesod-angular";
"yesod-angular-ui" = dontDistribute super."yesod-angular-ui";
"yesod-auth" = doDistribute super."yesod-auth_1_4_7";
"yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
"yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
"yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";

File diff suppressed because it is too large Load Diff

View File

@ -1,12 +1,12 @@
{ stdenv, fetchgit }:
stdenv.mkDerivation rec {
name = "cppzmq-2015-07-06";
name = "cppzmq-20150926";
src = fetchgit {
url = "https://github.com/zeromq/cppzmq";
rev = "a88bf3e0b0bc6ed5f5b25a58f8997a1dae374c8b";
sha256 = "75a6630b870c1f0d5b9d6a0ba03e83ceee47aaa2a253894e75a8a93a6d65d3aa";
rev = "fa2f2c67a79c31d73bfef6862cc8ce12a98dd022";
sha256 = "7b46712b5fa7e59cd0ffae190674046c71d5762c064003c125d6cd7a3da19b71";
};
installPhase = ''

Some files were not shown because too many files have changed in this diff Show More