Merge remote-tracking branch 'upstream/master' into hardened-stdenv

This commit is contained in:
Robin Gloster 2016-07-21 00:56:43 +00:00
commit 1f04b4a566
226 changed files with 6549 additions and 1215 deletions

View file

@ -9,6 +9,8 @@ matrix:
- os: linux
sudo: required
dist: trusty
before_script:
- sudo mount -o remount,exec,size=2G,mode=755 /run/user
script: ./maintainers/scripts/travis-nox-review-pr.sh pr
- os: osx
osx_image: xcode7.3

View file

@ -1,14 +1,14 @@
with import ./.. { };
with lib;
let
sources = sourceFilesBySuffices ./. [".xml"];
pkgs = import ./.. { };
lib = pkgs.lib;
sources = lib.sourceFilesBySuffices ./. [".xml"];
sources-langs = ./languages-frameworks;
in
stdenv.mkDerivation {
pkgs.stdenv.mkDerivation {
name = "nixpkgs-manual";
buildInputs = [ pandoc libxml2 libxslt ];
buildInputs = with pkgs; [ pandoc libxml2 libxslt zip ];
xsltFlags = ''
--param section.autolabel 1
@ -26,7 +26,7 @@ stdenv.mkDerivation {
extraHeader = ''xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" '';
in ''
{
pandoc '${inputFile}' -w docbook ${optionalString useChapters "--chapters"} \
pandoc '${inputFile}' -w docbook ${lib.optionalString useChapters "--chapters"} \
--smart \
| sed -e 's|<ulink url=|<link xlink:href=|' \
-e 's|</ulink>|</link>|' \
@ -65,25 +65,35 @@ stdenv.mkDerivation {
outputFile = "languages-frameworks/r.xml";
}
+ ''
echo ${nixpkgsVersion} > .version
echo ${lib.nixpkgsVersion} > .version
# validate against relaxng schema
xmllint --nonet --xinclude --noxincludenode manual.xml --output manual-full.xml
${jing}/bin/jing ${docbook5}/xml/rng/docbook/docbook.rng manual-full.xml
${pkgs.jing}/bin/jing ${pkgs.docbook5}/xml/rng/docbook/docbook.rng manual-full.xml
dst=$out/share/doc/nixpkgs
mkdir -p $dst
xsltproc $xsltFlags --nonet --xinclude \
--output $dst/manual.html \
${docbook5_xsl}/xml/xsl/docbook/xhtml/docbook.xsl \
${pkgs.docbook5_xsl}/xml/xsl/docbook/xhtml/docbook.xsl \
./manual.xml
cp ${./style.css} $dst/style.css
mkdir -p $dst/images/callouts
cp "${docbook5_xsl}/xml/xsl/docbook/images/callouts/"*.gif $dst/images/callouts/
cp "${pkgs.docbook5_xsl}/xml/xsl/docbook/images/callouts/"*.gif $dst/images/callouts/
mkdir -p $out/nix-support
echo "doc manual $dst manual.html" >> $out/nix-support/hydra-build-products
xsltproc $xsltFlags --nonet --xinclude \
--output $dst/epub/ \
${pkgs.docbook5_xsl}/xml/xsl/docbook/epub/docbook.xsl \
./manual.xml
cp -r $dst/images $dst/epub/OEBPS
echo "application/epub+zip" > mimetype
zip -0Xq "$dst/Nixpkgs Contributors Guide - NixOS community.epub" mimetype
zip -Xr9D "$dst/Nixpkgs Contributors Guide - NixOS community.epub" $dst/epub/*
'';
}

View file

@ -110,6 +110,7 @@
dmalikov = "Dmitry Malikov <malikov.d.y@gmail.com>";
dochang = "Desmond O. Chang <dochang@gmail.com>";
doublec = "Chris Double <chris.double@double.co.nz>";
drets = "Dmytro Rets <dmitryrets@gmail.com>";
drewkett = "Andrew Burkett <burkett.andrew@gmail.com>";
ebzzry = "Rommel Martinez <ebzzry@gmail.com>";
ederoyd46 = "Matthew Brown <matt@ederoyd.co.uk>";

View file

@ -55,7 +55,7 @@ while test -n "$1"; do
token="--token $GITHUB_TOKEN"
fi
nix-shell --packages nox git --run "nox-review pr --slug $TRAVIS_REPO_SLUG $token $TRAVIS_PULL_REQUEST" -I nixpkgs=$TRAVIS_BUILD_DIR
nix-shell --packages nox git --run "nox-review pr --slug $TRAVIS_REPO_SLUG $token $TRAVIS_PULL_REQUEST"
fi
;;

View file

@ -270,6 +270,7 @@
toxvpn = 247;
squeezelite = 248;
turnserver = 249;
smokeping = 250;
# When adding a uid, make sure it doesn't match an existing gid. And don't use uids above 399!
@ -510,6 +511,7 @@
#toxvpn = 247; # unused
#squeezelite = 248; #unused
turnserver = 249;
smokeping = 250;
# When adding a gid, make sure it doesn't match an existing
# uid. Users and groups with the same name should have equal

View file

@ -84,6 +84,7 @@
./programs/venus.nix
./programs/wvdial.nix
./programs/xfs_quota.nix
./programs/xonsh.nix
./programs/zsh/zsh.nix
./rename.nix
./security/acme.nix
@ -395,6 +396,7 @@
./services/networking/shairport-sync.nix
./services/networking/shout.nix
./services/networking/sniproxy.nix
./services/networking/smokeping.nix
./services/networking/softether.nix
./services/networking/spiped.nix
./services/networking/sslh.nix

View file

@ -0,0 +1,62 @@
# This module defines global configuration for the xonsh.
{ config, lib, pkgs, ... }:
with lib;
let
cfge = config.environment;
cfg = config.programs.xonsh;
in
{
options = {
programs.xonsh = {
enable = mkOption {
default = false;
description = ''
Whether to configure xnosh as an interactive shell.
'';
type = types.bool;
};
package = mkOption {
type = types.package;
example = literalExample "pkgs.xonsh.override { configFile = \"/path/to/xonshrc\"; }";
description = ''
xonsh package to use.
'';
};
config = mkOption {
default = "";
description = "Control file to customize your shell behavior.";
type = types.lines;
};
};
};
config = mkIf cfg.enable {
environment.etc."xonshrc".text = cfg.config;
environment.systemPackages = [ pkgs.xonsh ];
environment.shells =
[ "/run/current-system/sw/bin/xonsh"
"/var/run/current-system/sw/bin/xonsh"
"${pkgs.xonsh}/bin/xonsh"
];
};
}

View file

@ -48,7 +48,7 @@ in
default = "";
type = str;
description = ''
Password.
Password. WARNING: The password becomes world readable in the Nix store.
'';
};

View file

@ -0,0 +1,261 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.smokeping;
smokepingHome = "/var/lib/smokeping";
smokepingPidDir = "/run";
configFile = ''
*** General ***
owner = ${cfg.owner}
contact = ${cfg.ownerEmail}
mailhost = ${cfg.mailHost}
#sendmail = /var/setuid-wrappers/sendmail
imgcache = ${smokepingHome}/cache
imgurl = http://${cfg.hostName}:${builtins.toString cfg.port}/cache
datadir = ${smokepingHome}/data
piddir = ${smokepingPidDir}
cgiurl = http://${cfg.hostName}:${builtins.toString cfg.port}/smokeping.cgi
smokemail = ${cfg.smokeMailTemplate}
*** Presentation ***
template = ${cfg.presentationTemplate}
${cfg.presentationConfig}
#*** Alerts ***
#${cfg.alertConfig}
*** Database ***
${cfg.databaseConfig}
*** Probes ***
${cfg.probeConfig}
*** Targets ***
${cfg.targetConfig}
${cfg.extraConfig}
'';
configPath = pkgs.writeText "smokeping.conf" configFile;
cgiHome = pkgs.writeScript "smokeping.fcgi" ''
#!${pkgs.bash}/bin/bash
${cfg.package}/bin/smokeping_cgi ${configPath}
'';
in
{
options = {
services.smokeping = {
enable = mkOption {
type = types.bool;
default = false;
description = "Enable the smokeping service";
};
webService = mkOption {
type = types.bool;
default = true;
description = "Enable a smokeping web interface";
};
user = mkOption {
type = types.string;
default = "smokeping";
description = "User that runs smokeping and (optionally) thttpd";
};
mailHost = mkOption {
type = types.string;
default = "127.0.0.1";
description = "Use this SMTP server rather than localhost";
};
smokeMailTemplate = mkOption {
type = types.string;
default = "${cfg.package}/etc/smokemail.dist";
description = "Specify the smokemail template for alerts.";
};
package = mkOption {
type = types.package;
default = pkgs.smokeping;
description = "Specify a custom smokeping package";
};
owner = mkOption {
type = types.string;
default = "nobody";
example = "Joe Admin";
description = "Real name of the owner of the instance";
};
hostName = mkOption {
type = types.string;
default = config.networking.hostName;
example = "somewhere.example.com";
description = "DNS name for the urls generated in the cgi.";
};
port = mkOption {
type = types.int;
default = 8081;
example = 8081;
description = "TCP port to use for the web server.";
};
ownerEmail = mkOption {
type = types.string;
default = "no-reply@${cfg.hostName}";
example = "no-reply@yourdomain.com";
description = "Email contact for owner";
};
databaseConfig = mkOption {
type = types.string;
default = ''
step = 300
pings = 20
# consfn mrhb steps total
AVERAGE 0.5 1 1008
AVERAGE 0.5 12 4320
MIN 0.5 12 4320
MAX 0.5 12 4320
AVERAGE 0.5 144 720
MAX 0.5 144 720
MIN 0.5 144 720
'';
example = literalExample ''
# near constant pings.
step = 30
pings = 20
# consfn mrhb steps total
AVERAGE 0.5 1 10080
AVERAGE 0.5 12 43200
MIN 0.5 12 43200
MAX 0.5 12 43200
AVERAGE 0.5 144 7200
MAX 0.5 144 7200
MIN 0.5 144 7200
'';
description = ''Configure the ping frequency and retention of the rrd files.
Once set, changing the interval will require deletion or migration of all
the collected data.'';
};
alertConfig = mkOption {
type = types.string;
default = "";
example = literalExample ''
to = alertee@address.somewhere
from = smokealert@company.xy
+someloss
type = loss
# in percent
pattern = >0%,*12*,>0%,*12*,>0%
comment = loss 3 times in a row;
'';
description = "Configuration for alerts.";
};
presentationTemplate = mkOption {
type = types.string;
default = "${pkgs.smokeping}/etc/basepage.html.dist";
description = "Default page layout for the web UI.";
};
presentationConfig = mkOption {
type = types.string;
default = ''
+ charts
menu = Charts
title = The most interesting destinations
++ stddev
sorter = StdDev(entries=>4)
title = Top Standard Deviation
menu = Std Deviation
format = Standard Deviation %f
++ max
sorter = Max(entries=>5)
title = Top Max Roundtrip Time
menu = by Max
format = Max Roundtrip Time %f seconds
++ loss
sorter = Loss(entries=>5)
title = Top Packet Loss
menu = Loss
format = Packets Lost %f
++ median
sorter = Median(entries=>5)
title = Top Median Roundtrip Time
menu = by Median
format = Median RTT %f seconds
+ overview
width = 600
height = 50
range = 10h
+ detail
width = 600
height = 200
unison_tolerance = 2
"Last 3 Hours" 3h
"Last 30 Hours" 30h
"Last 10 Days" 10d
"Last 360 Days" 360d
'';
description = "presentation graph style";
};
probeConfig = mkOption {
type = types.string;
default = ''
+ FPing
binary = ${pkgs.fping}/bin/fping
'';
description = "Probe configuration";
};
targetConfig = mkOption {
type = types.string;
default = ''
probe = FPing
menu = Top
title = Network Latency Grapher
remark = Welcome to the SmokePing website of xxx Company. \
Here you will learn all about the latency of our network.
+ Local
menu = Local
title = Local Network
++ LocalMachine
menu = Local Machine
title = This host
host = localhost
'';
description = "Target configuration";
};
extraConfig = mkOption {
type = types.string;
default = "";
description = "Any additional customization not already included.";
};
};
};
config = mkIf cfg.enable {
users.extraUsers = singleton {
name = cfg.user;
isNormalUser = false;
isSystemUser = true;
uid = config.ids.uids.smokeping;
description = "smokeping daemon user";
home = smokepingHome;
};
systemd.services.smokeping = {
wantedBy = [ "multi-user.target"];
serviceConfig.User = cfg.user;
serviceConfig.PermissionsStartOnly = true;
preStart = ''
mkdir -m 0755 -p ${smokepingHome}/cache ${smokepingHome}/data
chown -R ${cfg.user} ${smokepingHome}
cp ${cgiHome} ${smokepingHome}/smokeping.fcgi
${cfg.package}/bin/smokeping --check --config=${configPath}
'';
script = ''${cfg.package}/bin/smokeping --config=${configPath} --nodaemon'';
};
systemd.services.thttpd = mkIf cfg.webService {
wantedBy = [ "multi-user.target"];
requires = [ "smokeping.service"];
partOf = [ "smokeping.service"];
path = with pkgs; [ bash rrdtool smokeping ];
script = ''${pkgs.thttpd}/bin/thttpd -u ${cfg.user} -c "**.fcgi" -d ${smokepingHome} -p ${builtins.toString cfg.port} -D'';
};
};
}

View file

@ -14,12 +14,26 @@ in
description = "Verbatim Caddyfile to use";
};
ca = mkOption {
default = "https://acme-v01.api.letsencrypt.org/directory";
example = "https://acme-staging.api.letsencrypt.org/directory";
type = types.string;
description = "Certificate authority ACME server. The default (Let's Encrypt production server) should be fine for most people.";
};
email = mkOption {
default = "";
type = types.string;
description = "Email address (for Let's Encrypt certificate)";
};
agree = mkOption {
default = false;
example = true;
type = types.bool;
description = "Agree to Let's Encrypt Subscriber Agreement";
};
dataDir = mkOption {
default = "/var/lib/caddy";
type = types.path;
@ -33,11 +47,13 @@ in
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
serviceConfig = {
ExecStart = "${pkgs.caddy.bin}/bin/caddy -conf=${configFile} -email=${cfg.email}";
Type = "simple";
User = "caddy";
Group = "caddy";
AmbientCapabilities = "cap_net_bind_service";
ExecStart = ''${pkgs.caddy.bin}/bin/caddy -conf=${configFile} \
-ca=${cfg.ca} -email=${cfg.email} ${optionalString cfg.agree "-agree"}
'';
Type = "simple";
User = "caddy";
Group = "caddy";
AmbientCapabilities = "cap_net_bind_service";
};
};

View file

@ -172,10 +172,6 @@ udevadm trigger --action=add
udevadm settle
# Load boot-time keymap before any LVM/LUKS initialization
@extraUtils@/bin/busybox loadkmap < "@busyboxKeymap@"
# XXX: Use case usb->lvm will still fail, usb->luks->lvm is covered
@preLVMCommands@

View file

@ -185,15 +185,6 @@ let
};
# The binary keymap for busybox to load at boot.
busyboxKeymap = pkgs.runCommand "boottime-keymap"
{ preferLocalBuild = true; }
''
${pkgs.kbd}/bin/loadkeys -qb "${config.i18n.consoleKeyMap}" > $out ||
${pkgs.kbd}/bin/loadkeys -qbu "${config.i18n.consoleKeyMap}" > $out
'';
# The init script of boot stage 1 (loading kernel modules for
# mounting the root FS).
bootStage1 = pkgs.substituteAll {
@ -203,7 +194,7 @@ let
isExecutable = true;
inherit udevRules extraUtils modulesClosure busyboxKeymap;
inherit udevRules extraUtils modulesClosure;
inherit (config.boot) resumeDevice devSize runSize;

View file

@ -12,6 +12,7 @@ let
cfgSpl = config.boot.spl;
cfgZfs = config.boot.zfs;
cfgSnapshots = config.services.zfs.autoSnapshot;
cfgSnapFlags = cfgSnapshots.flags;
inInitrd = any (fs: fs == "zfs") config.boot.initrd.supportedFilesystems;
inSystem = any (fs: fs == "zfs") config.boot.supportedFilesystems;
@ -45,6 +46,8 @@ let
dataPools = unique (filter (pool: !(elem pool rootPools)) allPools);
snapshotNames = [ "frequent" "hourly" "daily" "weekly" "monthly" ];
in
{
@ -139,6 +142,25 @@ in
'';
};
flags = mkOption {
default = "-k -p";
example = "-k -p --utc";
type = types.str;
description = ''
Flags to pass to the zfs-auto-snapshot command.
Run <literal>zfs-auto-snapshot</literal> (without any arguments) to
see available flags.
If it's not too inconvenient for snapshots to have timestamps in UTC,
it is suggested that you append <literal>--utc</literal> to the list
of default options (see example).
Otherwise, snapshot names can cause name conflicts or apparent time
reversals due to daylight savings, timezone or other date/time changes.
'';
};
frequent = mkOption {
default = 4;
type = types.int;
@ -237,7 +259,9 @@ in
environment.etc."zfs/zed.d".source = "${zfsUserPkg}/etc/zfs/zed.d/*";
system.fsPackages = [ zfsUserPkg ]; # XXX: needed? zfs doesn't have (need) a fsck
environment.systemPackages = [ zfsUserPkg ];
environment.systemPackages = [ zfsUserPkg ]
++ optional enableAutoSnapshots autosnapPkg; # so the user can run the command to see flags
services.udev.packages = [ zfsUserPkg ]; # to hook zvol naming, etc.
systemd.packages = [ zfsUserPkg ];
@ -305,60 +329,41 @@ in
})
(mkIf enableAutoSnapshots {
systemd.services."zfs-snapshot-frequent" = {
description = "ZFS auto-snapshotting every 15 mins";
after = [ "zfs-import.target" ];
serviceConfig = {
Type = "oneshot";
ExecStart = "${zfsAutoSnap} frequent ${toString cfgSnapshots.frequent}";
};
restartIfChanged = false;
startAt = "*:15,30,45";
};
systemd.services = let
descr = name: if name == "frequent" then "15 mins"
else if name == "hourly" then "hour"
else if name == "daily" then "day"
else if name == "weekly" then "week"
else if name == "monthly" then "month"
else throw "unknown snapshot name";
numSnapshots = name: builtins.getAttr name cfgSnapshots;
in builtins.listToAttrs (map (snapName:
{
name = "zfs-snapshot-${snapName}";
value = {
description = "ZFS auto-snapshotting every ${descr snapName}";
after = [ "zfs-import.target" ];
serviceConfig = {
Type = "oneshot";
ExecStart = "${zfsAutoSnap} ${cfgSnapFlags} ${snapName} ${toString (numSnapshots snapName)}";
};
restartIfChanged = false;
};
}) snapshotNames);
systemd.services."zfs-snapshot-hourly" = {
description = "ZFS auto-snapshotting every hour";
after = [ "zfs-import.target" ];
serviceConfig = {
Type = "oneshot";
ExecStart = "${zfsAutoSnap} hourly ${toString cfgSnapshots.hourly}";
};
restartIfChanged = false;
startAt = "hourly";
};
systemd.services."zfs-snapshot-daily" = {
description = "ZFS auto-snapshotting every day";
after = [ "zfs-import.target" ];
serviceConfig = {
Type = "oneshot";
ExecStart = "${zfsAutoSnap} daily ${toString cfgSnapshots.daily}";
};
restartIfChanged = false;
startAt = "daily";
};
systemd.services."zfs-snapshot-weekly" = {
description = "ZFS auto-snapshotting every week";
after = [ "zfs-import.target" ];
serviceConfig = {
Type = "oneshot";
ExecStart = "${zfsAutoSnap} weekly ${toString cfgSnapshots.weekly}";
};
restartIfChanged = false;
startAt = "weekly";
};
systemd.services."zfs-snapshot-monthly" = {
description = "ZFS auto-snapshotting every month";
after = [ "zfs-import.target" ];
serviceConfig = {
Type = "oneshot";
ExecStart = "${zfsAutoSnap} monthly ${toString cfgSnapshots.monthly}";
};
restartIfChanged = false;
startAt = "monthly";
};
systemd.timers = let
timer = name: if name == "frequent" then "*:15,30,45" else name;
in builtins.listToAttrs (map (snapName:
{
name = "zfs-snapshot-${snapName}";
value = {
wantedBy = [ "timers.target" ];
timerConfig = {
OnCalendar = timer snapName;
Persistent = "yes";
};
};
}) snapshotNames);
})
];
}

View file

@ -14,8 +14,8 @@ let
optimizedKeymap = pkgs.runCommand "keymap" {
nativeBuildInputs = [ pkgs.kbd ];
LOADKEYS_KEYMAP_PATH = "${kbdEnv}/share/keymaps/**";
} ''
cd ${kbdEnv}/share/keymaps
loadkeys -b ${optionalString isUnicode "-u"} "${config.i18n.consoleKeyMap}" > $out
'';
@ -61,7 +61,7 @@ in
default = false;
type = types.bool;
description = ''
Enable setting font and keymap as early as possible (in initrd).
Enable setting font as early as possible (in initrd).
'';
};
@ -83,6 +83,20 @@ in
environment.etc."vconsole.conf".source = vconsoleConf;
# Provide kbd with additional packages.
environment.etc."kbd".source = "${kbdEnv}/share";
boot.initrd.preLVMCommands = mkBefore ''
kbd_mode ${if isUnicode then "-u" else "-a"} -C /dev/console
printf "\033%%${if isUnicode then "G" else "@"}" >> /dev/console
loadkmap < ${optimizedKeymap}
${optionalString config.boot.earlyVconsoleSetup ''
setfont -C /dev/console $extraUtils/share/consolefonts/font.psf
''}
${concatImapStringsSep "\n" (n: color: ''
printf "${makeColorCS n color}" >> /dev/console
'') config.i18n.consoleColors}
'';
}
(mkIf (!config.boot.earlyVconsoleSetup) {
@ -112,18 +126,6 @@ in
cp -L $font $out/share/consolefonts/font.psf
fi
'';
boot.initrd.preLVMCommands = mkBefore ''
kbd_mode ${if isUnicode then "-u" else "-a"} -C /dev/console
printf "\033%%${if isUnicode then "G" else "@"}" >> /dev/console
loadkmap < ${optimizedKeymap}
setfont -C /dev/console $extraUtils/share/consolefonts/font.psf
${concatImapStringsSep "\n" (n: color: ''
printf "${makeColorCS n color}" >> /dev/console
'') config.i18n.consoleColors}
'';
})
]))
];

View file

@ -49,7 +49,7 @@ in
serviceConfig.ExecStart = "@${kernel.virtualboxGuestAdditions}/bin/VBoxService VBoxService --foreground";
};
services.xserver.videoDrivers = mkOverride 50 [ "virtualbox" ];
services.xserver.videoDrivers = mkOverride 50 [ "virtualbox" "modesetting" ];
services.xserver.config =
''

View file

@ -272,6 +272,7 @@ in rec {
tests.sddm = callTest tests/sddm.nix {};
tests.sddm-kde5 = callTest tests/sddm-kde5.nix {};
tests.simple = callTest tests/simple.nix {};
tests.smokeping = callTest tests/smokeping.nix {};
tests.taskserver = callTest tests/taskserver.nix {};
tests.tomcat = callTest tests/tomcat.nix {};
tests.udisks2 = callTest tests/udisks2.nix {};

31
nixos/tests/smokeping.nix Normal file
View file

@ -0,0 +1,31 @@
import ./make-test.nix ({ pkgs, ...} : {
name = "smokeping";
meta = with pkgs.stdenv.lib.maintainers; {
maintainers = [ cransom ];
};
nodes = {
sm =
{ pkgs, config, ... }:
{
services.smokeping = {
enable = true;
port = 8081;
probeConfig = ''
+ FPing
binary = ${pkgs.fping}/bin/fping
offset = 0%
'';
};
};
};
testScript = ''
startAll;
$sm->waitForUnit("smokeping");
$sm->waitForUnit("thttpd");
$sm->waitForFile("/var/lib/smokeping/data/Local/LocalMachine.rrd");
$sm->succeed("curl -s -f localhost:8081/smokeping.fcgi?target=Local");
$sm->succeed("ls /var/lib/smokeping/cache/Local/LocalMachine_mini.png");
'';
})

View file

@ -16,6 +16,8 @@ rec {
dogecoin = callPackage ./dogecoin.nix { withGui = true; };
dogecoind = callPackage ./dogecoin.nix { withGui = false; };
go-ethereum = callPackage ./go-ethereum.nix { };
litecoin = callPackage ./litecoin.nix { withGui = true; };
litecoind = callPackage ./litecoin.nix { withGui = false; };

View file

@ -0,0 +1,34 @@
{ stdenv, lib, go, fetchgit }:
stdenv.mkDerivation rec {
name = "go-ethereum-${version}";
version = "1.4.7";
rev = "refs/tags/v${version}";
goPackagePath = "github.com/ethereum/go-ethereum";
buildInputs = [ go ];
src = fetchgit {
inherit rev;
url = "https://${goPackagePath}";
sha256 = "19q518kxkvrr44cvsph4wv3lr6ivqsckz1f22r62932s3sq6gyd8";
};
buildPhase = ''
export GOROOT=$(mktemp -d --suffix=-goroot)
ln -sv ${go}/share/go/* $GOROOT
ln -svf ${go}/bin $GOROOT
make all
'';
installPhase = ''
mkdir -p $out/bin
cp -v build/bin/* $out/bin
'';
meta = {
homepage = "https://ethereum.github.io/go-ethereum/";
description = "Official golang implementation of the Ethereum protocol";
license = with lib.licenses; [ lgpl3 gpl3 ];
};
}

View file

@ -1,18 +1,21 @@
{ stdenv, fetchurl, liblo, libxml2, libjack2, libsndfile, wxGTK, libsigcxx
,libsamplerate, rubberband, pkgconfig, ncurses
{ stdenv, fetchFromGitHub , liblo, libxml2, libjack2, libsndfile, wxGTK, libsigcxx
,libsamplerate, rubberband, pkgconfig, autoconf, automake, libtool, gettext, ncurses, which
}:
stdenv.mkDerivation rec {
name = "sooperlooper-${version}";
version = "1.7.3";
src = fetchurl {
url = "http://essej.net/sooperlooper/${name}.tar.gz";
sha256 = "0n2gdxw1fx8nxxnpzf4sj0kp6k6zi1yq59cbz6qqzcnsnpnvszbs";
name = "sooperlooper-git-${version}";
version = "19-07-2016";
src = fetchFromGitHub {
owner = "essej";
repo = "sooperlooper";
rev = "3bdfe184cd59b51c757b8048536abc1146fb0de4";
sha256 = "0qz25h4idv79m97ici2kzx72fwzks3lysyksk3p3rx72lsijhf3g";
};
buildInputs = [
liblo libxml2 libjack2 libsndfile wxGTK libsigcxx
libsamplerate rubberband pkgconfig ncurses
liblo libxml2 libjack2 libsndfile wxGTK libsigcxx
libsamplerate rubberband pkgconfig autoconf automake libtool gettext ncurses which
];
meta = {

View file

@ -3,12 +3,12 @@
, lv2, mesa, gtk2, cairo, pango, fftwFloat, zita-convolver }:
stdenv.mkDerivation rec {
version = "2015-07-02";
version = "20160619";
name = "x42-plugins-${version}";
src = fetchurl {
url = "http://gareus.org/misc/x42-plugins/x42-plugins-20150702.tar.xz";
sha256 = "1mq0grabzbl9xsd53v2qajhr8nngk0d4lx9n0n3nwy95y2gmy6sm";
url = "http://gareus.org/misc/x42-plugins/${name}.tar.xz";
sha256 = "1ald0c5xbfkdq6g5xwyy8wmbi636m3k3gqrq16kbh46g0kld1as9";
};
buildInputs = [ mesa_glu ftgl freefont_ttf libjack2 libltc libsndfile libsamplerate lv2 mesa gtk2 cairo pango fftwFloat pkgconfig zita-convolver];

View file

@ -1,12 +1,14 @@
{ stdenv, fetchgit, emacs, python }:
{ stdenv, fetchFromGitHub, emacs, python }:
stdenv.mkDerivation rec {
name = "cask-0.7.3";
version = "0.7.4";
name = "cask-${version}";
src = fetchgit {
url = "https://github.com/cask/cask.git";
rev = "717b64a9ba7640ec366e8573da0c01f9c4d57b0c";
sha256 = "0bq24hac1z77g1bybwlk991dcc3pss2gjpwq0a6vvrqg5hw02lsf";
src = fetchFromGitHub {
owner = "cask";
repo = "cask";
rev = "v${version}";
sha256 = "1hvm6r6a8rgjwnn2mcamwqrmhz424vlr4mbvbri3wmn0ikbk510l";
};
buildInputs = [ emacs python ];

View file

@ -3,7 +3,7 @@
, libgnome_keyring, gtk3, ilmbase, intltool, lcms, lcms2
, lensfun, libXau, libXdmcp, libexif, libglade, libgphoto2, libjpeg
, libpng, libpthreadstubs, librsvg, libtiff, libxcb
, openexr, pixman, pkgconfig, sqlite, bash, libxslt, openjpeg
, openexr, osm-gps-map, pixman, pkgconfig, sqlite, bash, libxslt, openjpeg
, mesa, lua, pugixml, colord, colord-gtk, libxshmfence, libxkbcommon
, epoxy, at_spi2_core, libwebp, libsecret, wrapGAppsHook, gnome3
}:
@ -27,6 +27,7 @@ stdenv.mkDerivation rec {
libsoup graphicsmagick SDL json_glib openjpeg mesa lua pugixml
colord colord-gtk libxshmfence libxkbcommon epoxy at_spi2_core
libwebp libsecret wrapGAppsHook gnome3.adwaita-icon-theme
osm-gps-map
];
cmakeFlags = [

View file

@ -6,11 +6,11 @@
stdenv.mkDerivation rec {
name = "vifm-${version}";
version = "0.8.1";
version = "0.8.2";
src = fetchurl {
url = "mirror://sourceforge/project/vifm/vifm/${name}.tar.bz2";
sha256 = "0yf3xc4czdrcbvmhq7d4xkck5phrmxwybmnv1zdb56qg56baq64r";
sha256 = "07r15kq7kjl3a41sd11ncpsii866xxps4f90zh3lv8jqcrv6silb";
};
nativeBuildInputs = [ pkgconfig ];

View file

@ -0,0 +1,128 @@
{ stdenv
, fetchgit
, cmake
, boost
, gmp
, jsoncpp
, leveldb
, cryptopp
, libcpuid
, miniupnpc
, libjson_rpc_cpp
, curl
, libmicrohttpd
, mesa
, withOpenCL ? false
, opencl-headers ? null
, ocl-icd ? null
, withGUI ? false
, qtwebengine ? null
, qtbase ? null
, qtdeclarative ? null
, withProfiling ? false
, gperftools ? null
, withEVMJIT ? false
, llvm ? null
, zlib ? null
, ncurses ? null
, extraCmakeFlags ? []
}:
assert withOpenCL -> (opencl-headers != null) && (ocl-icd != null);
assert withGUI -> (qtwebengine != null) && (qtbase != null) && (qtdeclarative != null);
assert withProfiling -> (gperftools != null);
assert withEVMJIT -> (llvm != null) && (zlib != null) && (ncurses != null);
stdenv.mkDerivation rec {
name = "cpp-ethereum-${version}";
version = "1.2.9";
src = fetchgit {
url = https://github.com/ethereum/webthree-umbrella.git;
rev = "850479b159a0bfa316fd261ab96b0a043acd766c";
sha256 = "0k8w8gqzy71x77p0p85r38gfdnzrlzk2yvb3ablml9ppg4qb4ch5";
};
cmakeFlags = with stdenv.lib; concatStringsSep " " (flatten [
"-DCMAKE_BUILD_TYPE=Release"
"-DGUI=${toString withGUI}"
"-DETHASHCL=${toString withOpenCL}"
"-DPROFILING=${toString withProfiling}"
"-DEVMJIT=${toString withEVMJIT}"
(optional withOpenCL [
"-DCMAKE_INCLUDE_PATH=${opencl-headers}/include"
"-DCMAKE_LIBRARY_PATH=${ocl-icd}/lib"
])
(optional withEVMJIT "-DCMAKE_PREFIX_PATH=${llvm}")
extraCmakeFlags
]);
configurePhase = ''
export BOOST_INCLUDEDIR=${boost}/include
export BOOST_LIBRARYDIR=${boost.out}/lib
mkdir -p Build/Install
pushd Build
cmake .. -DCMAKE_INSTALL_PREFIX=$(pwd)/Install $cmakeFlags
'';
buildInputs = with stdenv.lib; [
cmake
boost
gmp
jsoncpp
leveldb
cryptopp
libcpuid
miniupnpc
libjson_rpc_cpp
curl
libmicrohttpd
mesa
(optional withOpenCL [
opencl-headers
ocl-icd
])
(optional withGUI [
qtwebengine
qtbase
qtdeclarative
])
(optional withProfiling gperftools)
(optional withEVMJIT [
llvm
zlib
ncurses
])
];
runPath = with stdenv.lib; (makeLibraryPath (flatten [ stdenv.cc.cc buildInputs ]));
installPhase = ''
make install
mkdir -p $out
for f in Install/lib/*.so* $(find Install/bin -executable -type f); do
patchelf --set-rpath $runPath:$out/lib $f
done
cp -r Install/* $out
'';
dontStrip = true;
meta = with stdenv.lib; {
decription = "Umbrella project for the Ethereum C++ implementation";
homepage = https://github.com/ethereum/webthree-umbrella.git;
license = licenses.gpl3;
maintainers = with maintainers; [ artuuge ];
platforms = platforms.linux;
};
}

View file

@ -4,189 +4,189 @@
# ruby generate_sources.rb 46.0.1 > sources.nix
{
version = "48.0b7";
version = "48.0b9";
sources = [
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ach/firefox-48.0b7.tar.bz2"; locale = "ach"; arch = "linux-i686"; sha512 = "9fa8e2fe59c149abf5b1f4fad168717aa68c9e3e9acb219aaf257aff953a719c2df1dfd55081c6c4398732c9bb16690e4481b7c3c9f1fc9ba20468ca38d7b9fa"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ach/firefox-48.0b7.tar.bz2"; locale = "ach"; arch = "linux-x86_64"; sha512 = "b4115232ee0cfa6062fb9c06743d31edc444f9e5481b84cae4c1ec275c55500a16fe7478ee79caa269b669e566701be225c45729946ca950a492b36038d208fa"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/af/firefox-48.0b7.tar.bz2"; locale = "af"; arch = "linux-i686"; sha512 = "03dde31a027765e7003c89188cfdbd87f57447c8d7f6542e11e01ac4242866f6db98943d8d50188b1e0c41d740f3ee95b5f9ead01e9df5ad9beeb066c0b1e54b"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/af/firefox-48.0b7.tar.bz2"; locale = "af"; arch = "linux-x86_64"; sha512 = "e9973af0cc52e2126ea682067fd7aa11bf071ae2aafab935d704122480a46658139043a29df30c038af85c1fde836ff7725bed21ea4c4778e176adbab704c6ed"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/an/firefox-48.0b7.tar.bz2"; locale = "an"; arch = "linux-i686"; sha512 = "1e23956adc055188e4342cfaa0e38d062bcacaf0fb99895fd2fe3535f4e528890a75a18e0620e881e1fc87d11ce8b21c280c88ed11b2444d037990a11fb8e9af"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/an/firefox-48.0b7.tar.bz2"; locale = "an"; arch = "linux-x86_64"; sha512 = "e75ea9a5ca4860f228d4b2aba3c9ba4d104a7cc24fa138102d80b595e29a391d15fb82d749ff7a03193dccfccc7bbd106dfbffe5ae7152afc4b62f4d05d58ad2"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ar/firefox-48.0b7.tar.bz2"; locale = "ar"; arch = "linux-i686"; sha512 = "df97f1f2414d9f2c1d5ddc50e901167fe3535ac0f71ef99e08552ff9a5f4b7e6162f258c41d1024e2f886969e7ae80b741c271b551a51ae05a48a3e7987a52b3"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ar/firefox-48.0b7.tar.bz2"; locale = "ar"; arch = "linux-x86_64"; sha512 = "79da3baef8806966891b803137f2b9610b3562f0a806ab2fe3234f3320cb0efe11ff523373e933d5d230a6959ca68ab013d64dded47e6043e9fee90202c8bbc7"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/as/firefox-48.0b7.tar.bz2"; locale = "as"; arch = "linux-i686"; sha512 = "ab18bd3f015cddf2dfe337556d29a20576dda5879a56242955476f50b0978808d3ec63812666ce73a58904a70edf251e3773ea34a38b955510ad331e5f66751a"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/as/firefox-48.0b7.tar.bz2"; locale = "as"; arch = "linux-x86_64"; sha512 = "26be5b409c5e4acd6a09482d1380f902cbc9948fce33ff5e33c22a8573b5ccd05f10a4b6f84dae8ed9280f5b6568a411837ec7bd1b64bfaf18670e2a45c475cf"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ast/firefox-48.0b7.tar.bz2"; locale = "ast"; arch = "linux-i686"; sha512 = "30d23a4012caa6faa02871be312ebf867321b5cddf1e74d7680e426af4a6670b34aa48f237ac8801c696d0cd2551f90ab5fe482b4a9bd03bd7d4521e204bba65"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ast/firefox-48.0b7.tar.bz2"; locale = "ast"; arch = "linux-x86_64"; sha512 = "cb0ff48d6cefe69c4f05a83d7b9247b5bccc31db8efa708a7de3ffa67459f8427ac255bb6645e59f7ff6047f0370d24d2668954837aed7d71eae88df6824cced"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/az/firefox-48.0b7.tar.bz2"; locale = "az"; arch = "linux-i686"; sha512 = "00685bee899c7a083fbe2a4dbdbe32df1f291c619e1ca681164a3c88782f6898a11add06a17f13aeb912c635d0fb2ea2c30c0e3bd5ff7cceb63b1134901ecab8"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/az/firefox-48.0b7.tar.bz2"; locale = "az"; arch = "linux-x86_64"; sha512 = "e4133e1a9fb103652037caf21bc18815d89bf5e1a0d7b34abe115715e8e5060de8b00d35326bd3cfb9d5edb7cbe286456748953742e4cb5d5c76c7314a344720"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/be/firefox-48.0b7.tar.bz2"; locale = "be"; arch = "linux-i686"; sha512 = "9444970e5cc3f3359b02b8bc58f13edfd64ae6f99d306ae7d9baa084658c75b85120354614fe2655b600e0005de1b128df1e2967f93dd0fd1c31ee721e0ac306"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/be/firefox-48.0b7.tar.bz2"; locale = "be"; arch = "linux-x86_64"; sha512 = "08bf09e7b8f8911e42f5e88852f705c1f7263d1b6a0981c07f7ff651e620bd31c1a6baebd8a8a9353e49f9ed50d1c0d55bb88c97faaade0d415cba482ddc6f73"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/bg/firefox-48.0b7.tar.bz2"; locale = "bg"; arch = "linux-i686"; sha512 = "1708e547f2ea234537a0dcf40163ac18c641bb4860e74f054325db8ddf4960ee0649348b458a8fad1f5bfbe1fa4308c9fb13d84fb941c2928ea42f6ea77cccff"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/bg/firefox-48.0b7.tar.bz2"; locale = "bg"; arch = "linux-x86_64"; sha512 = "26540e48ce864590cc40a45d4124250674a1977778d3251b5f46701d3fa3b0f6d8a602b5bbe1449040ff943a2ed12bce7758037fe8ab753d0b43eb815e905ffb"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/bn-BD/firefox-48.0b7.tar.bz2"; locale = "bn-BD"; arch = "linux-i686"; sha512 = "6e37580672455a717be37061c4d3135e72cd6aacaceef20957cafe9fc95ff40a6781dd92a8425e4023f75f4d027c5961d7a3b0b6373501790ec5057da519baec"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/bn-BD/firefox-48.0b7.tar.bz2"; locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "1498ed777a7e3aec18945ab01aec80a51e7cf6a202ca38b333ed6aa9517170bf9ec4a3c9e638acb60cac5b01ca16963b41489cdf71cf40655cd87d2ef161d4ad"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/bn-IN/firefox-48.0b7.tar.bz2"; locale = "bn-IN"; arch = "linux-i686"; sha512 = "1d9335e8b1268fc163bc31d1afe58613738f08e4ca8a429da63e59e4b862e326cd62d82a686e5710304a5b86e9d2981885ce52aca9913d4cbbcd4c1e0a88e782"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/bn-IN/firefox-48.0b7.tar.bz2"; locale = "bn-IN"; arch = "linux-x86_64"; sha512 = "e686e0a9f8d5078d2a728add3085d0d11fcec9ce8b1a05f242769532ede411f41d8385b2199e2a27edbe8a58648d3e4b91df2d730e6bb17b7cb69c4a22630fb6"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/br/firefox-48.0b7.tar.bz2"; locale = "br"; arch = "linux-i686"; sha512 = "19f012125431f7c56ecf9ac12bb44a52aa041a97a0b2c1db3656d6229b4215d5bf492730c2bf08244e38ff120ad9003d4ee0842f834cfef8536b8f40d8e2217d"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/br/firefox-48.0b7.tar.bz2"; locale = "br"; arch = "linux-x86_64"; sha512 = "250c9dc52e661c91163ece0fc195ed29d621508ab5666ae97d74ffeabd0dac1effddcc4d0ad9573c5c44ba9aa746330b5a6dd40693491f52609b1c47e9fe97a0"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/bs/firefox-48.0b7.tar.bz2"; locale = "bs"; arch = "linux-i686"; sha512 = "fa946cf9eba376ddccae25b44c31cb41dec16c016c678c155d0fb6f235c2932fc59eac0df292940acceaa7f463979495de17c86863450a1a771a277440d2033d"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/bs/firefox-48.0b7.tar.bz2"; locale = "bs"; arch = "linux-x86_64"; sha512 = "eaf3e8c8706a6005f6f78645c709cfa2463e47f678baa395db6c562506b872d9d110e973186b4408022cb1d4a8b343d7c84e2e0f1a3c18e3d5c04b72c23243b4"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ca/firefox-48.0b7.tar.bz2"; locale = "ca"; arch = "linux-i686"; sha512 = "c4fefe7ea67edda4cf5ff7dccf6639246fb73eae683ef72bb7c75e25d630cea78fad38d11d690d9786e43e506cff548df3c867fe91d7570048759933f2ec0523"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ca/firefox-48.0b7.tar.bz2"; locale = "ca"; arch = "linux-x86_64"; sha512 = "9bcad65fcbfdc85892fc552809da740fd28094bf6be32ddf783a6d011c901f3a17d8ba8d33649111978cfd75274641f6e0aa3513b2d05ed100f2d2d9a8cf9057"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/cak/firefox-48.0b7.tar.bz2"; locale = "cak"; arch = "linux-i686"; sha512 = "430b4f156d4130d2a689349c172c40c635ebb4e41d8dff65f7e3971b92ce7682661de763a1ccd706c9fcd11d3590d53193502c01964b703a7a304313c94e710b"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/cak/firefox-48.0b7.tar.bz2"; locale = "cak"; arch = "linux-x86_64"; sha512 = "46f3fd5a750618f8bfbc8015748e12df62b1f3db470abd3e7b0edba01ffe4dae1909cdbda5dd5cdd78a0d62845eebaf8e6223cc11e4b88b3710e1ce62e3ebd39"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/cs/firefox-48.0b7.tar.bz2"; locale = "cs"; arch = "linux-i686"; sha512 = "d8b8eed71db048dbcd25f116e70040d5105dc3ea9ea69a77064807862f19229cc215ef1482c94609276b914ed7fe55250889b986ac1d11ed086e4de3bb15b9b3"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/cs/firefox-48.0b7.tar.bz2"; locale = "cs"; arch = "linux-x86_64"; sha512 = "01e23193ad0bb1c0cd218bf22e301fa79da810ec79f4d68afdbb6d7f3da5871de3f15f38abb5cb5440fe29a3781600dce4733fef67d0410ffc6e63b0c29fb9e4"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/cy/firefox-48.0b7.tar.bz2"; locale = "cy"; arch = "linux-i686"; sha512 = "451f4eaae757e9474e905135caa2718d75551f2893a6343256b8c8595dd312e0c5416a7d7488b6670cd361db81d44097fb3c54c3cfa27a7efe6386652addb472"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/cy/firefox-48.0b7.tar.bz2"; locale = "cy"; arch = "linux-x86_64"; sha512 = "c260f1090ffe09cc714ade4105c74bf234ab03f032cb066cecbc0308866c33169c9b3c7b37f3acd70d17794878d9e7e9f928a29c5e8aa2172d8475ca7460fb15"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/da/firefox-48.0b7.tar.bz2"; locale = "da"; arch = "linux-i686"; sha512 = "a449772de22183399c34d91b2c747253e7e32bd388e37b6f7194d68b87faf74df805886bc75230b19766ffb40e312c76d439754902b6d3c8b2057a654e656f33"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/da/firefox-48.0b7.tar.bz2"; locale = "da"; arch = "linux-x86_64"; sha512 = "990bf989ce48afd5261c7a6d6a4e3ada0c40acaaa5cc8c369724ff7eb73f5800009ea2c4584e8afe926f77d4b18af95510558bd99ff564754625e1c1dfe0d5ef"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/de/firefox-48.0b7.tar.bz2"; locale = "de"; arch = "linux-i686"; sha512 = "5c6cc3a65a31043ba0143d9609ad006b6cb4f9af4cbc57efb4d2012ec08438b63045dca06c93b7d9c657f7cab9e19e01ed2b5dc78b79f2d9f59ff85836a89009"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/de/firefox-48.0b7.tar.bz2"; locale = "de"; arch = "linux-x86_64"; sha512 = "1dcee925aa75eb0acdf3e21a0578dc7f747dbef8cecfe5024dba66461e03420ce9a9211b2c69a35861cdc75facb956f576cfe3664f91f4085aba1585d976fccd"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/dsb/firefox-48.0b7.tar.bz2"; locale = "dsb"; arch = "linux-i686"; sha512 = "c327582db0a1f78b1d4ec56115220c4bd5751eb46d16f26bd589b4b64291a66845d0277c4eb099cf197225771414ad1bd16a56d41587befd3fa1c766095c697d"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/dsb/firefox-48.0b7.tar.bz2"; locale = "dsb"; arch = "linux-x86_64"; sha512 = "eb049a000e908e5d46726d09ad8a219e1c60ff2f29959f5cfa416a788e5c747f50ff5e6b807fe30f7e013a7f5587f607834ff0faad6e060a33db55d04dc6cfb4"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/el/firefox-48.0b7.tar.bz2"; locale = "el"; arch = "linux-i686"; sha512 = "634320e4103b0ce72a6c132afc8e33ff4a234669f835a23e526c227e94f62be62075cb69d6883831d72d13d309d4e1ecf9947d850c8079efe0c880f7b7b79aed"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/el/firefox-48.0b7.tar.bz2"; locale = "el"; arch = "linux-x86_64"; sha512 = "85c4a47f5d3c65a6ee623f89420141f0cf7e02d8c7338d39c8c672cb0aae2364afd37c66fa740bbfb88c52aa37da6b9d106a824845c881e4de6c2d2604477d47"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/en-GB/firefox-48.0b7.tar.bz2"; locale = "en-GB"; arch = "linux-i686"; sha512 = "1ea0aafb65140f9c09aa4557d7460cfa9f206bd963137ec72a86d237be9cc3ca131b616c198e330d6328f48ae713cd5ac9f53159477b131e55e3ceef8e2ed7b9"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/en-GB/firefox-48.0b7.tar.bz2"; locale = "en-GB"; arch = "linux-x86_64"; sha512 = "1a726088d2843ce835154675c6dca3e877af6281bac63aada1e4969782350e985428971b216e9225646c8daf523907394a21080e7f4e40225b9ff62d24df4295"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/en-US/firefox-48.0b7.tar.bz2"; locale = "en-US"; arch = "linux-i686"; sha512 = "ded034cd43b45d73539a3c3f8a196f26d5e80c3cba84e3d2ccb925815b661b4c9a3eaad1d35bc363ecee70e3ccec953bb03795c6fad33debd1a81ce8dc71669c"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/en-US/firefox-48.0b7.tar.bz2"; locale = "en-US"; arch = "linux-x86_64"; sha512 = "0bdb77bee7fb8720f1154ffa486a8f6564ca592c56ce07b823800bd54218bc01c57bc27cddc73524c8f8fa1944c869523880a02fc698e44c5c71f4c800dd7208"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/en-ZA/firefox-48.0b7.tar.bz2"; locale = "en-ZA"; arch = "linux-i686"; sha512 = "9557d2b57e09c390cd706673c6b2203f2a1beec8952a63e2d891d00b975c67ba3b5f0f6da622e81572d090aecee42ea8ff398df61845f7564ddfd42818bdaf4f"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/en-ZA/firefox-48.0b7.tar.bz2"; locale = "en-ZA"; arch = "linux-x86_64"; sha512 = "0617a7b1117fe47bec89b86f89248cef981812a2126e64779d2f7b9c81fc11b38cb3ffe8f039aec72d4904cbb95505519e7ce64c115c1613e96adf90ee72f5d3"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/eo/firefox-48.0b7.tar.bz2"; locale = "eo"; arch = "linux-i686"; sha512 = "3e4ffa7728382e6862f224be0f576953120b563e0b68599df545ffb46483ae470d12280556a97b238aba0427651be744e9e93e7ba19be3d0764698367b4ab5ac"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/eo/firefox-48.0b7.tar.bz2"; locale = "eo"; arch = "linux-x86_64"; sha512 = "acf8527148b42e9ed50d027dd9c9a6de11975d40556b2ceb27bbb2fbe0e37a4f2839ca643972b55de52f95619eb432e16b12f0cfb501a5be3824e977315ef89d"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/es-AR/firefox-48.0b7.tar.bz2"; locale = "es-AR"; arch = "linux-i686"; sha512 = "ed70d0cf72acbcac71e0684ef755d987702412103bab21510daa7107b369186569e848586009fb3e654f54ca657e7cb259ad5574d5ca1e16c517100946135466"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/es-AR/firefox-48.0b7.tar.bz2"; locale = "es-AR"; arch = "linux-x86_64"; sha512 = "541f5579e3889413b6cfb1be40f5630ab401b7b0b3054cef1a633d89e36b59b1d83c86e44ccbb3acc8fbb13f2851b16e0b43f9aece4f98b0713b377606e742af"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/es-CL/firefox-48.0b7.tar.bz2"; locale = "es-CL"; arch = "linux-i686"; sha512 = "a44839ac7686b1d252cb04fe17ef5c2790d30214e5fa34a3cbd11f12dfbd9168acf7b33ef9dc22a06edd624726511e718691a973c5b70665eff78d0a18287413"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/es-CL/firefox-48.0b7.tar.bz2"; locale = "es-CL"; arch = "linux-x86_64"; sha512 = "84b768876fcbd95dd1f9734368c73b51b82ff445df975bfe913eb74c139e35d069acb1428b9afc51357c4567dba0d03950d7199b3fb43017df4987aa69247450"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/es-ES/firefox-48.0b7.tar.bz2"; locale = "es-ES"; arch = "linux-i686"; sha512 = "727f670438db45203d403746b7396b3b754b888b4a1d104b2bd0599790ef12b0a16db9a32b51617ea05bdff4f2ac696566970e83029e7e3d25434ddda8c4e88f"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/es-ES/firefox-48.0b7.tar.bz2"; locale = "es-ES"; arch = "linux-x86_64"; sha512 = "638ebd73556eacf0f2b38ef2d71db5922299d10c0d5b72b6bc7e935d814e300c17dd835f94517b8d0e62ba6e54d5bf5059dcaf57eb03a03bb7068161440f7c22"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/es-MX/firefox-48.0b7.tar.bz2"; locale = "es-MX"; arch = "linux-i686"; sha512 = "da88b8c3d5c9aeb33cbd637b00f4790225b7b46f4b8a1edfc6c49edeb1e29929c4690bd66de0afd31492b213a67eb617355adfe5a7d7b5ded09208eb3a861e36"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/es-MX/firefox-48.0b7.tar.bz2"; locale = "es-MX"; arch = "linux-x86_64"; sha512 = "0581028fea7610b44f27a6e5b25203020768d87e83e665aca24e753bbc0f0d49e2935c8f12755e6d4911e5f79052b4362447d1dfdc37838bfe9976e0d218e49e"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/et/firefox-48.0b7.tar.bz2"; locale = "et"; arch = "linux-i686"; sha512 = "6d150372dff1113d14cb32003fcbbfc11f9aff6ed8a0fc8f5f8e2d5d3119b34a8471469d69e8fe48161297e69f95185c414680b3c59bb95d7e483ab2805b5729"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/et/firefox-48.0b7.tar.bz2"; locale = "et"; arch = "linux-x86_64"; sha512 = "72d784c90c054d29420582a9a71d96c9a7270b1ac5592d8b920f8148542f17181d9cd71d019c0294c60112dde94191a686ad105993d7bd8340142ca849b5c150"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/eu/firefox-48.0b7.tar.bz2"; locale = "eu"; arch = "linux-i686"; sha512 = "0c2b1f0f886436c8d9fe6eead6718ee47e72fd988e1e4d83a70200f6d085419636058d6767a66d273842cb44573d39f58f72181ddfce01ca60f392c6c18df22c"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/eu/firefox-48.0b7.tar.bz2"; locale = "eu"; arch = "linux-x86_64"; sha512 = "7c03846d49cf1dba85202b2f7b6ed722898da5185a956ffde1c88df454560eb682ee562f782c3e21bf62b41ab156048ba1c63efacf7fd46f8fd7adf0536cff5d"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/fa/firefox-48.0b7.tar.bz2"; locale = "fa"; arch = "linux-i686"; sha512 = "3a21d3ecb88827de7094aa4ccf29005ffbf3f88681c459aa9f159d6dd6b04affda08661b1b77986b73a19de1fd2fdba2ceb91036ecc718a69cc5cb16e8c8bbe9"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/fa/firefox-48.0b7.tar.bz2"; locale = "fa"; arch = "linux-x86_64"; sha512 = "4750663d5eae7ba9fa282b0dd97e05cbcf3ace8b0715983525ae207de57d352b45495e0dcc46381979997532a8e20c85567a9de18056181f5d408d57cefddaa4"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ff/firefox-48.0b7.tar.bz2"; locale = "ff"; arch = "linux-i686"; sha512 = "e9f452656328e3c5a2dd7dde23b84ae535551bcba16b14cc58fbf8aa33f2eb8655cb4ff524a15b0a2db2d4af9ef5da4ca853fedb5c0d05b877fb0a8656833311"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ff/firefox-48.0b7.tar.bz2"; locale = "ff"; arch = "linux-x86_64"; sha512 = "f43daeec8c0647a8ee984d3541172516d1d8822596ab66a1a9651cd31d447a35f078725f1eb4b30a3f01c02b8573fb0ad268ada70ce013cf1932602f22119e4e"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/fi/firefox-48.0b7.tar.bz2"; locale = "fi"; arch = "linux-i686"; sha512 = "477e5594a9821864db879ebf04b74852c711c5f0a43e00c02bf17754817c20279c56705aa3e3b51bccd52f9380bc242b12bf58cf40a2b64d9697c8ea76270771"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/fi/firefox-48.0b7.tar.bz2"; locale = "fi"; arch = "linux-x86_64"; sha512 = "aeef4b397c9972c055392faf64947d16173a903c290e4d710067c5cbe6c422acb2172f17c8b72bd5b80ae883f4d22c905ca0581c11822975a42031f2621852b3"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/fr/firefox-48.0b7.tar.bz2"; locale = "fr"; arch = "linux-i686"; sha512 = "363bd189e7988393a97c7fd9544537068cb541e762427115bde4a3f05297302a30604a5e6a34c97b037c8f2e9c25ddcdee0ebbd8c292ba007362b6de858643c6"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/fr/firefox-48.0b7.tar.bz2"; locale = "fr"; arch = "linux-x86_64"; sha512 = "4da717be716a1c16440be76d988ed2ac2ff73bf5a8734d1025ff190cb6d3b9072bd613d973e65207102e4e54479c32e8101aef59de533487b60a1cf10e7ed9ae"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/fy-NL/firefox-48.0b7.tar.bz2"; locale = "fy-NL"; arch = "linux-i686"; sha512 = "49e343a363afb94a8b7f7d2aca557127af4743a97678d123fe2a4355d542497da1f5c43a9c83ec974586ca707c3988d416c9e55090c9bae10923bc5aae785bd9"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/fy-NL/firefox-48.0b7.tar.bz2"; locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "1c53d25d464e36d7dcdda0ba6dbe5bfc85c03309dd22edc916c97aac4ef7f4bdf6329349fe66d27e1e885b7ad76359e27c6fa885302905e6c6e785da1535b53e"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ga-IE/firefox-48.0b7.tar.bz2"; locale = "ga-IE"; arch = "linux-i686"; sha512 = "bfa9b70d5b2c891a82b92ad78e5f7b71df005ec142a1fe60e6bbc5717152f1b5325499fa5baca6a9f4e01be104b0dcddc11994a510e7cb41a5f1709dbe00c895"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ga-IE/firefox-48.0b7.tar.bz2"; locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "3d6bc3254bcffeda6260168bc43e58e1ea517543831579892b784cb43f51d9cf0b598f6acf1b56f51b72b7946f1904eb96168f046a80a76923ba52f265ef6d12"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/gd/firefox-48.0b7.tar.bz2"; locale = "gd"; arch = "linux-i686"; sha512 = "4c12d70a50e8d1b5bb2a912f3d070b30783757ea339eefa87e63c46f8e47646e69acaf975f3a565dff67bb65933bcf070bb823c195a5df9ba8968ac9a7fd82ea"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/gd/firefox-48.0b7.tar.bz2"; locale = "gd"; arch = "linux-x86_64"; sha512 = "fdb748f6914902308d074262d4a1816d8a0a26a3e7f159d013d321875297b7c46eb266473361567c92c5011234ddc66a89f0a88b7ec6435c39e7488167d0b63c"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/gl/firefox-48.0b7.tar.bz2"; locale = "gl"; arch = "linux-i686"; sha512 = "e450407c27de08ed93b088222fda97daea6cd69ec93a75f267ec67a510f3ea6a657eb4eed67844990f8815be28fa1af8fd722f208c3b6193fba38188eb03b134"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/gl/firefox-48.0b7.tar.bz2"; locale = "gl"; arch = "linux-x86_64"; sha512 = "be63e8e8dc2daa586fccfcf4e41979cc6746ab2797962a86b6644c9ed14d0f228a0a83aeea7ca115e4a13f33bd5048075ceff9c0ee7516ba1fc50dcece31d88d"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/gn/firefox-48.0b7.tar.bz2"; locale = "gn"; arch = "linux-i686"; sha512 = "545a5c29789b626e47db56d0b962989f8a73244d865ef03bbff57272f463706cc5de1cc5e346b0188d4dbd7caa3fb67f6c0ea6064320d6c81a7db678b8eac86c"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/gn/firefox-48.0b7.tar.bz2"; locale = "gn"; arch = "linux-x86_64"; sha512 = "4dff9aad6938c17f3b97b1901831cdf1f993f0c8c03c3d03881680e1a5d82a10c414f85d5d6ef8791ea5c352eeede94036075b8a14046b87b19caf6cb917f950"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/gu-IN/firefox-48.0b7.tar.bz2"; locale = "gu-IN"; arch = "linux-i686"; sha512 = "a63a9c54fd2e3db1c161d33b6c725711bbe43d5e915f6bfe50ebe9f667a47299989e9096ac8b8caf80c7f69f0fb276fce33873dc77b930d0cc228d0472ae81af"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/gu-IN/firefox-48.0b7.tar.bz2"; locale = "gu-IN"; arch = "linux-x86_64"; sha512 = "a9dd610aefc900d712bc68075d32ebe0e87a1de05af9b8592533db8cb65a1a6f56db5a566cd3c013a84d72802eac917fafd42517c0ce53b4701f58711ef0b7d8"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/he/firefox-48.0b7.tar.bz2"; locale = "he"; arch = "linux-i686"; sha512 = "5b0b46f00e3c61ea8c00b849b5605357979c7ec4276f9f490b6e75efee28fd4ba2aa285ebf689bacf58a40f03c2336e77a7b19c7fb518f95d900150c3c70d62e"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/he/firefox-48.0b7.tar.bz2"; locale = "he"; arch = "linux-x86_64"; sha512 = "d67ef81f2c539718ff6916349f9ecfff42983c2e28b02b64e8ac71c54ef2dbfe5e9a4da6ec6f1b4361e458940bfde6f4da7f22bc19515cbdb98cc0166bdb1c27"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/hi-IN/firefox-48.0b7.tar.bz2"; locale = "hi-IN"; arch = "linux-i686"; sha512 = "a15ac725626fdc4f9bfe02e31da4385af32c57c407dce7dc321e259fb29d4c46a254bd484dce8ea7d3e322fcdeef07d62f64a874d45f0460bd2b17007f688b71"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/hi-IN/firefox-48.0b7.tar.bz2"; locale = "hi-IN"; arch = "linux-x86_64"; sha512 = "2ded18a44554ddfe73721a35af71b77c600b362dce138ee78a633fa8d4d91a5fd55921654ff9c2eae05d0ebd9ede1de8b5c9bc07f761e068339474bb8622732e"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/hr/firefox-48.0b7.tar.bz2"; locale = "hr"; arch = "linux-i686"; sha512 = "797fa8e8ea628b9855f42bc3f77e1928743f9b96566ce886cf2897dbed920a6f83089f518bd07f5f820374e0968de848b46d8a6777d8c77ca581a1b172fd25c1"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/hr/firefox-48.0b7.tar.bz2"; locale = "hr"; arch = "linux-x86_64"; sha512 = "623eb40846a769825300177ffcde2f18721474605e6bbf7cacc0f26f2d7e3e68f0699a173fd0154bdbc6f56c13befe2bf45caa76dd3de7ba2249cb153b8624f2"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/hsb/firefox-48.0b7.tar.bz2"; locale = "hsb"; arch = "linux-i686"; sha512 = "58b1f83e123fbd32ca6d824aa87e0834d92f8c148db086fba5414519aa77a1469f5010077b119dd6758bf58165afdc1bcb0fe5b0b664a68fb73951047082ec07"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/hsb/firefox-48.0b7.tar.bz2"; locale = "hsb"; arch = "linux-x86_64"; sha512 = "853b6fa276e7e6c1ba0a30b95f8fde73e4bd4fb7e745c3722fed9de00bdae0d1739b78570a0108d2ff9efb73e8052e5d5192151ae789c5b336946039ece560d0"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/hu/firefox-48.0b7.tar.bz2"; locale = "hu"; arch = "linux-i686"; sha512 = "984d3ab191091e9956bd28a2112715d0c27a24e5345b9c515e2b0521030200d2742041340db0d916915c87071c70b3d60762ca278dbffb88ab35611f30337468"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/hu/firefox-48.0b7.tar.bz2"; locale = "hu"; arch = "linux-x86_64"; sha512 = "cae180b050bd956bca474b187648dc969c2ca8ca3816ebe46d379681bbd470029d93e6518e7fe6170864c2466e6b3752aa3f372df34b672f93687704a26f0b83"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/hy-AM/firefox-48.0b7.tar.bz2"; locale = "hy-AM"; arch = "linux-i686"; sha512 = "f26993353fab3bbae965b7d7cdef57bee60839e4a726c75c966ff2e99cf6edd3e249bb3e3adc7791b1095869fe6f5b43861337f8cc6d3017600e61fe436497a8"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/hy-AM/firefox-48.0b7.tar.bz2"; locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "b7c228256d16587720f186c1a257cd157d8302e597dfa6cb72fd984c05105cfbe6e33578addce044a88ae11b11e4e6703aea432d5823526caffb08e81b1b300d"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/id/firefox-48.0b7.tar.bz2"; locale = "id"; arch = "linux-i686"; sha512 = "324de4444814ec0e57c57fc4ca07dca20e10bb0a80df33ee01dcb8908caf6e5310563bfd66b62ea4eb5f595ed81edd9c504a8b6f81317bf85c4acdf9da2181af"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/id/firefox-48.0b7.tar.bz2"; locale = "id"; arch = "linux-x86_64"; sha512 = "8b199bf64955d23fdbf47c92c57022e7742dce10c02242cd3cecfb662303402dce4a6c784c141a63007f4ea92b78e0ea0fa74fb6bddf157a848b2e85f50acde9"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/is/firefox-48.0b7.tar.bz2"; locale = "is"; arch = "linux-i686"; sha512 = "4addbf9e9626f6f81a276e506b5974232da161e108c194ea34f755efa40e5f5b4df6e4feedc90309740b4e8c04b946a8da74cebc28867f2d23ca71d9c0dc4cf0"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/is/firefox-48.0b7.tar.bz2"; locale = "is"; arch = "linux-x86_64"; sha512 = "843bcdaf5855dba929b4e12ba88388e3dbe3372051a3d789ac5951a66ff4c044af563e2c04e005788bf087590444d390ccdc0646ed37571e95cfa5225976cd36"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/it/firefox-48.0b7.tar.bz2"; locale = "it"; arch = "linux-i686"; sha512 = "e637a52c2d365835de33b8e3f3dae7beac254169ac65671282252c3ce33816c3af3cd696c73d15a3f3a3827c72376245ead9b0f655d2bdc857156bab353ddf69"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/it/firefox-48.0b7.tar.bz2"; locale = "it"; arch = "linux-x86_64"; sha512 = "f62acc4a2d2e8fee43f3744e3adf6b2850de9b7ada59a9d985b5ea0051a2f00c2fb0ce14bffefe679c0359897e1920e071aacd177bc140719f47d64dccf799c6"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ja/firefox-48.0b7.tar.bz2"; locale = "ja"; arch = "linux-i686"; sha512 = "081aa992d79d9a07e82a3027294752fc338e715e0b26edd6dfbb80fad3fab78fc4c0ab5082cf8880912c3a3249d7d35b0ae99c2152bb87a025219e7ecf16f330"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ja/firefox-48.0b7.tar.bz2"; locale = "ja"; arch = "linux-x86_64"; sha512 = "3ffd093818c2fadc5d6e6a3ad9891b84352d522686ff1c23a9574c981a2421974d6346284db686a382193078ef3ad4ea8eaa081d9ecf59e4d07c396e1a1b223a"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/kk/firefox-48.0b7.tar.bz2"; locale = "kk"; arch = "linux-i686"; sha512 = "492e2165c88e5e2a1fcce1bfc2c994f7daddc1ded69d6b486f21d0655c6ccf112b1202080cc989bed68a1c35502c078025135af13ddcb0548b17d6f830c09b66"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/kk/firefox-48.0b7.tar.bz2"; locale = "kk"; arch = "linux-x86_64"; sha512 = "f5e7a56849dd1aafc13b3b0772fdb482cf6e283ad98cbf2aa655c016d443242d9b760cf133c130813f04cc572de3f5ccf5cd4beeac98d07cdd4d9441838b1f34"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/km/firefox-48.0b7.tar.bz2"; locale = "km"; arch = "linux-i686"; sha512 = "d21d401e1505bdea1dda8fcd65622547ff919e0fe2c3ef402c1a5a67a5c61d6c082730ae21286def66699a994f0196202ba03956e9f5ba42a166d8dbff2a1aa6"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/km/firefox-48.0b7.tar.bz2"; locale = "km"; arch = "linux-x86_64"; sha512 = "c0e08b44b09c3f8c0e17335c0d287285e3f6cd5e308688da36647ba226ecb10c98f87f92ca6b2d50e0718e39757bcace7132390ffc4d2a339db5d3cfbc37b85b"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/kn/firefox-48.0b7.tar.bz2"; locale = "kn"; arch = "linux-i686"; sha512 = "71d3dbd2fffbf51c64fe7af008e27a2d9ff3dba3417bd9c0f1106fcfd445f88c2865ba03799b8fbbb00c13242c1cc7995b5aeed3d20c19b95448a7597378023d"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/kn/firefox-48.0b7.tar.bz2"; locale = "kn"; arch = "linux-x86_64"; sha512 = "dda7d698c760ef750575f5978599bb964cc008a18ec048e744aecd17cf41d6eb2b9a69ea13efedf5a5d5a46da990c1df817027b7762cd169ca2f30a0920ebf98"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ko/firefox-48.0b7.tar.bz2"; locale = "ko"; arch = "linux-i686"; sha512 = "f427847b0a4d3e8c52f59a75e4b1971ae96998d202b44ed360f5781775d3cb1c705923a4acb96a365925fa1f27af7e7292d3e4f0af6c22af9803600d7a64a9ee"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ko/firefox-48.0b7.tar.bz2"; locale = "ko"; arch = "linux-x86_64"; sha512 = "fda5463fb43253a392616ea7f0e287464e83bc9f4c9b3a88ae40f0e2bb1b18b5873ebe7304d27b76b2016312d9a2ff416f3006f5a75f315e2be5f8ea16be82a5"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/lij/firefox-48.0b7.tar.bz2"; locale = "lij"; arch = "linux-i686"; sha512 = "38d539b3b0ad87b557aa9c75212c64978fe1397c797247d94ac6b2fec33723d6d05de80f1d79b84989424fe5074204eda4af3f23d163dbcfcd035e5f7f568ce8"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/lij/firefox-48.0b7.tar.bz2"; locale = "lij"; arch = "linux-x86_64"; sha512 = "a03e8261420d0b336545bf140916fea9cdf6cf2ba5bb55de6f039141011bccec49e88fddf7664e7a574c6da525f2f6646793b9d505135a311710a4d4014fde5d"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/lt/firefox-48.0b7.tar.bz2"; locale = "lt"; arch = "linux-i686"; sha512 = "ca11b61ed252863b6efcdab2438fca21bf837f29bcc7b719e5a99065aedb8f75bcae8beaec1a273624ea3c2a7a57db4386f52096777755297183691498f33c62"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/lt/firefox-48.0b7.tar.bz2"; locale = "lt"; arch = "linux-x86_64"; sha512 = "7d6af8577ce9c9e3ab13ee3313b4c35bdbeef802bb5a5a15fd991d4fcf063b49ea1292718a4d74ed57b7c6f00889c96c9261bba442476d6aa090623afccebd9b"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/lv/firefox-48.0b7.tar.bz2"; locale = "lv"; arch = "linux-i686"; sha512 = "19024158acd59afccdbe39430e463e9b441cf1950aadc713ff8a74d9da97cc11d9437d86d0542306a8fa4a29a69547b4d59aa28be2bbec8a434425f20ca0d1dd"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/lv/firefox-48.0b7.tar.bz2"; locale = "lv"; arch = "linux-x86_64"; sha512 = "73c81902a047a13c01fddc07eeab9886c0c55e2a3ebd30fee0a036878e52580f50c47a1dd4050cf39587b63432cc9c2947c88200fb2c95b143379a21ea60c400"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/mai/firefox-48.0b7.tar.bz2"; locale = "mai"; arch = "linux-i686"; sha512 = "d6a2d0b8821872b4f78f2fc9ec6ab9e602673bfff2d1b6339a37532f883b61134719d0e4e9caba53d3198107b895b3ce193839de2a374391c3fd58e595be1eca"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/mai/firefox-48.0b7.tar.bz2"; locale = "mai"; arch = "linux-x86_64"; sha512 = "bdb1e2e97b736b70a7d11538e3fc16be55889b14397709094c2efea1faa3c57b0c272cacca0fb0b307a3cba656145df3f7945cba4e9f762f3f9ee4f389e3ab50"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/mk/firefox-48.0b7.tar.bz2"; locale = "mk"; arch = "linux-i686"; sha512 = "0c52c93a00e1b82b5569787a624806f1c3175d40813da3da0833b23006cb377dd1b693120f96c1a6c172093393ad08321efc52262c5260e80fe037e709c94ae4"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/mk/firefox-48.0b7.tar.bz2"; locale = "mk"; arch = "linux-x86_64"; sha512 = "bc2c513eb37a667195180ba3933407c7f90cb1e815f2c646a5410fb942e562c3659eaf3200ec6397a12987267ea26be1c71dd4467f80045c79bb793f2144cd89"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ml/firefox-48.0b7.tar.bz2"; locale = "ml"; arch = "linux-i686"; sha512 = "7336e98002f71f6ff9b51d94b5c2ca2b5ff412d9069837053a63e3819013b36ad6587b9675089243f19474eda2906767e98b2cb3e96ace266ea29f5142c2533d"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ml/firefox-48.0b7.tar.bz2"; locale = "ml"; arch = "linux-x86_64"; sha512 = "fe70de56fa9d3bf56d355058c4412427f967f69467dd7b49cd1fa26c6abc898ae061b49bf259eaba7073fd926c1e8e5901a0979a88007ef3ba3d5caf07329203"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/mr/firefox-48.0b7.tar.bz2"; locale = "mr"; arch = "linux-i686"; sha512 = "180072a70d38d4607b8c2105dbfae2647900796208f6f5a6111419c4712e6ea959a6f5ca5068f1f7653ece073087e2f3c5dff177d92da4d92aba4ac1b4b7971e"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/mr/firefox-48.0b7.tar.bz2"; locale = "mr"; arch = "linux-x86_64"; sha512 = "08bd093d657ae4e6b6136d1627ebd355ea2794c2e2824ca4d4121a5a506b0682a65e1416aa2cab49fd00db4c3736ce09101225b0333385032a958309cd7e4edb"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ms/firefox-48.0b7.tar.bz2"; locale = "ms"; arch = "linux-i686"; sha512 = "a3bdac7effbb5a29f2ff1385da3de4a2c16a914d1d3306cee22b379779b1eb9d45f6a6c6bf10ef1e1a11ab52834a08c5510a38303c10cc6e4cfb96b32ce2769a"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ms/firefox-48.0b7.tar.bz2"; locale = "ms"; arch = "linux-x86_64"; sha512 = "08f2fe47c14ff5432f8944312e3d45d26dd3fa56bf4b0d350b4504cdc639eab147e3da9edc25b8551ab5156dc214101831c2c1c0f1b159201e5a061461e51285"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/nb-NO/firefox-48.0b7.tar.bz2"; locale = "nb-NO"; arch = "linux-i686"; sha512 = "cfbb14897df334df5f11305ec44f8e4b736a8320b6ed39e5581be413cc4daf92908ed54215e24e35e34e0904a1a500f295ebe64871e53438658d0340f7e708ad"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/nb-NO/firefox-48.0b7.tar.bz2"; locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "19403a121e9e86447f3265ef72bda4e3a7fca55dfa76e8a25381ff97412329705f8b8a79031fd0116ac7e0fdc29fb9afa0c1de14287399f28e95d181fc933470"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/nl/firefox-48.0b7.tar.bz2"; locale = "nl"; arch = "linux-i686"; sha512 = "73789e769bcf2bd710f5234cc9c0f046abd5aed5d66b4e900b19f87a3c23a7daccfd086d9fb80fc6ced3742ccec90e96aba785330a2dc9cc79d76780fdf56cf3"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/nl/firefox-48.0b7.tar.bz2"; locale = "nl"; arch = "linux-x86_64"; sha512 = "07a842dbcde5fa7c5623fe5e8bd8dec04b33b300f52a1ffa8fe604ddf93df9879b9179bf8363cca4aa62a1c878ed77fb5e0b5db85355b4a2d1405888a9a6268d"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/nn-NO/firefox-48.0b7.tar.bz2"; locale = "nn-NO"; arch = "linux-i686"; sha512 = "b82f14f66dee3036dd62d0af2889137d51521ff51494584fd8f50f380e8ead3d8290a73843a0aaa7dfc7e38c3f69c28b661185841c3f71f11eec686336c7f36b"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/nn-NO/firefox-48.0b7.tar.bz2"; locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "9b627e063644d138c5b9b5bfce48431f8926fb3b13caa01547aebf007a002c75f8ae3818d5643f212c2e6d1e6203c49a24412aaadcc2dc5539824c168ecea52e"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/or/firefox-48.0b7.tar.bz2"; locale = "or"; arch = "linux-i686"; sha512 = "7e36e94c90cd2ce6116a56a5f1ae2772eabfb19bfbe0a5bb616173f0e3cfc6d9f3cf77db07c767fe2673b29437ea8cdd70584e2b65752660d6c4878d598e0998"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/or/firefox-48.0b7.tar.bz2"; locale = "or"; arch = "linux-x86_64"; sha512 = "cfb9989b2ff2e2a81c3453dc7b03113e251d57b1925ba1fe60bcff4bca9fa16fe8ce6409cda6f90d7afde832b370a731d86c999df08e77a7c69ad6e72181f6e8"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/pa-IN/firefox-48.0b7.tar.bz2"; locale = "pa-IN"; arch = "linux-i686"; sha512 = "63e4f8e6e5d6360914073a1a8b9dfd9d1936ad3efef6994a880bde075468cd37809294d3cd80dbb693b429dd82426e06632b6ea87f776da509bfb1ed1cdc1848"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/pa-IN/firefox-48.0b7.tar.bz2"; locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "49a065634297b37532882cad5b13687fb6abfe0fdb577a4ea1bf86568abe2ef5b29bec7d786a47b8a12ad06d4fa78faffdea1f531245488efc42b14da24d2f52"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/pl/firefox-48.0b7.tar.bz2"; locale = "pl"; arch = "linux-i686"; sha512 = "06ff4df2f58d8c39ded84915d5f4ea2137f1692b7955c205a738fe65adc8c324c9e4e1f46963e40dfb74c483a33028d6157609e9f99819683008e0e5f992e52e"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/pl/firefox-48.0b7.tar.bz2"; locale = "pl"; arch = "linux-x86_64"; sha512 = "b07fc75e55b860ac8ce03262dfbe77ec558842baef037f0e390245f3bffab03df31f6488811b630ed5355878dc01e4930b839251fa726a121fcbfac2eddae9d8"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/pt-BR/firefox-48.0b7.tar.bz2"; locale = "pt-BR"; arch = "linux-i686"; sha512 = "56a5f63dda3c359203a1ada88dda971aefd4219e0d76a8123792131cc5abaf23a1bda2498c1f93725b853576f572205905f3b7d16569611adcf87b7bc96528b2"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/pt-BR/firefox-48.0b7.tar.bz2"; locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "5f7af50fa1620c17e4473c869fa0a4384518b79514108317c1aa8c5f32fe6635bf88eb53d589f4714fcae740988d56163e293960b40b2165eeb6fdc7146586c5"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/pt-PT/firefox-48.0b7.tar.bz2"; locale = "pt-PT"; arch = "linux-i686"; sha512 = "b3f4913abae949f1783cb6cfe934b97f3a93a579c8f57d3e29d87e15169234b58c5a243395ddd0944edf4519a9d3d735424bf14ff7280d7a54494989cbe7aed9"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/pt-PT/firefox-48.0b7.tar.bz2"; locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "71853f84f9f1545a099bee0994bc598845aceabf562730c1fbb7b0f9c3ea8113e6ba473840feadf76aa0d35ac0ae5a038188ef6078fdb192de99396973cfebce"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/rm/firefox-48.0b7.tar.bz2"; locale = "rm"; arch = "linux-i686"; sha512 = "d1aef184253166dcab16b1cf25bf58131ec76e30af84ea0a75d89106e253ae4b5ec17d55039b1d1584f39c4ee1ef7eb28b73144cb8312fe15aba74e43cea0ae4"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/rm/firefox-48.0b7.tar.bz2"; locale = "rm"; arch = "linux-x86_64"; sha512 = "1ebe23f6c352e088180ebc9f03c4e35b1c08a2c8b9efc64ef710c8bb0c70c082bcdc3f23c436a427a95bccc219a5be8011b46d49047483fb57a2be2ea61577a1"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ro/firefox-48.0b7.tar.bz2"; locale = "ro"; arch = "linux-i686"; sha512 = "6ae17fafcc61dcf5ea548e55c7535ac196402c20468ed53eb32a529eb756a88264660dc4acaf1f27dfeb9bf4e5515c75287b4cc8ac42c765358908659ee12d03"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ro/firefox-48.0b7.tar.bz2"; locale = "ro"; arch = "linux-x86_64"; sha512 = "9635df3cf66825a4ec30ca03f944929977bd526146d5991b03a2539e59a6d5a979f8d25697e9aa6e051ebd6f05bbfeb993e11e547491a272e77c36b695402d93"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ru/firefox-48.0b7.tar.bz2"; locale = "ru"; arch = "linux-i686"; sha512 = "ca1f6e5e32da878f50b2cfa5f42d78ed93423e0f4f308e914a184747c59a82f0d2db5c768fb65a16bb0409070614be44ea14351c21904e32baf5470b81fd4925"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ru/firefox-48.0b7.tar.bz2"; locale = "ru"; arch = "linux-x86_64"; sha512 = "14f66c3db5d3f17e064eeb80eec31ea4d531b827248eaa5d6d1c936962b77503f7b9adb16daf754909e4749f8548f4be8f86f3d01345bf9999e70d8e7c52f6d6"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/si/firefox-48.0b7.tar.bz2"; locale = "si"; arch = "linux-i686"; sha512 = "cd45ccd8f3e41ae3f4833f6f5a821dee061898fba61c974099361eb84272676b146896727889f8adecdd563db9c4ce0de666221eacc7f0ef841ce4a5155961d9"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/si/firefox-48.0b7.tar.bz2"; locale = "si"; arch = "linux-x86_64"; sha512 = "234fe0d5677b67bf5458df4290b055159860f43a3afa66982b9ed9279a5e74ba90ef6cde23fdbd9fb7134ef0ba47b270880b3561f35fdf2286b23e128f9d0da0"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/sk/firefox-48.0b7.tar.bz2"; locale = "sk"; arch = "linux-i686"; sha512 = "0cdc7209cbb2d537ba19ba206b53534f18ec0cfba1ad67a435f7134b1161f13236db2bce707cad50687790861e09ddd31a35eec8fd4965d4b1c697a84b4e00f4"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/sk/firefox-48.0b7.tar.bz2"; locale = "sk"; arch = "linux-x86_64"; sha512 = "8db988c2fe8624d9b7154a39df173f2bec70369edebcb02363f5a1ff50e299590722961d58c96bc7cd003e14b7db8e6c1c78a488bd1bf3721e880df1e14fed08"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/sl/firefox-48.0b7.tar.bz2"; locale = "sl"; arch = "linux-i686"; sha512 = "a67d0bb63da12db2a1d936b40dfbda4f4473a67c8937c771b8b07c651eb9302128cdce01c02f1bf52ea641dcd9520b5d79561c07a88004ab39ae4ddf28a6cfc0"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/sl/firefox-48.0b7.tar.bz2"; locale = "sl"; arch = "linux-x86_64"; sha512 = "d0f179237a4dfc59d8e847f5393ce7d59c6f399bc9bf5113f70f3850e3452d14542f08ac1b2faf0ec291b0f80183553d4b44c64866902db4ee891f00703bfe4b"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/son/firefox-48.0b7.tar.bz2"; locale = "son"; arch = "linux-i686"; sha512 = "f66d6383be284933b2b62432b86e6ffa636c737ff5ad2d8159dab527cd951501eedcbe9a41d197fc1a7f14404ead4b2f25b7c1bd1725bef80a5dcba6a793ea42"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/son/firefox-48.0b7.tar.bz2"; locale = "son"; arch = "linux-x86_64"; sha512 = "bf461c7cf0f24cc091af8806097b759a5ceb5934fd96011e003a438ea5de0dd9221241665c3b713dbb3485f13070cd7aecc23902a28b2f84bb6bcd69d96b95d6"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/sq/firefox-48.0b7.tar.bz2"; locale = "sq"; arch = "linux-i686"; sha512 = "cac1528dbddbf0163391cbc7860cd048376de7012950fdb74beb8f0dbecdbfda5b41dc347d100b0a83b31d3b324211e7a253dfbfafbc72f083013250660139c0"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/sq/firefox-48.0b7.tar.bz2"; locale = "sq"; arch = "linux-x86_64"; sha512 = "bc96183968912b8ccd6e46adf82c49777f19b1692a5a06ccc9e24d4cba31fbddca79993f6e33a1693da0a794c081d8696d96dfe84de32003f190c2cceb484e9e"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/sr/firefox-48.0b7.tar.bz2"; locale = "sr"; arch = "linux-i686"; sha512 = "4f5ae88197d4841cb38da7b0b8c5cc0ac8a228f6d1f6851bfa8782dc4ae91124da25a2235a13f9074d29498ff227602bafeb2a475e1f83f116ae6df26a575f66"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/sr/firefox-48.0b7.tar.bz2"; locale = "sr"; arch = "linux-x86_64"; sha512 = "334695dbd86e2fe674897b23c9144444e984e16c5cb813a980fbc6b025b214aaf344019dddb8612125c26ab1b6da4b9007dcffc1ddf205cbf226d43f536728ce"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/sv-SE/firefox-48.0b7.tar.bz2"; locale = "sv-SE"; arch = "linux-i686"; sha512 = "9bb2a9d07db3f7840e56368edbdaa3760abb2a5e9a266f75ac84ddafe0ab42b582613cce581dd898761ecb869b85ec515a113a79ee1c3470ae48ba261f559c8b"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/sv-SE/firefox-48.0b7.tar.bz2"; locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "3a7dbf64988527a3d1f88fa1840bdf8292cf90ce21b5823aedeb2fb9263a2b7ffd9f89d2709e2a2d208f0c7e70d3819a92c7859cc2c2510a4f0fe8160599d3b4"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ta/firefox-48.0b7.tar.bz2"; locale = "ta"; arch = "linux-i686"; sha512 = "4d6df0bc1dfbb8a0761250fa7bcc3575af66ea0e91e6ed18d340eac96e4ae2c50e1f873c54f10eecc08a0902f3dcb9a9df753d6d9f6a640e7421fa9bf38f884e"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ta/firefox-48.0b7.tar.bz2"; locale = "ta"; arch = "linux-x86_64"; sha512 = "b13dc2570f7c2f5d4a323aabf1448d04550d6356bd43b143c10fdc7e88a97d79d93b8145c3d7230e9f417a147f5884af3217738e5190955ab61459703bfe5954"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/te/firefox-48.0b7.tar.bz2"; locale = "te"; arch = "linux-i686"; sha512 = "b3540cdfe33168c6b77386d3d32dd3a44c3198e9669fac89129549f6240475e657c2e790a38f985e85e20315df0769fdee57c65513c914ebee239f51e7932043"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/te/firefox-48.0b7.tar.bz2"; locale = "te"; arch = "linux-x86_64"; sha512 = "3aa1ea89e62fa74208c5336c99aa6bdd98358852a032e1c90a70a48b6903523d08cc03e62976e10bfae86cfe0b431befd9a33bd62ef1f262d58bd9d5940255fa"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/th/firefox-48.0b7.tar.bz2"; locale = "th"; arch = "linux-i686"; sha512 = "8e2e979f54bef8979367b7bc5b54eafbcf774dd4ec47a65352e8529d76edb6a4ea331fa8dafe82894868f4cd6b269424f06668a46596d099400a980694b03db3"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/th/firefox-48.0b7.tar.bz2"; locale = "th"; arch = "linux-x86_64"; sha512 = "708841b24ad871cef003040a59379dac33b2131bb699ede2146d02b6be7f562057c6713d050e201075341dbbb8a7fb400c6852cb4d1de2064fcd03ecdda6450f"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/tr/firefox-48.0b7.tar.bz2"; locale = "tr"; arch = "linux-i686"; sha512 = "788e91d5af695acfdca1b02eb422efc8ea35652dadffd3b03babe5622c6e8d0ad1dd200a63589329a28eed3e0ca723e838ceafa721c45a86ffcc34aabc462671"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/tr/firefox-48.0b7.tar.bz2"; locale = "tr"; arch = "linux-x86_64"; sha512 = "370fc35b68ec734e9f5544f7cb74cb07d706f3e1c181f25c7e1b6e5fe1f9ee1bd9b289e164792e4a31c9fe7fb098c5114919234cda0583794f8964f14d60c4f3"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/uk/firefox-48.0b7.tar.bz2"; locale = "uk"; arch = "linux-i686"; sha512 = "463da060477f0b9831fce5e00248d841fa7b9ccae1e70fd707966aa09f55b7bd4eb89ee04b41ed6619ce465c86ce84236fafe14268a2b97c482830a2c6f8f77e"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/uk/firefox-48.0b7.tar.bz2"; locale = "uk"; arch = "linux-x86_64"; sha512 = "7a085f96ad6f67092f11ac1605541f1dd39a5ded50a3375e50596e18c76e992a1ec9a648a2ffcf4fefee09a3644d6d5d0abcbb43f5173a1d086f3c38b4ed7ed3"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/uz/firefox-48.0b7.tar.bz2"; locale = "uz"; arch = "linux-i686"; sha512 = "e3458b936fa06aab7ad5fb37c8bb0e3d1391e764382643b9978ded9e175dbe14fd3658f9b0903a0a5a74bb1aa1d56340fef37f19ca9ed92d3ba3ed28174c2cd2"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/uz/firefox-48.0b7.tar.bz2"; locale = "uz"; arch = "linux-x86_64"; sha512 = "2899fc4bd5b40996aebd0c67627ddd40bd9c3778001afc23a7d4a232a12ababf4504568594aab045eddf2a1ad71e026bbc832b5ddd265132c74325eb84523a82"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/vi/firefox-48.0b7.tar.bz2"; locale = "vi"; arch = "linux-i686"; sha512 = "c8cbd21b1ec2962e30a525bf7d1f45f449aa80448f3c8cedf2ffd54b2f7e1e07d8f0ceb2c5fdb3a9bd7e2df8fae0b14c65d0d84fd60f6cece8ececec7df468a1"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/vi/firefox-48.0b7.tar.bz2"; locale = "vi"; arch = "linux-x86_64"; sha512 = "86fd5cf184aa8b897b37dc0f05bdce5dba64e7b8d7d6fea79d42e7a591a141af7b28e87e15a1a98d828ed259c097005b8ff8f52fa5c33873eed199d5f2a391b3"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/xh/firefox-48.0b7.tar.bz2"; locale = "xh"; arch = "linux-i686"; sha512 = "703a39b4d0fbb522c9b7a2c24780776d804025b659a6bfc1b875924429f05d55f2eb57bc333dfc6b0b0b18bf8b18dabdb7a91ec7696cdefb404cbf0b2afd89b7"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/xh/firefox-48.0b7.tar.bz2"; locale = "xh"; arch = "linux-x86_64"; sha512 = "0551330c8203a93db60f5c4570a03fbd7b63f243eabe2eb0465bb8e3fa6c2389e402b29237fd91f98455f74360c6056d31fc1c1f66c5035c57ff4c8b2500070f"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/zh-CN/firefox-48.0b7.tar.bz2"; locale = "zh-CN"; arch = "linux-i686"; sha512 = "8b9293827007bd0d510ab84e15553f4f396dc058a9871651d63638936fa03cb628ffd31bc2d01dfeee9935ad18976e0941345217e1e161df0ddc7a0e4b527ae6"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/zh-CN/firefox-48.0b7.tar.bz2"; locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "ecdb91365c00090388b0d0e0b9bf7fc327b6d142c3671fa96e626a744852ee838220efcbcdc57a6fe2f17d8b3a3b57fc3644b30d965a0a5c118cab421755dd05"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/zh-TW/firefox-48.0b7.tar.bz2"; locale = "zh-TW"; arch = "linux-i686"; sha512 = "9f65780b2952210ba613767fb885dd77af3e96596e2d7833902318ac7508c98172abb2a42d3c33c7bdb63826379f039ee50f0df3436c122a4bc794d4e9fd3a20"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/zh-TW/firefox-48.0b7.tar.bz2"; locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "a915d396e093f2d87f2ee6cfe20f3c26fb6c524968fee0c8d1cbbf1e53a6cdec86921b6e2f252ca3a8dc13bbc8617e97d8d6e883973364e68be70c409bf1b8ad"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/ach/firefox-48.0b9.tar.bz2"; locale = "ach"; arch = "linux-i686"; sha512 = "0738019c7078daa1beb31445d12718dce195719279cf430c13526907aaa04328efd043b77eaf641674ed4eff8033e8ac47139858a9c9e194bf6ccaaf8cd54d8a"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/ach/firefox-48.0b9.tar.bz2"; locale = "ach"; arch = "linux-x86_64"; sha512 = "9700cfff54bdd3404b75d7690863ace89aacc49db3339b2ee11807b1ea88f3744d610800d6e5d5144cf7ff8f292374e297779581d629700c9570eab116b5b449"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/af/firefox-48.0b9.tar.bz2"; locale = "af"; arch = "linux-i686"; sha512 = "8700996788a438bb6cf7a5bc0aae166e621a2b32cbe06dd91589bf0abecf123ba34ef9fe7800395d5a8fb148f50a68e35bfc97ddb4b51f2318e87dfb92023798"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/af/firefox-48.0b9.tar.bz2"; locale = "af"; arch = "linux-x86_64"; sha512 = "b6ff01541e51fd287783750011ec5d5ea1a731c28d4c807d75fedcb6780afbda76b19a4bcb7bbec305cbcbaaa84dd3f57a0b41c404f374022b4ea1e850b9c6d5"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/an/firefox-48.0b9.tar.bz2"; locale = "an"; arch = "linux-i686"; sha512 = "11710dcf2c470bac75eaa9a3fca7aa3508d4e9c9b59d2a39f03d166d25c05ba8bcfeda4c4a95134dce8d7c4d261dceb980e1a53a9a11869b7d8b226983f6cadd"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/an/firefox-48.0b9.tar.bz2"; locale = "an"; arch = "linux-x86_64"; sha512 = "7723e02a752d30c597ef7b295b2c1644de4e2a6d02b364853f9a9c419a2d172bb5338792a5a9403851bb3952e93dc092e12056782df1017bfb3c39a2550ccd70"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/ar/firefox-48.0b9.tar.bz2"; locale = "ar"; arch = "linux-i686"; sha512 = "90bb7327e77e048784efaed6afda9c35eabe4c238194acbb14543f7841c052153fb5f0f7ef202564f2f749aaddf7e870b9b850022b0570cc96d34f730bd1ff52"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/ar/firefox-48.0b9.tar.bz2"; locale = "ar"; arch = "linux-x86_64"; sha512 = "410b9d0db9038b597129ea423752300e1831d69c6768bfb09eed3c20a26b1bcf2d67ace6f8befa8a47ab2441ebe69d34361571609709586c3a1086259d9864f5"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/as/firefox-48.0b9.tar.bz2"; locale = "as"; arch = "linux-i686"; sha512 = "b50989125c6982cf8d9c97af09e9734046d2d3eb8e0e220b139a8835e76cd39195ab2fe2fbded7461acf6d153a8b5376b4991f0c72322f8a22e9961d17589072"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/as/firefox-48.0b9.tar.bz2"; locale = "as"; arch = "linux-x86_64"; sha512 = "873830760fcf310d26dd40f7147a8c7ad252828ede05a03b82e6d7ccb021435af1d5f7fc61bea6a968ea0f24e54cf108e5f6fd4b3e0558163bcda00cb3fe9aa5"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/ast/firefox-48.0b9.tar.bz2"; locale = "ast"; arch = "linux-i686"; sha512 = "ab6f0c4efc8ab7c6db6a4b31d6dfc93aeff8d65e1fce60d8bc9ce6f86e391f0cd5f6be1a3e4f8784c73d5f982a66e33a69b40614ff4eed04416bfcdab5362e86"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/ast/firefox-48.0b9.tar.bz2"; locale = "ast"; arch = "linux-x86_64"; sha512 = "f66b0c006d530dbfd4df30400dd6b15728a7fbd023e88d745d0b8ae05bb63d0d33e344ae70d3105815aa9a23ea5419b80b853d68ef05b7ca2c24d31c670e23a4"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/az/firefox-48.0b9.tar.bz2"; locale = "az"; arch = "linux-i686"; sha512 = "cd96e076df13db6cf82d8a6d13653bc928ebde446f4a283e949dd66229297c5a284392b118539c7628593c696eacf2de9b4b8ad623750ed909c08349b3263093"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/az/firefox-48.0b9.tar.bz2"; locale = "az"; arch = "linux-x86_64"; sha512 = "0c5311168bd7e73e7d81175aca2a46e10122b29b2c54a8b92bbd74ca7092dfb9c43709cd30c50a02c030382c021b1192fccd8e8694fe3c8c8d0cce6370d3bd93"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/be/firefox-48.0b9.tar.bz2"; locale = "be"; arch = "linux-i686"; sha512 = "07c7fac9790d83a06940efa3445212e592764bf794c0b3fb924a695129d0efb649e5cf68656d2160cdbcb188290fdebac971947d891d3eb31cc99e25126c3a55"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/be/firefox-48.0b9.tar.bz2"; locale = "be"; arch = "linux-x86_64"; sha512 = "789d5ff8f0ae19758b379508d72f7d8315026fdea898218d03108ed3e9d42b85f4fd58649af5783a484a4f5dedc282dacfa68cfcfc9be5154ae9d5a73ae3cde1"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/bg/firefox-48.0b9.tar.bz2"; locale = "bg"; arch = "linux-i686"; sha512 = "9d8b4837ba7d03e2b5482333e945ac56ea0c715cd7db2a8126d1ad589df2cdabe9eb9ea6b4ac302b02976fcc319752f544090aff6f7569c5610977e6c24b350d"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/bg/firefox-48.0b9.tar.bz2"; locale = "bg"; arch = "linux-x86_64"; sha512 = "244ba31c371c649e2f448a3593cb267e19837f011215283d73d1e672acf4c32df1b5c11aaec722170c26b2eef7b7bafea49ffebedfd52ef1a6ebc9fba5650210"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/bn-BD/firefox-48.0b9.tar.bz2"; locale = "bn-BD"; arch = "linux-i686"; sha512 = "eb50c9a1f867a1e89424511f1b6152a3633f77271997e33d819a194bc3b85024d76aacdc1d877d6ba72299678a7b5dabb7a3c3f3c37cd309bc73b6514374e683"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/bn-BD/firefox-48.0b9.tar.bz2"; locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "780c482fa5b809b7220fd672c7c24c1e2d764ffb8b13b431663385cb6651da17f26c32fcc60e978ecd971b45076a3fbf8675243c26d5e178b326b84d3b9a0b32"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/bn-IN/firefox-48.0b9.tar.bz2"; locale = "bn-IN"; arch = "linux-i686"; sha512 = "5d4936b8beb2db435aa89308492a3ffdcddf4ac60bf32a100bc0943f648a4ca624709d4b171f802df4780ef74bf9d2ba3029fe3aa9e5a6d498fd44642db36f9c"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/bn-IN/firefox-48.0b9.tar.bz2"; locale = "bn-IN"; arch = "linux-x86_64"; sha512 = "d9c4089a87289815b4af7e3ad91fdeea76359d941c5a14a9c9e3289c47127b3a3f5a72d522679ae1fadc547cf65d448c604ae3687e11fcfdd73c5c48a104dfda"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/br/firefox-48.0b9.tar.bz2"; locale = "br"; arch = "linux-i686"; sha512 = "134890cbf087ad9b97d532fa10b5b6b0738236d6d1b27b402b1b1832d0982fd9e53f398f28fbf285cc432c5cfc6f83caf9f42c39e351ec188d77c43fbd3fdeab"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/br/firefox-48.0b9.tar.bz2"; locale = "br"; arch = "linux-x86_64"; sha512 = "d19af5f724f6ce509c05f9005b1e3576061244e6653d8069da9aa6ef8fae3dded66e8138dd806babf9bf7a3e8c7c14de999a28368f26190e747c67af5f29e81d"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/bs/firefox-48.0b9.tar.bz2"; locale = "bs"; arch = "linux-i686"; sha512 = "f0d29df4df68482cc74da7b2b7c6a2658b3ecaee51d259a1aacc1dd1b30aec7fee7a54696ba2f859608bacb23ff4e0cbba81353387e12b3567067034bef3905c"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/bs/firefox-48.0b9.tar.bz2"; locale = "bs"; arch = "linux-x86_64"; sha512 = "bd98070a500f5c6621b4bb18910a1728d23aa193aaa0faa6cc68f35932b436d64441d1f95065f543263e6e6b0484d6c42b7fcc4462a63e594b56297df7713a1b"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/ca/firefox-48.0b9.tar.bz2"; locale = "ca"; arch = "linux-i686"; sha512 = "e7ea69142daf2981432237db537ad85760eb9ce1407e66a206cef39f99c6aa5cd067feca3626ccecfa2d1c67d3425b13bb88c6eb4cdb903cdb12de04b3904bf8"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/ca/firefox-48.0b9.tar.bz2"; locale = "ca"; arch = "linux-x86_64"; sha512 = "7f30559ad0e456bdf6492561f1283f85fba3c715f43549d2da46d006a59146002b4fe2f06b50a5b34e94633cfde9aded6514a61b451257c19baff3ecff770299"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/cak/firefox-48.0b9.tar.bz2"; locale = "cak"; arch = "linux-i686"; sha512 = "289bc8d19ab40a435740e27e44eb637511f0458e8dc14d87851ceef7e2594b52ef621107efcd090e2a31d97be5c04dc5d185f9c10173c38a1974ad28def18f5a"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/cak/firefox-48.0b9.tar.bz2"; locale = "cak"; arch = "linux-x86_64"; sha512 = "f1f7b43df14d70fd543402b62edf47e0e347b630282e0976f6bcd64e14fcbbf60f5526824a1355c7c493fba539eb42dc7dda760f3896b5893e72e84fabb39dca"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/cs/firefox-48.0b9.tar.bz2"; locale = "cs"; arch = "linux-i686"; sha512 = "04c42f09f55ca4ba3a9f4618cf4d860927ca9c01b152ea4d9452c218e02c960fae75311f707091ab0633989c918feac0a50fd27310c09c0d3608b95e0bcd132b"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/cs/firefox-48.0b9.tar.bz2"; locale = "cs"; arch = "linux-x86_64"; sha512 = "f4dbf9158adc508d494d03232a24a880ff6eee5b4d6a0aa74c1f3e9a52b7a4a573f579e870d0c57e3b9d17875a2cbe2848c2d7acb7b225ba1b2a860cfaf5dc85"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/cy/firefox-48.0b9.tar.bz2"; locale = "cy"; arch = "linux-i686"; sha512 = "7fc634a345f2cb8c1876eac09a40f71592531bcda3058f2d3f6d10f8544be2d6f88cc541960329aef91bdfda21140e181d095c2e656882250ae23f7713b8aa29"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/cy/firefox-48.0b9.tar.bz2"; locale = "cy"; arch = "linux-x86_64"; sha512 = "fc4f316b01ec48fec0a5726742521a735977705a7ae5c36e47f13c1b375663e3a2187fc3fb08400c6f89901315edf81cac79a0b90bbf42421f9305ea79509d95"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/da/firefox-48.0b9.tar.bz2"; locale = "da"; arch = "linux-i686"; sha512 = "00fda3e6357e98eece16090d6e6452d70d5bb3e4d253604f19c635d880f8a4967f5c6ddfa64db1e64e85ffd1c2b64473255ded8b6d547d277c2a37283e18b5ac"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/da/firefox-48.0b9.tar.bz2"; locale = "da"; arch = "linux-x86_64"; sha512 = "5971f31c81346a18ee5cf5a8dbff79c9348254a6f882a73f27a391a1136e2df7019744df76e8044c299b548163f2f75ba51bd67d0d3f77cf1dba38b449656c45"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/de/firefox-48.0b9.tar.bz2"; locale = "de"; arch = "linux-i686"; sha512 = "1e02384a438f23571c23b471e75bd89717163014b326ee3568dec6e2c458c601e9f96b1ded21fb2b4f5611530a7c145c4bd2d124a7fb375768da4c0936989d19"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/de/firefox-48.0b9.tar.bz2"; locale = "de"; arch = "linux-x86_64"; sha512 = "f9b35ff0b69c3e48e3c77a0e79d332f7aa6d336e3840ecf377d614a16b7debb1cb288145671a0aeb03c04058aef4b5933e332b9b48cc0d82b3c12c4c2c00fb9e"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/dsb/firefox-48.0b9.tar.bz2"; locale = "dsb"; arch = "linux-i686"; sha512 = "bf24a7a33bd83618953c42f79a2a9261d68048f52ab62e6cd030ddf1283802d7cb5df0fb26e9eb05bcd0e81dc61814ddfb0383a2172c741da9615a4a208cfa07"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/dsb/firefox-48.0b9.tar.bz2"; locale = "dsb"; arch = "linux-x86_64"; sha512 = "b6f8413df7ccf5a7a3a7cdaafacbddbd996a8496471f51b5bef62eeda9057e93ce1f7fa941f2a6670609ae0c711187530e95516ef0644253335080e25a66c0fc"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/el/firefox-48.0b9.tar.bz2"; locale = "el"; arch = "linux-i686"; sha512 = "f066a0d534e39581dddfefa8808850b1fc427c84f25c8582610d7db47c0c5a792c8cb516321fb3d91134dc0f3e76bbb26075b1d8030bd07eb14a77024c8afaec"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/el/firefox-48.0b9.tar.bz2"; locale = "el"; arch = "linux-x86_64"; sha512 = "2a0125284f2dc4b402ce02344fc3f367834438ea37ee84b866fb0f6b69e8cb9afc0bd586ec43efe6c45c3a5bcb0c99d9a0ad273faea464048bdb5ed56f2b8577"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/en-GB/firefox-48.0b9.tar.bz2"; locale = "en-GB"; arch = "linux-i686"; sha512 = "49be18428af54affc03efc0bb4aef87bf361224fddc735830a71a2f71dfd527af9f7593d90eec930e5edc3e7949172347e63ae78d75dd9916c97ca1ce3e3f92f"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/en-GB/firefox-48.0b9.tar.bz2"; locale = "en-GB"; arch = "linux-x86_64"; sha512 = "b1220f9977187408e1756fb27e26ab763ecb5edf6d497321ea4ba5fc2b32ec5c2caf3b2cb54fb3e506ad3b1a76c8b05c5b986fa6ca25e4ff335a083ba96802b3"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/en-US/firefox-48.0b9.tar.bz2"; locale = "en-US"; arch = "linux-i686"; sha512 = "a91f9d2e04ebcd209bdf4db3638f0ca05287ff52023f6bc993a165d14bcf3264199bcd3559cfe1314e1e886094251c0bf86f274cf410bc456241c5d96fcfa255"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/en-US/firefox-48.0b9.tar.bz2"; locale = "en-US"; arch = "linux-x86_64"; sha512 = "e75c437b0cce3e06f9f91fd53cefbd4489d6d31ce93fd642b20e547e03f5a1f417d06ca4566453d1c5b7fad4dd1fac61bf58a414b982c3ae843891a8efef40e5"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/en-ZA/firefox-48.0b9.tar.bz2"; locale = "en-ZA"; arch = "linux-i686"; sha512 = "6a1d643add5c1b63633a02fdee766de6a73174c169a832b7f400e320ee7eb39cf74d652389b36957df200942877ba03dad714d2686d7dd7bad4a3993698e8630"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/en-ZA/firefox-48.0b9.tar.bz2"; locale = "en-ZA"; arch = "linux-x86_64"; sha512 = "877c2d4562fbda98c62902536f07e5ab474a78ab2c5a077bee440cb48525a6eb529e5042533061524cf6fa85b9f6b70fa91e6f2bfa718ca49fb4adc70ea92514"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/eo/firefox-48.0b9.tar.bz2"; locale = "eo"; arch = "linux-i686"; sha512 = "d91d25252de09a1c8f52066a3d4bd9f8a6f479c9cfb52bdb7f3939d32162805a26c02b4e3a13e9463b318c2da47d83b77b23fd4bcad58657e8eac8f6f6a769a4"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/eo/firefox-48.0b9.tar.bz2"; locale = "eo"; arch = "linux-x86_64"; sha512 = "1a697f4a9c98e956d78f41a22c4c0996542ed67d89b8cde095b330fb366c0ddcaa1403c016f2f2d11dae18564ca50a6f953fdeefe66ce8cd95c8d3ce99212555"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/es-AR/firefox-48.0b9.tar.bz2"; locale = "es-AR"; arch = "linux-i686"; sha512 = "59067e78b573ceae232f11f5b507fafd5f0cb75ce19f9dbc05a30990247321a239157881202b7ae3676c4a6991473741f7bb4e3ccb799bb138f46a3497d1f38d"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/es-AR/firefox-48.0b9.tar.bz2"; locale = "es-AR"; arch = "linux-x86_64"; sha512 = "377410f25dd32fe268a07783bff69f4412a3418d9c9e852e6bd577914727c7e65642781e86a2bbde4085bc175a1ee034fd960d9bbba72463f0361d17bbd7ebee"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/es-CL/firefox-48.0b9.tar.bz2"; locale = "es-CL"; arch = "linux-i686"; sha512 = "5ae95c0e81ef1c23956b5324dab0690c237cc9e7f8b56a51870f668ef7091d8962a0633691909672b63e53bc436ca0c46705cdd393c07aa6f7023d2fb5600ff0"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/es-CL/firefox-48.0b9.tar.bz2"; locale = "es-CL"; arch = "linux-x86_64"; sha512 = "36ff8818adf938144923df82a7fdf9bea26d43225c0853c84a541233cccc370879e8fcca3750f162f880a879c0b41789f692cb08fabc9073d11e2e865d357ee7"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/es-ES/firefox-48.0b9.tar.bz2"; locale = "es-ES"; arch = "linux-i686"; sha512 = "0af5cceb948a6cb1be21f98a53e8733113c27339c50e5bb3ca21bb2a82d28821f7f92fcf71f31db156def398e8ce5bc7875d2cab2f231a3702b0c0e30990748e"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/es-ES/firefox-48.0b9.tar.bz2"; locale = "es-ES"; arch = "linux-x86_64"; sha512 = "1c0b8d5e458314f1895bd41d73886962813f9ce1ce099a7438202faf0e4e82a3fb9b701e0950cd5b668a1c0e5a051939868b774956f607c30de974eb7a06a710"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/es-MX/firefox-48.0b9.tar.bz2"; locale = "es-MX"; arch = "linux-i686"; sha512 = "7ad31cf9470e416c6a8cd9a7c14aaeaa6998d9b20ab67387fa32e28490b3dee96ceeb6fbc20258e01d2264e2a96f7607a7a69d960c09a189b62bf638d211306c"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/es-MX/firefox-48.0b9.tar.bz2"; locale = "es-MX"; arch = "linux-x86_64"; sha512 = "8f757afbc6869351b561fae7b9773a8fe7009b3869ffa5e1776ce1b28c1786d6558f0e2bf8487e8a028e3377de39c461309aeb9565e3b03ed1ac6ec8934ce59b"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/et/firefox-48.0b9.tar.bz2"; locale = "et"; arch = "linux-i686"; sha512 = "97acd2242d10184243a7d1390bc58326351d48877fbb70b16945278049f597e627cec7b55deb35337392787e29e46b1004d7e332e730ba020b17615ad2f9fd5e"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/et/firefox-48.0b9.tar.bz2"; locale = "et"; arch = "linux-x86_64"; sha512 = "665878727ddbdc85b4d6757a566ebcc4ba9ae098312ea4aa8c63eb52642460365bd4c29dfff42f63561d9b2806d9d9dc26a32422caff56795af93ee78a838bd2"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/eu/firefox-48.0b9.tar.bz2"; locale = "eu"; arch = "linux-i686"; sha512 = "a6c7af099860209cdc98dd8929392cb71f8607723da9f53f99d9074948b6ec571998db536421d7a79e2e623484be00971380d866ef0962626ebdc45f5f3d535d"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/eu/firefox-48.0b9.tar.bz2"; locale = "eu"; arch = "linux-x86_64"; sha512 = "9ea439a7607e5ce736e9f5b22b507473dac5c6e710904b3d273ab2873f9254fc5999d570cd2bfbe2316bead8d1cf8bb6e7db021efc876c266741e7f1aa7f2443"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/fa/firefox-48.0b9.tar.bz2"; locale = "fa"; arch = "linux-i686"; sha512 = "7735a5436d28f6ea02d1083a4f97665b86d8795456002076513b236e336092cdba4cd1ca9505178bec87b8ceaadf78e236bb7185a49e662dc13f394f4e63afbe"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/fa/firefox-48.0b9.tar.bz2"; locale = "fa"; arch = "linux-x86_64"; sha512 = "a335270482f4fa3a1ba27a865721047112edb960e433cfc315e5ba07dc3ff0e465f21b86ae15ceabefb7d92ff249e950a36e786b1312d84bee9c133213ee4a31"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/ff/firefox-48.0b9.tar.bz2"; locale = "ff"; arch = "linux-i686"; sha512 = "a6c3d4c2e493a7e48fb6ef6cddeccc359aa0d8b615beff078c7065df47c5215bf1c964aa885bec5867a1220bf5406c2b481c46ddfb7e01f121e4913af086deda"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/ff/firefox-48.0b9.tar.bz2"; locale = "ff"; arch = "linux-x86_64"; sha512 = "7f387391a8105972ca877818766048f2f0c100a1cbda0a2bde976c65cea63ee957100920d43a1b6cab4e7c103e5b4c048cd1293410cd32c7e47475aa7aae81ad"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/fi/firefox-48.0b9.tar.bz2"; locale = "fi"; arch = "linux-i686"; sha512 = "6ed696d1d4d7e04204ea943b15069de3ef19e8e57ea4f697c728aafb4f892f80d4b448137ffd4f7591f8342edbb6a1ad719bf7ca9d05960d72b22bf172ff7a6b"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/fi/firefox-48.0b9.tar.bz2"; locale = "fi"; arch = "linux-x86_64"; sha512 = "92f16501746fc84132b7e5efa29efad4dea56c1596d1b589799b2f4a59321e344ef252e346be40fde915372b50f9106ca580bbcb16c19ff88c97079ab8954e07"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/fr/firefox-48.0b9.tar.bz2"; locale = "fr"; arch = "linux-i686"; sha512 = "3657fbdbb3543897047a119dfb218b5717be7d6ddcb31ea976761211e3186a8ef847f326d5a46bee376f326972f4b4cd213b877909ea5c97d05e1a81cd61fcf3"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/fr/firefox-48.0b9.tar.bz2"; locale = "fr"; arch = "linux-x86_64"; sha512 = "afbad7884f15b0d9e3e61681bd62449b55a8b161c0ba5bd74beb50993d47068941535b49837509b9a645061b44aa17566e806b16b64a7a19bb5a4be327fe3600"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/fy-NL/firefox-48.0b9.tar.bz2"; locale = "fy-NL"; arch = "linux-i686"; sha512 = "d78aca665ec2f7fcbf4380555df36bc0d4add5920ff4a3f4a1471776fe970d8d7b80b681c32859ac57a04c8f90732d240cb82d2d3dbaebfda62325bc65bafea8"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/fy-NL/firefox-48.0b9.tar.bz2"; locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "86c3b0df4feab0e6acfc51e6c0b0d159d22e0ba285ae4d0f517c6fa6b36f3d14a73334ec0767dadc5c21afffb616ac055a72bd15c8972ae6a718f3a88b4a4b3a"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/ga-IE/firefox-48.0b9.tar.bz2"; locale = "ga-IE"; arch = "linux-i686"; sha512 = "368f2fff3afa7cde9f3bca2f3fa281dfd020919093204e6e4ae5d1a0b6af17e748ded0aed83d2646961b0140e21e97a978c24539a6a7e984f607bf330f77d1f0"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/ga-IE/firefox-48.0b9.tar.bz2"; locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "7053373d6b96eb2dfb95cec2583a5b0b25f9b3076d03d85cd9e550d02f473f4b4ff3bd7196bca5ab69cf383fa92ee4be8fbe4fc47628b55938552c6d4762858c"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/gd/firefox-48.0b9.tar.bz2"; locale = "gd"; arch = "linux-i686"; sha512 = "02a82abd833755a06afc0b245ee2ce503ec45133f929282225df84e3f9eb76dcec40351431ed099a601c63d12f36502471e27f58c8855c618598f7befc647d1c"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/gd/firefox-48.0b9.tar.bz2"; locale = "gd"; arch = "linux-x86_64"; sha512 = "dfdb2a4d0627f782c6054c4cbc529711e42b107b8fab4550c51443ab39b6f0496b206d238c14e292bcc9e5959480931bbea2647afe5b029e2a4bd255fe621a7a"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/gl/firefox-48.0b9.tar.bz2"; locale = "gl"; arch = "linux-i686"; sha512 = "2a2c4d5f9df457560bd4084ec0641d4fb17f66e1e41ba73b12a2a467942b5a010fcc3895be12b187b2b1abaf912288efbb123b6aa914a0c2668f9d8e4160ebc7"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/gl/firefox-48.0b9.tar.bz2"; locale = "gl"; arch = "linux-x86_64"; sha512 = "2dd595709f6a8715eb72d920e4f3a216bb3e7c64470c5e86883726e65918c42eeab75688b7ce8540c055f0151174ea117d345fdc28ac979f3bd49e94cb3bf88d"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/gn/firefox-48.0b9.tar.bz2"; locale = "gn"; arch = "linux-i686"; sha512 = "fd9117544cb86ffba9661113e5f8e2eb12c782decffd8e66a7dfaa84da256bba5294e2dc9121985237a5c26abdd2f3005b5fdbc997161f3d0d8933c3133878d8"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/gn/firefox-48.0b9.tar.bz2"; locale = "gn"; arch = "linux-x86_64"; sha512 = "29fa2f47048a14260482ee98ac4083f94b86d669df4bc6fcea3614648c70274f4352f80d92421ccb22c34b00a40d05a6e8a39dff74bff1963803893555c44c54"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/gu-IN/firefox-48.0b9.tar.bz2"; locale = "gu-IN"; arch = "linux-i686"; sha512 = "810626ef20f6bb6840fdab2c5bb943c210445396747cdc08cd7eba2d06dec43b9f8156d586e751d226569b51eca6f939f9a921b760887ea9a3e33ab6c9bf7dc4"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/gu-IN/firefox-48.0b9.tar.bz2"; locale = "gu-IN"; arch = "linux-x86_64"; sha512 = "ba0be48fc7f37260d28c9aba7058d5b846f2c4333fa738c6fca93c70c580fbd1e6659800bc2236e12f03b91f0eb83d061aa97332c5553e64cf36559dbed68428"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/he/firefox-48.0b9.tar.bz2"; locale = "he"; arch = "linux-i686"; sha512 = "9babddd78b2f479d965b3afd35f4f862ac1aa9508a40eead15bb2d8851773fc331a1f19a79abb032cb943d4cf396e09e43d1d19ada0cc99c7496ec95732d0998"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/he/firefox-48.0b9.tar.bz2"; locale = "he"; arch = "linux-x86_64"; sha512 = "27329d2fa27443d000bb09978e0938b4d3fa01113ecfaae31ef4fd07d15f4973edd025dfd5c9872689a5682f59195fcc93491275e604893902ef96ec04657784"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/hi-IN/firefox-48.0b9.tar.bz2"; locale = "hi-IN"; arch = "linux-i686"; sha512 = "91f1482f99dcb8107e3332becf616004a157a3d2a0127682994c01590dfdca85c273e86a459ed68f09ea5688ead17c0f771850adb8d885dad7a8a303b63dad21"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/hi-IN/firefox-48.0b9.tar.bz2"; locale = "hi-IN"; arch = "linux-x86_64"; sha512 = "2c16c240315d20bf0a9f2d9231d1c7a72380ff1c66b7004d9dac6d84b8eaf665421e1a69e9d738bababefa1b7013ace385bbaec79dcf6c7f9bcb20a5484b8b3f"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/hr/firefox-48.0b9.tar.bz2"; locale = "hr"; arch = "linux-i686"; sha512 = "fac7b7782a77874cdfaa33d5312ff4cbf768716b6ed17dc762568f1fbc69a9e4eae328b83bcae951b61f3513347a45dd922daf2679420a04385ef1f5260655e7"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/hr/firefox-48.0b9.tar.bz2"; locale = "hr"; arch = "linux-x86_64"; sha512 = "edd07b7766d98933d9e4338336fcfc44ba1aeeeba867e1e8943dc30d2696c93c337287f45cc3cecc13e2920c6d4b31198393573600d828623b4b96973eac356b"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/hsb/firefox-48.0b9.tar.bz2"; locale = "hsb"; arch = "linux-i686"; sha512 = "67ff1af81011477dda69baacca4c48e0534e17804cd147bbae57e7e2427f32764bbad1eda06687602b39f3e14de3b455dd526de42bf21b9913c97876ca03e168"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/hsb/firefox-48.0b9.tar.bz2"; locale = "hsb"; arch = "linux-x86_64"; sha512 = "676f7e8c0377ec0e4f6614395608d1f8e4458445820fe7ff60ebd191aa640020ab6c94284ac9260581ad32c3e733c6a407c7b92588ed90f7f9b687289a29f984"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/hu/firefox-48.0b9.tar.bz2"; locale = "hu"; arch = "linux-i686"; sha512 = "afe8bbbfb44bfdaf85f3700d2410d03e488a05727bbe81858317e3a6851d54e97d223ca76a3e10c374a0f7ebef93113cbf61b4fb208ddbfb438ca86fd6b26f6d"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/hu/firefox-48.0b9.tar.bz2"; locale = "hu"; arch = "linux-x86_64"; sha512 = "efb13d909e84435d152886e6d6059a48fa64f9422e35429105c40605985de8769544c1005df2396d66c7336d8d04a7195dd95c3c29a74674c8c171040b66d19c"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/hy-AM/firefox-48.0b9.tar.bz2"; locale = "hy-AM"; arch = "linux-i686"; sha512 = "3e57e60bc13cc90768495d2edd1afc82526eed21045d22251f43d8c4e3688f5985de31d60e9da3222a34d1c0126e9a722311686011a70ecdb719a4b294e9e9fa"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/hy-AM/firefox-48.0b9.tar.bz2"; locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "f9cf84a91d1b624163b5384051ca626800c51f486b2f1deb213cf7c62c7010e9b5b27c75420794c3d930ab126ce1c699851a279ee1f2f51d7ac939c57b0f0a31"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/id/firefox-48.0b9.tar.bz2"; locale = "id"; arch = "linux-i686"; sha512 = "047eb087640ab3bb89c3870cd8fdc50f33d393abeeec16e038c627f74743f61b9a14091aba858006e283b1d21cd51436267259185ea259657958395db99e71d8"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/id/firefox-48.0b9.tar.bz2"; locale = "id"; arch = "linux-x86_64"; sha512 = "1c8ec433c5b1fa936b299dcb53414e98e4a4d745151c2ea995c44d589e54fb159db2ddfdc380b317c343ede35ba88223c941db4e563a96a4a93878aef0ec7ba2"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/is/firefox-48.0b9.tar.bz2"; locale = "is"; arch = "linux-i686"; sha512 = "2242c0e23d7ee69f5dc52203c6326caa194a3aa04a27701340334f5a9adb287ced4a5e8d42248cb43512ee3e2e4e94764b738af72b3c2fa45e20519ebff47225"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/is/firefox-48.0b9.tar.bz2"; locale = "is"; arch = "linux-x86_64"; sha512 = "ced9018f2409ff544f1f86cbdbaa516aa03bdebb9a2c96c8c6df3503e7be1677321c52710837309434548d4cbf6a6a23c5a79157462483537fba6d0aff1f3717"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/it/firefox-48.0b9.tar.bz2"; locale = "it"; arch = "linux-i686"; sha512 = "1fa74d050366c3175ded35f3879d14eadd81670d9abc28f4493171ab13fa87cf19667c2f40581b5029ac7391d2e21226d355d7c6d78c6f0d821867f86a67334c"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/it/firefox-48.0b9.tar.bz2"; locale = "it"; arch = "linux-x86_64"; sha512 = "cc63233e9d9eeac428e999c509a7a9cb3d83a3d2b7b9ddfd8bff8841daf1e594a714f5540911616615babbc21f734295de8a5ac7f0a53dd4f62dbfab657e0133"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/ja/firefox-48.0b9.tar.bz2"; locale = "ja"; arch = "linux-i686"; sha512 = "4fef54eeabea6033078bd94d385a1fc96cd38d49eebccf2820710c5d516641e045be9a65f1ab0eab3eaf7f727adbfa98795671864b78288c04155d4516e064e3"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/ja/firefox-48.0b9.tar.bz2"; locale = "ja"; arch = "linux-x86_64"; sha512 = "0c25eb277891702d418c62de31f6a0d7706ac783fc527070e6051456927154ad23d0bb3a085127426ba4d54017ce2a713ad95e47066fc2da0831a0a9f0ca29a9"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/kk/firefox-48.0b9.tar.bz2"; locale = "kk"; arch = "linux-i686"; sha512 = "b42f1a2115efc622c1efbe62de3b275ce01ec43f3ebe68f6cb591b12af4232a0c5262cee6ea61648f9fec2da8702b5f24f6df187afce020f333c519d32da18af"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/kk/firefox-48.0b9.tar.bz2"; locale = "kk"; arch = "linux-x86_64"; sha512 = "2bba17f65a5b7d412c1e357886bce2fb4e017a5694f69930a7835429825dba86659e1caa31ab0ade9ae34dab0a507102d485c5fa44d9fd156d4ce4e3d4453976"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/km/firefox-48.0b9.tar.bz2"; locale = "km"; arch = "linux-i686"; sha512 = "36cdc77425f5b9d0546ccbe24027676fbb98616b226ecde4e610d9958a11c4645fd2741213820bf145bf258a0f32f65c81bf6ba365484949da673ca3a79a1b5e"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/km/firefox-48.0b9.tar.bz2"; locale = "km"; arch = "linux-x86_64"; sha512 = "0ed475a08d580bb864fb1d8ba74e6ce2925591c008b479016faa048a642d2246830ef1a102381e553e5309c1b3d5885ef409befde2c1ef950c2483bde3de1ee9"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/kn/firefox-48.0b9.tar.bz2"; locale = "kn"; arch = "linux-i686"; sha512 = "4961da8a5f554895a642ea22bdeb640c289385a632a6de2b02154cdd10de8f7eaa9f3979f16bc026701f1986e1fcdfe2b67c0580eb30ef4e7c32a5c7b0a89744"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/kn/firefox-48.0b9.tar.bz2"; locale = "kn"; arch = "linux-x86_64"; sha512 = "63d674029a8f43e21fc4eea4278e0944141d6b0425fc92855e84fb4859085ea15ddb7e06c229e4ea6262d42a91e8f2216de45d185e9507034f636b95d116c3dd"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/ko/firefox-48.0b9.tar.bz2"; locale = "ko"; arch = "linux-i686"; sha512 = "217af13c53e8e9edb43a7817a901bc51c5b013e9fd27f3aa3ec8ee46a820f23fdc558e73e5ca1e40829d0269a07f32d704f1a607d8cb36878338b8084d8463bc"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/ko/firefox-48.0b9.tar.bz2"; locale = "ko"; arch = "linux-x86_64"; sha512 = "14c8c220ce753be62628f9a0ccc726bb2c04aa9fe8af72e412853445dd3a4e4e328ae5b641142c181df0949212805a20c381b4716b5d4ee97633707bf70baa95"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/lij/firefox-48.0b9.tar.bz2"; locale = "lij"; arch = "linux-i686"; sha512 = "e162cf0bc0545be09b6f7c8dc237c1f757d18fc2e81640b12ebf8e8bd396f9f58f5bdba875e5472d03f7596da9a0a9670f35a570241cbcbbe8ff8071861c6fce"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/lij/firefox-48.0b9.tar.bz2"; locale = "lij"; arch = "linux-x86_64"; sha512 = "c041bc122decc4ab427457a4c0e2807694d7cc9e44c4414e75f9b3cb09068167de0a98b1a1a876e4a36a1edc5a1efb9fc416b2676ecd25a80c0361833dcfdce2"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/lt/firefox-48.0b9.tar.bz2"; locale = "lt"; arch = "linux-i686"; sha512 = "7d69e16806b8fc2eed1e9ef9e270693f4ca9beeced5f20e825ae6b65eecbee7538b9f7d29217a7c35043d221d0a4ecea3c6e0ae985431dc00c88133e7118ae83"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/lt/firefox-48.0b9.tar.bz2"; locale = "lt"; arch = "linux-x86_64"; sha512 = "6e2db9841264bcdf55f6f170935c3235178d4bf287399af80c953922bce1424b6260eeee57d2a80c5d090da14ea7d9ddbf36d96e27704a57c9064119d324378f"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/lv/firefox-48.0b9.tar.bz2"; locale = "lv"; arch = "linux-i686"; sha512 = "0a56414f8c375a201ba730ec132546bf9db558b0491fa9201c977bcf8fe24d958d3f39bd845cde3d5cbe3427a8e4503663d1f63a8b49eb814757cd7b4160f5e5"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/lv/firefox-48.0b9.tar.bz2"; locale = "lv"; arch = "linux-x86_64"; sha512 = "adf934ca0002427735e77ec583882f81a8e7a905fb20c81eb30d25e4681a5e77738d361105906a7e538f61b967ddc4e44e61627bb1670cf7ffa92a0a25b170de"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/mai/firefox-48.0b9.tar.bz2"; locale = "mai"; arch = "linux-i686"; sha512 = "598c052561b618ee8ee16ca3d3db49e6102cfa998fef2e201d80980a2a24683347d1b335bab6f4914d262530e1d3aa0a31d06994b211a3d1fc92cda9b38485b5"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/mai/firefox-48.0b9.tar.bz2"; locale = "mai"; arch = "linux-x86_64"; sha512 = "9aeb08929ec09da09d375c4fbe757d1e7d7fade2b9307fb27c880d8a3dfe1e73346a2128904ce5ec2824bb57c3bc9c533fcb445bbc4b0d5f7aec7f5bdd8beeb9"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/mk/firefox-48.0b9.tar.bz2"; locale = "mk"; arch = "linux-i686"; sha512 = "75d8b7534adddcdb3354a36848023c2015ff9701c8a4abecea5d8699c77464d27e4a5411b38fcfc1590443d991044637f9c37c38d9745756e18e93e3a9df9630"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/mk/firefox-48.0b9.tar.bz2"; locale = "mk"; arch = "linux-x86_64"; sha512 = "10a82086b5e54b70d1110dba1be3dc98ec64ee4fd32ff9c73abf743ccabce37d586f63b46fbcf11913126f62be3c4caff6593ea276665632ada512e9119bae8e"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/ml/firefox-48.0b9.tar.bz2"; locale = "ml"; arch = "linux-i686"; sha512 = "f32e2a3e4c2c233840f6235c71fe70fad5afd0455cf3729cef3888fe3bc54a6d73d5fe32fb0363b693a39ba414be02d5107f62920f147712e36f48a6a339a96c"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/ml/firefox-48.0b9.tar.bz2"; locale = "ml"; arch = "linux-x86_64"; sha512 = "c21851d483a9dff5ca1a5831c3438a9d6e25828e6bb6af415dc9943d665f0752536672a9bdf6d5a0d8bc9ece1193279aec2401d5fa982210aadc5cd4891a1093"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/mr/firefox-48.0b9.tar.bz2"; locale = "mr"; arch = "linux-i686"; sha512 = "42158c09eb37ec16ea1aadfe06c44a62eaa7be1bbaee5e7b13ff72aaf60e674a4b27d03054c6a7748b06cf02522fe54eef92e6ea016ca59ac0c6caba33ab7c99"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/mr/firefox-48.0b9.tar.bz2"; locale = "mr"; arch = "linux-x86_64"; sha512 = "00a6455c238f72f5112c8e2570e53c54c6b20c1dd12fef9613b700fe6ea9e0017ef97f88f028509575960ab28e485c2ea79cd06ebf03a7d262709892e1b0ee9b"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/ms/firefox-48.0b9.tar.bz2"; locale = "ms"; arch = "linux-i686"; sha512 = "6a7c0e93a11417413099b557057ffcb495b8dd97aad0c0d95320c59508258721676230f0e10114aa59084c3e26eb48470931d0ce31c7697c17f3eab5480b6f93"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/ms/firefox-48.0b9.tar.bz2"; locale = "ms"; arch = "linux-x86_64"; sha512 = "6428319d01d1b31b84f6ecfb8ab3ade9f2ef5ce56fdcb4da1a6adfa89422c9c83099aab95b4884d1c336a88f429e05586f590e83da9d1bb07b5c7d1e4e81d4f5"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/nb-NO/firefox-48.0b9.tar.bz2"; locale = "nb-NO"; arch = "linux-i686"; sha512 = "b1edfc9d90f018b87e5d3ad6daae2d5aec0276f086020c7dbf199cfa120c1f6216627ca72c98a307d98fe82a0e4b57a703b0cdf7473604b09918b4dd3548a795"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/nb-NO/firefox-48.0b9.tar.bz2"; locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "8d17660df93e03c056cb96aec3a64528b3613c7173fb19957916d1f4271cb13defa59f4771fe0547ad72a5fbca5bcfa68855fb220e5f560ce6d185ff074156d8"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/nl/firefox-48.0b9.tar.bz2"; locale = "nl"; arch = "linux-i686"; sha512 = "2d881068bf9e8eace11e3d57c41ba99fc81f797e13a2ec05cca6acf884369a4bfd140027de2f7c79c6b7245e133c5261bb8e11f522debbd946154d0414b3226b"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/nl/firefox-48.0b9.tar.bz2"; locale = "nl"; arch = "linux-x86_64"; sha512 = "1ee190a679c5575ccfc6d5decbe5bf2da55769c766d70400f79d94d4423dc594830f08b456a8a398e3e7a1cdd507dcc224c1b255fab56b4b4889c0f283bf0ff5"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/nn-NO/firefox-48.0b9.tar.bz2"; locale = "nn-NO"; arch = "linux-i686"; sha512 = "094533a700c763afc66cf417b0b09f8c2666143592afd0fabb138c03e95c94da4746b03c80d1b473fca94f24f57105239399a994cde961ded535cc5787bdc7d7"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/nn-NO/firefox-48.0b9.tar.bz2"; locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "98ab06a9210bfe63c0a7e90310286afcb24ce46b8096966a2adff608e214b95563421372a383814163dadaa4c9fe318a1c9f2f18537dcc37b1fc1eded227df6d"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/or/firefox-48.0b9.tar.bz2"; locale = "or"; arch = "linux-i686"; sha512 = "6139c760019bd9932a5baebf599090540e4ccaf0e18b3faaec8eec27f8f5b6a2199c4a554c0d6d5c92ddba4c9fe24addba47becf69b296cce186be3c2ba3a5c5"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/or/firefox-48.0b9.tar.bz2"; locale = "or"; arch = "linux-x86_64"; sha512 = "503da59dbc9c7cbf5fb85198ea2cebe3a9d3ed5b6d0edeb2bc0e0a4705397816840f40d235ac63bc95e34c5aad7daf66ce31a3f6b43a8cee9720245269520bfa"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/pa-IN/firefox-48.0b9.tar.bz2"; locale = "pa-IN"; arch = "linux-i686"; sha512 = "af70115ad3fc5798f7add37bf342a291cf263afbedd1b57aaa68dddcd1d707953dde2e10c71b38f46c942e629e3edf8a2e55f502d1d98bb92a693cbc85e3ba73"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/pa-IN/firefox-48.0b9.tar.bz2"; locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "2f11b9bb6315843815beace2de30f5d054575806e98021144f3a622362fb484a0078cc279e1fd13a1b2b6fe9070c878eb718680a95ff9e4e5a5bac3ad31fc949"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/pl/firefox-48.0b9.tar.bz2"; locale = "pl"; arch = "linux-i686"; sha512 = "7fc676238c0a484e71fe165921bb2edff5f5f98d87a3a02111e4c9f4c103ea8b0c4454fc39d2be381410beec7e6bfbcf02eecad8555f61d424187dbb7e8117f2"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/pl/firefox-48.0b9.tar.bz2"; locale = "pl"; arch = "linux-x86_64"; sha512 = "cd27e4c532324f35756c3274ecfdbc47d42ff7a456e81363df4a96ee4067dcb0ef6dc321a884f9a19e0b0f25101e2e1caeeb62280ad1305c0eed1f8308997bba"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/pt-BR/firefox-48.0b9.tar.bz2"; locale = "pt-BR"; arch = "linux-i686"; sha512 = "70123bf8edd0ec031eac0f150bd8d7c12e52d5255841c074c8ace5d0062fe1e1beb336e27815b3321a93f2be2c7eb8c5b95b653781922562b625d37921f986df"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/pt-BR/firefox-48.0b9.tar.bz2"; locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "28c864f45774f4e56558e691220a03cbdbae07ad6c4cb12df51938a0e394b0aca91d64ea1d3b5efdf361c54510e4a14033c3c9b72f94315307b606516a9da5f5"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/pt-PT/firefox-48.0b9.tar.bz2"; locale = "pt-PT"; arch = "linux-i686"; sha512 = "b56bcf6c74c3d629c89bcd138e948fc768bccd8844f664100156399ed89c2715e75edfda1427f9205ba44bf7ae12d46308f6bd9bdd661aa27a2791a50860afc4"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/pt-PT/firefox-48.0b9.tar.bz2"; locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "c71179e281f660787df540c9a894591ac22303a7cf600c649e96d8748753f1c8caf7a016c91a822b867ed5ff7467aa182583fd45d0e6445dd07eab58fa0799d7"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/rm/firefox-48.0b9.tar.bz2"; locale = "rm"; arch = "linux-i686"; sha512 = "51693c87e2961b69db233d543c08b6c3fb02c04e7cfe70ecdc6e060fd1a32625e197db2042b0b063b0f5eb465191f87a41b5602424c44ef4dcd3131423ee3152"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/rm/firefox-48.0b9.tar.bz2"; locale = "rm"; arch = "linux-x86_64"; sha512 = "48241427ee3d820da6a42b33660184f56ae1b9bce2d70515b26c8310503563c7a6fc7de3a15be3a366bfe697696ba9dfb19e08fdd31bfbda50abc42c248e1a70"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/ro/firefox-48.0b9.tar.bz2"; locale = "ro"; arch = "linux-i686"; sha512 = "f458cda0c659c8ce5af848e7a64942d89b9d844b5d8ad0d79d44decc0a537bd8893055bf9868e3c65e4b53ca4f01c0a90ed449f19726a9e1314cf4726f9a1bf9"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/ro/firefox-48.0b9.tar.bz2"; locale = "ro"; arch = "linux-x86_64"; sha512 = "91656c40f1aeaaa1fd93abda711c4ef748a3bb7a357f7a4f469bcc3bd8e2a1ba52546beb51d894e0c167f168fb70d1b5dc382773c73c094221e3042bc9857bfa"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/ru/firefox-48.0b9.tar.bz2"; locale = "ru"; arch = "linux-i686"; sha512 = "f384eadacf3cce571e594a02fa7af39f64889f5b8d02846162c6d359052ee0f9071e6df600800a5fd3f3fbed622fd34358dbbbc7e05357ecc12369bedfe8196a"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/ru/firefox-48.0b9.tar.bz2"; locale = "ru"; arch = "linux-x86_64"; sha512 = "de52b810d65d048065a83ea430d93d75c4e21667d197aeadae9e036f75d16c9a25af5c4b2c2fd9bc9b3a7968355e9f6640e19996f6d3fc42aa2e1bc4ebb53afd"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/si/firefox-48.0b9.tar.bz2"; locale = "si"; arch = "linux-i686"; sha512 = "a14807d1077ba5ee3ee258220768094f49002bf624e235e66943f2b7bd1f0eb61f84e3f540d0403276d664f0aadfb75d1cb433a1b364139c46cb48d6cfff75a2"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/si/firefox-48.0b9.tar.bz2"; locale = "si"; arch = "linux-x86_64"; sha512 = "0d6161efd6fdf1837892b71ebe639d13751ebd880b06211a40076e98e9256f30099b9071611c25aed2c36fa255af7756e39a90d60103e22c3e2572dc3bd870a7"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/sk/firefox-48.0b9.tar.bz2"; locale = "sk"; arch = "linux-i686"; sha512 = "d5f7b76b75afedd12cf1bcd52df49418f17e518dbde52c0b822f8e7e7aca55838f85b924433b8083876588209eb1ae8d148585d60408eb8ac06b3be38ea4faa7"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/sk/firefox-48.0b9.tar.bz2"; locale = "sk"; arch = "linux-x86_64"; sha512 = "123bd1962ad26df9c72075ee360d715c5ba87bbf715f0f35841d2466e14a93fede982a33bf43c6593f5356fe2de1d11ae4ffb0d05d4506856bb9e3933cb33a9d"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/sl/firefox-48.0b9.tar.bz2"; locale = "sl"; arch = "linux-i686"; sha512 = "343ebcc6207e8cf4b8e46df9371f9ba6b91f6d79a5fae675cefa5a80fca3d62e06557db6d0126aa68479450365dc1084327947fc061efc41b504d329a6d7ee78"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/sl/firefox-48.0b9.tar.bz2"; locale = "sl"; arch = "linux-x86_64"; sha512 = "3eb40d1c17d96bfb24d02dce3195107abd37673675bc04eeae71d7e8efb4e3ab70ba5ad466e890bd82d55e45cb34edb407e03676d03dd27f29c219666e6307ea"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/son/firefox-48.0b9.tar.bz2"; locale = "son"; arch = "linux-i686"; sha512 = "926bff8d0899b2720677c072bb24c7622eed59d548084f2863b844afd8244cf83753268f712aa2fb6cff360448e9ce4da4974f7f38417fd48ff0d3e48629db08"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/son/firefox-48.0b9.tar.bz2"; locale = "son"; arch = "linux-x86_64"; sha512 = "0fbe6e0edf8bbf3039b0ea472b25471f41446cc0c65b1455470d8afbc2c005f3113a82a82782a013f6c6dab2888c0be260ba52a516bfc2045ce4e7307faa16dd"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/sq/firefox-48.0b9.tar.bz2"; locale = "sq"; arch = "linux-i686"; sha512 = "7886982f83d57172c9c982f4dd74ba925a04d9506ad0690dadcd8932fceccaab44d20fdbcb571164108281099be051becfdbfbf76f1e52798af7a0fb51c54578"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/sq/firefox-48.0b9.tar.bz2"; locale = "sq"; arch = "linux-x86_64"; sha512 = "a59386e187da12e21ab1b378b59429e6504ea1c7047d60bcf9fce7ef3de578c92fc8cc791f67c9b6e4577dfa0547da93344899f5ed9c88049437604abd7c70d8"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/sr/firefox-48.0b9.tar.bz2"; locale = "sr"; arch = "linux-i686"; sha512 = "1e0d31851ddb5fc67aca4aeb30b368e5e1f7818d265f279b033f8fc0fc891d0caee1badaceb3bcc868cfc58ece068efba92c751b3a94d3968f84cf060ea18b4a"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/sr/firefox-48.0b9.tar.bz2"; locale = "sr"; arch = "linux-x86_64"; sha512 = "ffa9176877aea7fe0672a8a5b2fc8f182206cd80d40521057502d981f80c8e2a77fa9dab595a3594774b9e6cd08fb2bb66e8416c17ee59669d0e4d8b6f73e67c"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/sv-SE/firefox-48.0b9.tar.bz2"; locale = "sv-SE"; arch = "linux-i686"; sha512 = "15ae7f700d02a1608097b2b1d14f3e560155fb16a43eed962fb359e92525637dd2bd6992f4616640420d3db489b7fdb5e771085f6b502f8ecee55377fcd03be6"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/sv-SE/firefox-48.0b9.tar.bz2"; locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "b8d8f12b9b63e034197344e52145dbba0e3e9a5dc2bf53b3efa8824e3f730ebcaa2a8302c6abfad67c0fb3fa5fd1e76d93bd5be5ac2707b93ed8421fc8e45256"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/ta/firefox-48.0b9.tar.bz2"; locale = "ta"; arch = "linux-i686"; sha512 = "34c6e9235b8c5be2e221f4a3a1e319f201df2247bc54d0e07094190d4b80ad064ccd9b426420ee5b5014ac1fd6d7a5180d39c331bd5d561de942cd00536a57de"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/ta/firefox-48.0b9.tar.bz2"; locale = "ta"; arch = "linux-x86_64"; sha512 = "2f41636896e79b9d4ec9d772f27f817b7fac7c291335ed1338d6520378be7553698225692883c186f63faf471a94dc9fee4c07a93284dc2df5dbc26655679f73"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/te/firefox-48.0b9.tar.bz2"; locale = "te"; arch = "linux-i686"; sha512 = "4ee88c91de2438ea362ae50afe1d8f290bb5cea2103af31d51441385c4c2c78e6ed2ae444b121038c7146eca7efb0acdbb8181f099f9638a25bb91f39b20ca3a"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/te/firefox-48.0b9.tar.bz2"; locale = "te"; arch = "linux-x86_64"; sha512 = "c34b58adf0d89093782fc5e9272c298fee026e0f5efd172766f47105ed19617e483cbc9af63d73dc2edeb0025c95db0a5dfb5f31343717b73a431d0bd5a5a20a"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/th/firefox-48.0b9.tar.bz2"; locale = "th"; arch = "linux-i686"; sha512 = "887d830f0afe21759212a8d112d2b4da48613488c3e69dec1d526eacc067a23ce0d58245151b89176c2a1d869550cc5e5e6598f3270e43ca4030d8caed583e14"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/th/firefox-48.0b9.tar.bz2"; locale = "th"; arch = "linux-x86_64"; sha512 = "a4113c7f87e6e7f0491d12b7cf65d402c75a5b4dfe9bdedbc69a60f4456f825b60e4170ed49110a42720a57814375c33a14845a653d9f71f51cf417334c2233e"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/tr/firefox-48.0b9.tar.bz2"; locale = "tr"; arch = "linux-i686"; sha512 = "33620a2a49f9cdc39f591c3aa75ad5688437938b1fa31084d74d2ccbfd2cd502e788ca3bd8d863e666b3028c44b1742ef9621c40051cda361b389080f3e54eb9"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/tr/firefox-48.0b9.tar.bz2"; locale = "tr"; arch = "linux-x86_64"; sha512 = "29b1065949adec1cd057ce242294176d23fd71249d7f727d41dfa81224d744fe0d8f1d19a60b5d8aed680f9e9b2ee2f10d2da9fb5c627aef6e00627b56b0f979"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/uk/firefox-48.0b9.tar.bz2"; locale = "uk"; arch = "linux-i686"; sha512 = "49140602407a30ffce9d7084bf9b85f1f1c6f9e2464ff61c8ef3c7d7ee8cf23eae9492613718d78d16f56cf0f7473ddd8171526cc64ba599d1770205dacafd10"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/uk/firefox-48.0b9.tar.bz2"; locale = "uk"; arch = "linux-x86_64"; sha512 = "200101a9c88cb71474ced39007050cae429f0ddc973a58ffd11b816e749ce3f5dca2f4db50d3b80068a0bd048d383c2847f7a283785d52c5df938d9e20fd76a9"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/uz/firefox-48.0b9.tar.bz2"; locale = "uz"; arch = "linux-i686"; sha512 = "37f5469824bd70cc04c7d64f48d29aead9cf4839f795df61f02f109955d299655a730064fd52a98170925ee746ffef1802bc492d474779963bc12851efb8109f"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/uz/firefox-48.0b9.tar.bz2"; locale = "uz"; arch = "linux-x86_64"; sha512 = "9eeacfc5b02758e79d4b47ca80357c6d8029f64e0fa117f6a73c3f1039190c3edc36ffe24b7231dbb28e5242cee419ee48ae4cd7614d6f7209473502ad4f1a79"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/vi/firefox-48.0b9.tar.bz2"; locale = "vi"; arch = "linux-i686"; sha512 = "4b6b9f4e95caf2bf331cf2fa910ccd8ea89c4bb34afdbc9eb2d972f1efb7a7929adb6701356a70d1567fe71dd857c9b1b8076aaeea916b8a4fd025675305b8e7"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/vi/firefox-48.0b9.tar.bz2"; locale = "vi"; arch = "linux-x86_64"; sha512 = "635a750087f5eb9d80dd4a9410e1ae3d43deb7ec6c88b2991c74387ae0d6db568cb33db975fbb29586489b09f470b280bf4d5e921aa06a5a881aa8fab02122e5"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/xh/firefox-48.0b9.tar.bz2"; locale = "xh"; arch = "linux-i686"; sha512 = "fe3e1e006c71015853e0ed9ee595d1a91be62124f7966e3202cf0bcb10942501c0428f216068d372191268b2757ef55005924d64529337f6bf64c695c2cb8ab5"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/xh/firefox-48.0b9.tar.bz2"; locale = "xh"; arch = "linux-x86_64"; sha512 = "e6f2276f5a41cab83352c8180aad14ac3328db21dde432e1d5ed7d18d0f98c4ddd7f733fc645d690d0c328382c64d5ee76fee17dd6e6bbbda43a717a22014303"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/zh-CN/firefox-48.0b9.tar.bz2"; locale = "zh-CN"; arch = "linux-i686"; sha512 = "188d418f0debdda2479b0ff2a355ec0014b04ec8695eb6e2675bc71d8c925eef6e2044024601e1de583d6512a977d5c923963a9be60290bc9928821180b371f5"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/zh-CN/firefox-48.0b9.tar.bz2"; locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "fc7d5d18c568417d650ab282d0f09ee77a5e49cf9d6c20134a38b8388ed908e00e224be99fb757d7d885bc27ec5f01c6f4555cd5853f837d361e2501db65d723"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-i686/zh-TW/firefox-48.0b9.tar.bz2"; locale = "zh-TW"; arch = "linux-i686"; sha512 = "1a968c979273b21e76625988dc21b8037c405c912730fd2ebba515a13dbc1f6d3807873fbef821f5126af773b91d10b3be444739eff287dda642448e692715af"; }
{ url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b9/linux-x86_64/zh-TW/firefox-48.0b9.tar.bz2"; locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "1b79bf4dbe43574342f8093c036ae29b2f2f4d88e1201e9fda0e190ab00e5319ae5fe830745c0b01d66deed73f04be7313ac4e3b3438afa22c75f03cde8d0fa2"; }
];
}

View file

@ -104,7 +104,7 @@ stdenv.mkDerivation {
nss
pango
libheimdal
libpulseaudio
libpulseaudio.dev
systemd
] + ":" + stdenv.lib.makeSearchPathOutput "lib" "lib64" [
stdenv.cc.cc

View file

@ -1,6 +1,8 @@
{ stdenv, fetchurl, pkgconfig, python3, makeWrapper, pygtk
, webkit, glib_networking, gsettings_desktop_schemas, pythonPackages
}:
# This package needs python3 during buildtime,
# but Python 2 + packages during runtime.
stdenv.mkDerivation rec {
name = "uzbl-v0.9.0";
@ -22,8 +24,8 @@ stdenv.mkDerivation rec {
preConfigure = ''
makeFlags="$makeFlags PREFIX=$out"
makeFlags="$makeFlags PYINSTALL_EXTRA=--prefix=$out"
mkdir -p $out/lib/python3.4/site-packages/
export PYTHONPATH=$PYTHONPATH:$out/lib/python3.4/site-packages/
mkdir -p $out/${python3.sitePackages}/
export PYTHONPATH=$PYTHONPATH:$out/${python3.sitePackages}
'';
preFixup = ''
@ -37,5 +39,6 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig python3 makeWrapper ];
buildInputs = [ gsettings_desktop_schemas webkit pygtk pythonPackages.six ];
buildInputs = [ gsettings_desktop_schemas webkit ];
propagatedBuildInputs = [ pygtk pythonPackages.six ];
}

View file

@ -0,0 +1,31 @@
{ stdenv, fetchurl, pidgin, xosd
, autoreconfHook } :
stdenv.mkDerivation rec {
name = "pidgin-osd-0.1.0";
src = fetchurl {
url = https://github.com/mbroemme/pidgin-osd/archive/pidgin-osd-0.1.0.tar.gz;
sha256 = "11hqfifhxa9gijbnp9kq85k37hvr36spdd79cj9bkkvw4kyrdp3j";
};
makeFlags = "PIDGIN_LIBDIR=$(out)";
# autoreconf is run such that it *really* wants all the files, and there's no
# default ChangeLog. So make it happy.
preAutoreconf = "touch ChangeLog";
postInstall = ''
mkdir -p $out/lib/pidgin
ln -s $out/pidgin $out/lib/pidgin
'';
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ xosd pidgin ];
meta = with stdenv.lib; {
homepage = https://github.com/mbroemme/pidgin-osd;
description = "Plugin for Pidgin which implements on-screen display via libxosd";
license = licenses.gpl3;
platforms = platforms.linux;
};
}

View file

@ -0,0 +1,29 @@
{ stdenv, fetchhg, pidgin, glib, json_glib, protobuf, protobufc }:
stdenv.mkDerivation rec {
name = "purple-hangouts-hg-${version}";
version = "2016-07-17";
src = fetchhg {
url = "https://bitbucket.org/EionRobb/purple-hangouts/";
rev = "2c60a5e";
sha256 = "1m8132ywg9982q3yiqgy1hzm61wkgi590425pp8yk1q03yipd6zb";
};
buildInputs = [ pidgin glib json_glib protobuf protobufc ];
installPhase = ''
install -Dm755 -t $out/lib/pidgin/ libhangouts.so
for size in 16 22 24 48; do
install -TDm644 hangouts$size.png $out/pixmaps/pidgin/protocols/$size/hangouts.png
done
'';
meta = with stdenv.lib; {
homepage = https://bitbucket.org/EionRobb/purple-hangouts;
description = "Native Hangouts support for pidgin";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ ralith ];
};
}

View file

@ -23,6 +23,7 @@ stdenv.mkDerivation {
configureFlags = [
"--with-ssl-include-dir=${openssl.dev}/include/openssl"
"--with-tcl-lib=${tcl.libPrefix}"
"--with-passfile=.pine-passfile"
];
preConfigure = ''

View file

@ -1,13 +1,13 @@
{ stdenv, fetchgit, go }:
stdenv.mkDerivation rec {
version = "0.13.10";
version = "0.14.0";
name = "syncthing-${version}";
src = fetchgit {
url = https://github.com/syncthing/syncthing;
rev = "refs/tags/v${version}";
sha256 = "07q3j6mnrza719rnvbkdsmvlkyr2pch5sj2l204m5iy5mxaghpx7";
sha256 = "15l3q3r6i3q95i474winswx4y149b5ic7xhpnj52s78fxd4va2q2";
};
buildInputs = [ go ];

View file

@ -0,0 +1,38 @@
{ stdenv, fetchgit, go }:
stdenv.mkDerivation rec {
version = "0.13.10";
name = "syncthing-${version}";
src = fetchgit {
url = https://github.com/syncthing/syncthing;
rev = "refs/tags/v${version}";
sha256 = "07q3j6mnrza719rnvbkdsmvlkyr2pch5sj2l204m5iy5mxaghpx7";
};
buildInputs = [ go ];
buildPhase = ''
mkdir -p src/github.com/syncthing
ln -s $(pwd) src/github.com/syncthing/syncthing
export GOPATH=$(pwd)
# Syncthing's build.go script expects this working directory
cd src/github.com/syncthing/syncthing
go run build.go -no-upgrade -version v${version} install all
'';
installPhase = ''
mkdir -p $out/bin
cp bin/* $out/bin
'';
meta = {
homepage = https://www.syncthing.net/;
description = "Open Source Continuous File Synchronization";
license = stdenv.lib.licenses.mpl20;
maintainers = with stdenv.lib.maintainers; [pshendry];
platforms = with stdenv.lib.platforms; linux ++ freebsd ++ openbsd ++ netbsd;
};
}

View file

@ -0,0 +1,32 @@
{ stdenv, fetchurl, atomEnv, libXScrnSaver }:
stdenv.mkDerivation rec {
name = "marp-${version}";
version = "0.0.8";
src = fetchurl {
url = "https://github.com/yhatt/marp/releases/download/v${version}/${version}-Marp-linux-x64.tar.gz";
sha256 = "0d7vvz34ik2jafwl3qjkdsvcva25gyrgrfg1gz1nk8f5dkl1wjcf";
};
sourceRoot = ".";
installPhase = ''
mkdir -p $out/lib/marp $out/bin
cp -r ./* $out/lib/marp
ln -s $out/lib/marp/Marp $out/bin
'';
postFixup = ''
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
--set-rpath "${atomEnv.libPath}:${stdenv.lib.makeLibraryPath [ libXScrnSaver ]}:$out/lib/marp" \
$out/bin/Marp
'';
meta = with stdenv.lib; {
description = "Markdown presentation writer, powered by Electron";
homepage = https://yhatt.github.io/marp/;
license = licenses.mit;
maintainers = [ maintainers.puffnfresh ];
platforms = [ "x86_64-linux" ];
};
}

View file

@ -12,15 +12,22 @@ stdenv.mkDerivation rec {
phases = [ "unpackPhase" "installPhase" ];
installPhase = ''
mkdir -p $out/share/fonts/truetype
find . -name "*.ttf" -exec cp -v {} $out/share/fonts/truetype \;
dest=$out/share/fonts/truetype
mkdir -p $dest
find . -name "*.ttf" -exec cp -v {} $dest \;
chmod -x $dest/*.ttf
'';
outputHashAlgo = "sha256";
outputHashMode = "recursive";
outputHash = "0q03gg0sh2mljlbmhamnxz28d13znh9dzca84p554s7pwg6z4wca";
meta = with stdenv.lib; {
homepage = https://www.google.com/fontsl;
description = "Font files available from Google Font";
license = with licenses; [ asl20 ofl ufl ];
platforms = platforms.all;
hydraPlatforms = [];
maintainers = with maintainers; [ manveru ];
};
}

View file

@ -1,10 +1,10 @@
# Autogenerated by maintainers/scripts/gnome.sh update
fetchurl: {
name = "gnome-photos-3.20.1";
name = "gnome-photos-3.20.2";
src = fetchurl {
url = mirror://gnome/sources/gnome-photos/3.20/gnome-photos-3.20.1.tar.xz;
sha256 = "7639cc9367aa0f4bbf54aa46edaeedb91fcce85d387e8ffb669470710e247e5a";
url = mirror://gnome/sources/gnome-photos/3.20/gnome-photos-3.20.2.tar.xz;
sha256 = "ec6b95ad1c4aeeb065a65d2d48335036c0750761c7f6762bafcf874791272b46";
};
}

View file

@ -1,10 +1,10 @@
# Autogenerated by maintainers/scripts/gnome.sh update
fetchurl: {
name = "dconf-editor-3.20.2";
name = "dconf-editor-3.20.3";
src = fetchurl {
url = mirror://gnome/sources/dconf-editor/3.20/dconf-editor-3.20.2.tar.xz;
sha256 = "486dcb60001b934186f3c3591897d986459bf240f35641fbb59ee957c15af2be";
url = mirror://gnome/sources/dconf-editor/3.20/dconf-editor-3.20.3.tar.xz;
sha256 = "a8721499a277550b28d8dd94dafbea6efeb95fa153020da10603d0d4d628c579";
};
}

View file

@ -1,10 +1,10 @@
# Autogenerated by maintainers/scripts/gnome.sh update
fetchurl: {
name = "eog-3.20.2";
name = "eog-3.20.3";
src = fetchurl {
url = mirror://gnome/sources/eog/3.20/eog-3.20.2.tar.xz;
sha256 = "d7d022af85ea0046e90b02fc94672757300bbbdb422eef2be2afc99fc2cd87e7";
url = mirror://gnome/sources/eog/3.20/eog-3.20.3.tar.xz;
sha256 = "16308c389deced3acb801dcc180c5e5e18b1db6ba5bd5835b5320cba9b0d2c26";
};
}

View file

@ -1,10 +1,10 @@
# Autogenerated by maintainers/scripts/gnome.sh update
fetchurl: {
name = "epiphany-3.20.2";
name = "epiphany-3.20.3";
src = fetchurl {
url = mirror://gnome/sources/epiphany/3.20/epiphany-3.20.2.tar.xz;
sha256 = "d107ea1d621e91b1c5a7b51435fa81684d4cd4dd2c6fd71adf95e9a46fe6237a";
url = mirror://gnome/sources/epiphany/3.20/epiphany-3.20.3.tar.xz;
sha256 = "4d9de1bdb44c14adf25aa6dc02ea3de60925cff5eb01fe89545e6032c9b424a2";
};
}

View file

@ -1,10 +1,10 @@
# Autogenerated by maintainers/scripts/gnome.sh update
fetchurl: {
name = "evince-3.20.0";
name = "evince-3.20.1";
src = fetchurl {
url = mirror://gnome/sources/evince/3.20/evince-3.20.0.tar.xz;
sha256 = "cf8358a453686c2a7f85d245f83fe918c0ce02eb6532339f3e02e31249a5a280";
url = mirror://gnome/sources/evince/3.20/evince-3.20.1.tar.xz;
sha256 = "fc7ac23036939c24f02e9fed6dd6e28a85b4b00b60fa4b591b86443251d20055";
};
}

View file

@ -1,12 +1,10 @@
# Autogenerated by maintainers/scripts/gnome.sh update
fetchurl: rec {
major = "3.18";
minor = "3";
name = "gnome-bluetooth-${major}.${minor}";
fetchurl: {
name = "gnome-bluetooth-3.20.0";
src = fetchurl {
url = "mirror://gnome/sources/gnome-bluetooth/${major}/${name}.tar.xz";
sha256 = "1qwc9q7x22sc71zhqv4db78rqzxl6fqfw6d978ydqap54c2bg0g4";
url = mirror://gnome/sources/gnome-bluetooth/3.20/gnome-bluetooth-3.20.0.tar.xz;
sha256 = "93b3ca16b348a168d044b3f777049b7dba2a9292c4adb2751a771e3bc5e4eb53";
};
}

View file

@ -1,10 +1,10 @@
# Autogenerated by maintainers/scripts/gnome.sh update
fetchurl: {
name = "gnome-screenshot-3.18.0";
name = "gnome-screenshot-3.20.1";
src = fetchurl {
url = mirror://gnome/sources/gnome-screenshot/3.18/gnome-screenshot-3.18.0.tar.xz;
sha256 = "eba64dbf4acf0ab8222fec549d0a4f2dd7dbd51c255e7978dedf1f5c06a98841";
url = mirror://gnome/sources/gnome-screenshot/3.20/gnome-screenshot-3.20.1.tar.xz;
sha256 = "06a89b6887146cdbbeb64adf11bdae21acf22b0422337041c66eedb21ef7e143";
};
}

View file

@ -1,10 +1,10 @@
# Autogenerated by maintainers/scripts/gnome.sh update
fetchurl: {
name = "gnome-shell-3.20.2";
name = "gnome-shell-3.20.3";
src = fetchurl {
url = mirror://gnome/sources/gnome-shell/3.20/gnome-shell-3.20.2.tar.xz;
sha256 = "eaff6b177cc5bab16b252c45393a6c9305ad3837a288e738388c7b4d4bae13cd";
url = mirror://gnome/sources/gnome-shell/3.20/gnome-shell-3.20.3.tar.xz;
sha256 = "b23fd558623bfdc726066be3f47bb5fb8ed9c0ad980a95d6afc6397b6d41171e";
};
}

View file

@ -1,10 +1,10 @@
# Autogenerated by maintainers/scripts/gnome.sh update
fetchurl: {
name = "gtksourceview-3.20.3";
name = "gtksourceview-3.20.4";
src = fetchurl {
url = mirror://gnome/sources/gtksourceview/3.20/gtksourceview-3.20.3.tar.xz;
sha256 = "53069c6e2645716d5dc3dc875b2fe7aacbe70e6560f8dc01c66597231886a8df";
url = mirror://gnome/sources/gtksourceview/3.20/gtksourceview-3.20.4.tar.xz;
sha256 = "7a0e6ac95ff3862bd8ef77a40e95a942939e73cb407f2eb67af600d7ce533d01";
};
}

View file

@ -1,10 +1,10 @@
# Autogenerated by maintainers/scripts/gnome.sh update
fetchurl: {
name = "mutter-3.20.2";
name = "mutter-3.20.3";
src = fetchurl {
url = mirror://gnome/sources/mutter/3.20/mutter-3.20.2.tar.xz;
sha256 = "1e8c46a81e21f382f56729282fcd0bb1c3a2067135f4b0f3651b307bf7a5b454";
url = mirror://gnome/sources/mutter/3.20/mutter-3.20.3.tar.xz;
sha256 = "142c5271df4bde968c725ed09026173292c07b4dd7ba75f19c4b14fc363af916";
};
}

View file

@ -1,10 +1,10 @@
# Autogenerated by maintainers/scripts/gnome.sh update
fetchurl: {
name = "gnome-mines-3.20.0";
name = "gnome-mines-3.20.1";
src = fetchurl {
url = mirror://gnome/sources/gnome-mines/3.20/gnome-mines-3.20.0.tar.xz;
sha256 = "7775c8d19cda9663a3e6b69d921c9de869278aeff93e249099af2d3c19b970a6";
url = mirror://gnome/sources/gnome-mines/3.20/gnome-mines-3.20.1.tar.xz;
sha256 = "5815e886d92817d4127b9e94bf63cb91e2bf371029d18efdf9f195e2400e2b3b";
};
}

View file

@ -1,10 +1,10 @@
# Autogenerated by maintainers/scripts/gnome.sh update
fetchurl: {
name = "gitg-3.20.0";
name = "gitg-3.20.1";
src = fetchurl {
url = mirror://gnome/sources/gitg/3.20/gitg-3.20.0.tar.xz;
sha256 = "1f09f61208349d003f228e51dc9709bd3426960f5585c0e38197bd02b51f3346";
url = mirror://gnome/sources/gitg/3.20/gitg-3.20.1.tar.xz;
sha256 = "104420bcdd765fa2196a7b146ba1e0fa82a5686ed5ba9af40e31e88e601aa585";
};
}

View file

@ -1,57 +1,111 @@
{ stdenv, fetchFromGitHub, jdk, jre, ant, coreutils, gnugrep, file, libusb
{ stdenv, lib, fetchFromGitHub, fetchurl, jdk, ant
, libusb, libusb1, unzip, zlib, ncurses, readline
, withGui ? false, gtk2 ? null
}:
assert withGui -> gtk2 != null;
let
externalDownloads = import ./downloads.nix {inherit fetchurl;};
# Some .so-files are later copied from .jar-s to $HOME, so patch them beforehand
patchelfInJars =
lib.optional (stdenv.system == "x86_64-linux") {jar = "share/arduino/lib/jssc-2.8.0.jar"; file = "libs/linux/libjSSC-2.8_x86_64.so";}
++ lib.optional (stdenv.system == "i686-linux") {jar = "share/arduino/lib/jssc-2.8.0.jar"; file = "libs/linux/libjSSC-2.8_x86.so";}
;
# abiVersion 6 is default, but we need 5 for `avrdude_bin` executable
ncurses5 = ncurses.override { abiVersion = "5"; };
in
stdenv.mkDerivation rec {
version = "1.0.6";
version = "1.6.9";
name = "arduino${stdenv.lib.optionalString (withGui == false) "-core"}-${version}";
src = fetchFromGitHub {
owner = "arduino";
repo = "Arduino";
rev = "${version}";
sha256 = "0nr5b719qi03rcmx6swbhccv6kihxz3b8b6y46bc2j348rja5332";
sha256 = "0ksd6mkcf41114n0h37q80y1bz3a2q3z8kg6m9i11c3wrj8n80np";
};
buildInputs = [ jdk ant file ];
buildInputs = [ jdk ant libusb libusb1 unzip zlib ncurses5 readline ];
downloadSrcList = builtins.attrValues externalDownloads;
downloadDstList = builtins.attrNames externalDownloads;
buildPhase = ''
cd ./core && ant
cd ../build && ant
# Copy pre-downloaded files to proper locations
download_src=($downloadSrcList)
download_dst=($downloadDstList)
while [[ "''${#download_src[@]}" -ne 0 ]]; do
file_src=''${download_src[0]}
file_dst=''${download_dst[0]}
mkdir -p $(dirname $file_dst)
download_src=(''${download_src[@]:1})
download_dst=(''${download_dst[@]:1})
cp -v $file_src $file_dst
done
# Loop above creates library_index.json.gz, package_index.json.gz and package_index.json.sig in
# current directory. And now we can inject them into build process.
library_index_url=file://$(pwd)/library_index.json
package_index_url=file://$(pwd)/package_index.json
cd ./arduino-core && ant
cd ../build && ant -Dlibrary_index_url=$library_index_url -Dpackage_index_url=$package_index_url
cd ..
'';
# This will be patched into `arduino` wrapper script
# Java loads gtk dynamically, so we need to provide it using LD_LIBRARY_PATH
dynamicLibraryPath = lib.makeLibraryPath [gtk2];
javaPath = lib.makeBinPath [jdk];
# Everything else will be patched into rpath
rpath = (lib.makeLibraryPath [zlib libusb libusb1 readline ncurses5 stdenv.cc.cc]);
installPhase = ''
mkdir -p $out/share/arduino
cp -r ./build/linux/work/* "$out/share/arduino/"
cp -r ./build/linux/work/* "$out/share/arduino/" #*/
echo ${version} > $out/share/arduino/lib/version.txt
${stdenv.lib.optionalString withGui ''
mkdir -p "$out/bin"
sed -i -e "s|^java|${jdk}/bin/java|" "$out/share/arduino/arduino"
sed -i -e "s|^LD_LIBRARY_PATH=|LD_LIBRARY_PATH=${gtk2}/lib:|" "$out/share/arduino/arduino"
mkdir -p $out/bin
substituteInPlace $out/share/arduino/arduino \
--replace "JAVA=java" "JAVA=$javaPath/java" \
--replace "LD_LIBRARY_PATH=" "LD_LIBRARY_PATH=$dynamicLibraryPath:"
ln -sr "$out/share/arduino/arduino" "$out/bin/arduino"
''}
# Fixup "/lib64/ld-linux-x86-64.so.2" like references in ELF executables.
echo "running patchelf on prebuilt binaries:"
find "$out" | while read filepath; do
if file "$filepath" | grep -q "ELF.*executable"; then
# skip target firmware files
if echo "$filepath" | grep -q "\.elf$"; then
continue
fi
echo "setting interpreter $(cat "$NIX_CC"/nix-support/dynamic-linker) in $filepath"
patchelf --set-interpreter "$(cat "$NIX_CC"/nix-support/dynamic-linker)" "$filepath"
test $? -eq 0 || { echo "patchelf failed to process $filepath"; exit 1; }
fi
cp -r build/shared/icons $out/share/arduino
mkdir -p $out/share/applications
cp build/linux/dist/desktop.template $out/share/applications/arduino.desktop
substituteInPlace $out/share/applications/arduino.desktop \
--replace '<BINARY_LOCATION>' "$out/bin/arduino" \
--replace '<ICON_NAME>' "$out/share/arduino/icons/128x128/apps/arduino.png"
''}
'';
# So we don't accidentally mess with firmware files
dontStrip = true;
dontPatchELF = true;
preFixup = ''
for file in $(find $out -type f \( -perm /0111 -o -name \*.so\* \) ); do
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" "$file" || true
patchelf --set-rpath ${rpath}:$out/lib $file || true
done
patchelf --set-rpath ${stdenv.lib.makeLibraryPath [ libusb ]} \
"$out/share/arduino/hardware/tools/avrdude"
${lib.concatMapStringsSep "\n"
({jar, file}:
''
jar xvf $out/${jar} ${file}
patchelf --set-rpath $rpath ${file}
jar uvf $out/${jar} ${file}
rm -f ${file}
''
)
patchelfInJars}
# avrdude_bin is linked against libtinfo.so.5
mkdir $out/lib/
ln -s ${lib.makeLibraryPath [ncurses5]}/libncursesw.so.5 $out/lib/libtinfo.so.5
'';
meta = with stdenv.lib; {
@ -60,5 +114,5 @@ stdenv.mkDerivation rec {
license = stdenv.lib.licenses.gpl2;
platforms = platforms.all;
maintainers = with maintainers; [ antono robberer bjornfor ];
};
};
}

View file

@ -0,0 +1,92 @@
{fetchurl}:
{
# Following 3 files are snapshots of files that were downloaded from http://download.arduino.cc/
# Because original URLs update daily. https://github.com/binarin/arduino-indexes also contains script
# for updating those snapshots.
"package_index.json.gz" = fetchurl {
url = "https://github.com/binarin/arduino-indexes/raw/snapshot-2016-07-18/package_index.json.gz";
sha256 = "11y16864bca6h5n03xbk8cw3v9b4xwvjz5mkirkcxslkkf7cx5yg";
};
"package_index.json.sig" = fetchurl {
url = "https://github.com/binarin/arduino-indexes/raw/snapshot-2016-07-18/package_index.json.sig";
sha256 = "14ky3qb81mvqswaw9g5cpg5jcjqx6knfm75mzx1si7fbx576amls";
};
"library_index.json.gz" = fetchurl {
url = "https://github.com/binarin/arduino-indexes/raw/snapshot-2016-07-18/library_index.json.gz";
sha256 = "19md4yf4m4wh9vnc3aj0gm3jak1qa591z5yhg0x8lsxx5hr2v85z";
};
"build/shared/reference-1.6.6-3.zip" = fetchurl {
url = "http://downloads.arduino.cc/reference-1.6.6-3.zip";
sha256 = "119nj1idz85l71fy6a6wwsx0mcd8y0ib1wy0l6j9kz88nkwvggy3";
};
"build/shared/Galileo_help_files-1.6.2.zip" = fetchurl {
url = "http://downloads.arduino.cc/Galileo_help_files-1.6.2.zip";
sha256 = "0qda0xml353sfhjmx9my4mlcyzbf531k40dcr1cnsa438xp2fw0w";
};
"build/shared/Edison_help_files-1.6.2.zip" = fetchurl {
url = "http://downloads.arduino.cc/Edison_help_files-1.6.2.zip";
sha256 = "1x25rivmh0zpa6lr8dafyxvim34wl3wnz3r9msfxg45hnbjqqwan";
};
"build/Firmata-2.5.2.zip" = fetchurl {
url = "https://github.com/arduino-libraries/Firmata/archive/2.5.2.zip";
sha256 = "1r75bxvpr17kwhpks9nxxpm5d5qbw0qnhygakv06whan9s0dc5cz";
};
"build/Bridge-1.6.2.zip" = fetchurl {
url = "https://github.com/arduino-libraries/Bridge/archive/1.6.2.zip";
sha256 = "10v557bsxasq8ya09m9157nlk50cbkb0wlzrm54cznzmwc0gx49a";
};
"build/Robot_Control-1.0.2.zip" = fetchurl {
url = "https://github.com/arduino-libraries/Robot_Control/archive/1.0.2.zip";
sha256 = "1wdpz3ilnza3lfd5a628dryic46j72h4a89y8vp0qkbscvifcvdk";
};
"build/Robot_Motor-1.0.2.zip" = fetchurl {
url = "https://github.com/arduino-libraries/Robot_Motor/archive/1.0.2.zip";
sha256 = "0da21kfzy07kk2qnkprs3lj214fgkcjxlkk3hdp306jfv8ilmvy2";
};
"build/RobotIRremote-1.0.2.zip" = fetchurl {
url = "https://github.com/arduino-libraries/RobotIRremote/archive/1.0.2.zip";
sha256 = "0wkya7dy4x0xyi7wn5aghmr1gj0d0wszd61pq18zgfdspz1gi6xn";
};
"build/SpacebrewYun-1.0.0.zip" = fetchurl {
url = "https://github.com/arduino-libraries/SpacebrewYun/archive/1.0.0.zip";
sha256 = "1sklyp92m8i31rfb9b9iw0zvvab1zd7jdmg85fr908xn6k05qhmp";
};
"build/Temboo-1.1.5.zip" = fetchurl {
url = "https://github.com/arduino-libraries/Temboo/archive/1.1.5.zip";
sha256 = "1ak9b2wrd42n3ak7kcqwg28ianq01acsi5jv4cc031wr0kpq4507";
};
"build/Esplora-1.0.4.zip" = fetchurl {
url = "https://github.com/arduino-libraries/Esplora/archive/1.0.4.zip";
sha256 = "1dflfrg38f0312nxn6wkkgq1ql4hx3y9kplalix6mkqmzwrdvna4";
};
"build/Mouse-1.0.1.zip" = fetchurl {
url = "https://github.com/arduino-libraries/Mouse/archive/1.0.1.zip";
sha256 = "106jjqxzpf5lrs9akwvamqsblj5w2fb7vd0wafm9ihsikingiypr";
};
"build/Keyboard-1.0.1.zip" = fetchurl {
url = "https://github.com/arduino-libraries/Keyboard/archive/1.0.1.zip";
sha256 = "1spv73zhjbrb0vgpzjnh6wr3bddlbyzv78d21dbn8z2l0aqv2sac";
};
"build/libastylej-2.05.1-3.zip" = fetchurl {
url = "http://downloads.arduino.cc/libastylej-2.05.1-3.zip";
sha256 = "0a1xy2cdl0xls5r21vy5d2j1dapn1jsdw0vbimlwnzfx7r84mxa6";
};
"build/liblistSerials-1.1.0.zip" = fetchurl {
url = "http://downloads.arduino.cc/liblistSerials/liblistSerials-1.1.0.zip";
sha256 = "12n3y9y3gfi7i3x6llbwvi59jram02v8yyilv2kd38dm7wrqpw16";
};
"build/arduino-builder-linux64-1.3.18.tar.bz2" = fetchurl {
url = "http://downloads.arduino.cc/tools/arduino-builder-linux64-1.3.18.tar.bz2";
sha256 = "0xbzcmvfa1h22dlvym8v4s68w4r1vdq8pj086sk1iwlkfiq0y4zq";
};
"build/linux/avr-gcc-4.8.1-arduino5-x86_64-pc-linux-gnu.tar.bz2" = fetchurl {
url = "http://downloads.arduino.cc/tools/avr-gcc-4.8.1-arduino5-x86_64-pc-linux-gnu.tar.bz2";
sha256 = "1k793qsv1jdc0m4i9k40l2k7blnarfzy2k3clndl2yirfk0zqm4h";
};
"build/linux/avrdude-6.0.1-arduino5-x86_64-pc-linux-gnu.tar.bz2" = fetchurl {
url = "http://downloads.arduino.cc/tools/avrdude-6.0.1-arduino5-x86_64-pc-linux-gnu.tar.bz2";
sha256 = "0xm4hfr4binny9f5affnmyrrq3lhrxr66s6ymplgfq9l72kwq9nq";
};
}

View file

@ -22,11 +22,11 @@ stdenv.mkDerivation {
};
buildInputs = [ bzip2 patchelf ];
dontPatchELF = true;
phases = "unpackPhase patchPhase installPhase";
installPhase = ''
mkdir -pv $out
cp -r ./* $out
@ -42,8 +42,9 @@ stdenv.mkDerivation {
meta = with stdenv.lib; {
description = "Pre-built GNU toolchain from ARM Cortex-M & Cortex-R processors (Cortex-M0/M0+/M3/M4, Cortex-R4/R5/R7)";
homepage = "https://launchpad.net/gcc-arm-embedded";
license = licenses.gpl3;
homepage = https://launchpad.net/gcc-arm-embedded;
license = with licenses; [ bsd2 gpl2 gpl3 lgpl21 lgpl3 mit ];
maintainers = [ maintainers.rasendubi ];
platforms = platforms.linux;
};
}

View file

@ -5,7 +5,7 @@ let version = "0.8.7"; in
stdenv.mkDerivation {
name = "jsonnet-${version}";
srcs = fetchFromGitHub {
src = fetchFromGitHub {
rev = "v${version}";
owner = "google";
repo = "jsonnet";

View file

@ -1,9 +1,9 @@
import ./jdk-linux-base.nix {
productVersion = "8";
patchVersion = "91";
patchVersion = "101";
downloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html;
sha256_i686 = "0lndni81vfpz2l6zb8zsshaavk0483q5jc8yzj4fdjv6wnshbkay";
sha256_x86_64 = "0lkm3fz1vdi69f34sysavvh3abx603j1frc9hxvr08pwvmm536vg";
sha256_i686 = "0p9nvaifb1mn7scmprbcyv9a4lyqy8i0mf7rsb59cli30vpi44mi";
sha256_x86_64 = "0a0kb3c7xfh81vx5sicw2frgxq0gyv5qp0d725rviwldlcxk4zs6";
jceName = "jce_policy-8.zip";
jceDownloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jce8-download-2133166.html;
sha256JCE = "0n8b6b8qmwb14lllk2lk1q1ahd3za9fnjigz5xn65mpg48whl0pk";

View file

@ -1,9 +1,9 @@
import ./jdk-linux-base.nix {
productVersion = "8";
patchVersion = "92";
patchVersion = "102";
downloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html;
sha256_i686 = "095j2hh2xas05jajy4qdj9hxq3k460x4m12rcaxkaxw754imj0vj";
sha256_x86_64 = "11wrqd3qbkhimbw9n4g9i0635pjhhnijwxyid7lvjv26kdgg58vr";
sha256_i686 = "1bsypgf9va8jds0rlpnwp9n9p11hz77gqlmb0b0w2qwfmlmi227d";
sha256_x86_64 = "1dq4kqi8k2k11sc28fnbp6cmncfj86jv57iy1gkap94i0fyf1yvw";
jceName = "jce_policy-8.zip";
jceDownloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jce8-download-2133166.html;
sha256JCE = "0n8b6b8qmwb14lllk2lk1q1ahd3za9fnjigz5xn65mpg48whl0pk";

View file

@ -209,11 +209,6 @@ self: super: {
# on darwin: https://github.com/NixOS/cabal2nix/issues/146.
hinotify = if pkgs.stdenv.isDarwin then self.hfsevents else super.hinotify;
# hfsevents needs CoreServices in scope
hfsevents = if pkgs.stdenv.isDarwin
then with pkgs.darwin.apple_sdk.frameworks; addBuildTool (addBuildDepends super.hfsevents [Cocoa]) CoreServices
else super.hfsevents;
# FSEvents API is very buggy and tests are unreliable. See
# http://openradar.appspot.com/10207999 and similar issues.
# https://github.com/haskell-fswatch/hfsnotify/issues/62
@ -656,8 +651,20 @@ self: super: {
# Uses OpenGL in testing
caramia = dontCheck super.caramia;
llvm-general-darwin = overrideCabal (super.llvm-general.override { llvm-config = pkgs.llvm_35; }) (drv: {
preConfigure = ''
sed -i llvm-general.cabal \
-e 's,extra-libraries: stdc++,extra-libraries: c++,'
'';
configureFlags = (drv.configureFlags or []) ++ ["--extra-include-dirs=${pkgs.libcxx}/include/c++/v1"];
librarySystemDepends = [ pkgs.libcxx ] ++ drv.librarySystemDepends or [];
});
# Supports only 3.5 for now, https://github.com/bscarlet/llvm-general/issues/142
llvm-general = super.llvm-general.override { llvm-config = pkgs.llvm_35; };
llvm-general =
if pkgs.stdenv.isDarwin
then self.llvm-general-darwin
else super.llvm-general.override { llvm-config = pkgs.llvm_35; };
# Needs help finding LLVM.
spaceprobe = addBuildTool super.spaceprobe self.llvmPackages.llvm;

View file

@ -63,9 +63,6 @@ self: super: {
nats = dontHaddock super.nats;
bytestring-builder = dontHaddock super.bytestring-builder;
# requires filepath >=1.1 && <1.4
Glob = doJailbreak super.Glob;
# Setup: At least the following dependencies are missing: base <4.8
hspec-expectations = overrideCabal super.hspec-expectations (drv: {
postPatch = "sed -i -e 's|base < 4.8|base|' hspec-expectations.cabal";
@ -211,6 +208,8 @@ self: super: {
semigroups_0_18_1 = addBuildDepends super.semigroups (with self; [hashable tagged text unordered-containers]);
semigroups = addBuildDepends super.semigroups (with self; [hashable tagged text unordered-containers]);
intervals = addBuildDepends super.intervals (with self; [doctest QuickCheck]);
Glob_0_7_9 = addBuildDepends super.Glob_0_7_9 (with self; [semigroups]);
Glob = addBuildDepends super.Glob (with self; [semigroups]);
# Moved out from common as no longer the case for GHC8
ghc-mod = super.ghc-mod.override { cabal-helper = self.cabal-helper_0_6_3_1; };

View file

@ -800,6 +800,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1830,6 +1831,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_4_0_2";
@ -3123,6 +3125,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3610,6 +3613,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4527,6 +4531,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4913,6 +4918,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5231,6 +5237,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_2_2";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5469,6 +5476,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6126,6 +6134,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6372,6 +6381,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6837,6 +6847,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7294,6 +7305,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7801,6 +7813,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -8056,6 +8069,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8488,6 +8502,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -800,6 +800,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1830,6 +1831,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_4_0_2";
@ -3123,6 +3125,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3610,6 +3613,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4527,6 +4531,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4913,6 +4918,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5231,6 +5237,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_2_2";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5469,6 +5476,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6126,6 +6134,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6372,6 +6381,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6837,6 +6847,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7294,6 +7305,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7801,6 +7813,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -8056,6 +8069,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8488,6 +8502,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -800,6 +800,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1830,6 +1831,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_4_0_2";
@ -3123,6 +3125,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3610,6 +3613,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4527,6 +4531,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4913,6 +4918,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5231,6 +5237,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_2_2";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5469,6 +5476,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6126,6 +6134,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6372,6 +6381,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6837,6 +6847,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7294,6 +7305,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7801,6 +7813,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -8056,6 +8069,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8488,6 +8502,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -800,6 +800,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1830,6 +1831,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_4_0_2";
@ -3123,6 +3125,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3610,6 +3613,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4527,6 +4531,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4913,6 +4918,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5231,6 +5237,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_2_2";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5469,6 +5476,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6126,6 +6134,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6372,6 +6381,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6837,6 +6847,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7294,6 +7305,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7801,6 +7813,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -8056,6 +8069,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8488,6 +8502,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -800,6 +800,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1830,6 +1831,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_4_0_2";
@ -3123,6 +3125,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3610,6 +3613,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4525,6 +4529,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4911,6 +4916,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5229,6 +5235,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_2_2";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5467,6 +5474,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6124,6 +6132,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6370,6 +6379,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6835,6 +6845,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7292,6 +7303,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7798,6 +7810,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -8053,6 +8066,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8485,6 +8499,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -800,6 +800,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1830,6 +1831,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_4_0_2";
@ -3123,6 +3125,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3610,6 +3613,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4525,6 +4529,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4911,6 +4916,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5229,6 +5235,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_2_2";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5467,6 +5474,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6124,6 +6132,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6370,6 +6379,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6835,6 +6845,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7292,6 +7303,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7798,6 +7810,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -8053,6 +8066,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8485,6 +8499,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -799,6 +799,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1829,6 +1830,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_4_0_2";
@ -3122,6 +3124,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3609,6 +3612,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4523,6 +4527,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4909,6 +4914,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5227,6 +5233,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_2_2";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5465,6 +5472,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6122,6 +6130,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6368,6 +6377,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6833,6 +6843,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7290,6 +7301,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7795,6 +7807,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -8050,6 +8063,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8482,6 +8496,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -799,6 +799,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1829,6 +1830,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_4_0_2";
@ -3122,6 +3124,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3609,6 +3612,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4523,6 +4527,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4909,6 +4914,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5227,6 +5233,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_2_2";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5465,6 +5472,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6122,6 +6130,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6368,6 +6377,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6833,6 +6843,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7290,6 +7301,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7795,6 +7807,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -8050,6 +8063,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8482,6 +8496,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -796,6 +796,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1827,6 +1828,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3116,6 +3118,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3604,6 +3607,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4518,6 +4522,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4903,6 +4908,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5221,6 +5227,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_0";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5459,6 +5466,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6116,6 +6124,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6362,6 +6371,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6827,6 +6837,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7284,6 +7295,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7788,6 +7800,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -8043,6 +8056,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8474,6 +8488,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -796,6 +796,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1827,6 +1828,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3113,6 +3115,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3601,6 +3604,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4514,6 +4518,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4897,6 +4902,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5215,6 +5221,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_0";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5453,6 +5460,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6109,6 +6117,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6355,6 +6364,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6820,6 +6830,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7277,6 +7288,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7781,6 +7793,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -8035,6 +8048,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8465,6 +8479,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -795,6 +795,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1826,6 +1827,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3109,6 +3111,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3593,6 +3596,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4503,6 +4507,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4886,6 +4891,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5199,6 +5205,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5437,6 +5444,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6092,6 +6100,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6337,6 +6346,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6801,6 +6811,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7258,6 +7269,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7762,6 +7774,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -8014,6 +8027,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8444,6 +8458,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -795,6 +795,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1826,6 +1827,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3109,6 +3111,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3592,6 +3595,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4502,6 +4506,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4885,6 +4890,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5197,6 +5203,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5434,6 +5441,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6089,6 +6097,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6334,6 +6343,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6798,6 +6808,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7255,6 +7266,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7759,6 +7771,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -8011,6 +8024,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8441,6 +8455,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -795,6 +795,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1826,6 +1827,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3109,6 +3111,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3592,6 +3595,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4502,6 +4506,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4885,6 +4890,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5197,6 +5203,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5434,6 +5441,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6089,6 +6097,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6334,6 +6343,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6798,6 +6808,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7255,6 +7266,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7759,6 +7771,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -8011,6 +8024,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8441,6 +8455,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -795,6 +795,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1826,6 +1827,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3109,6 +3111,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3592,6 +3595,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4501,6 +4505,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4884,6 +4889,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5196,6 +5202,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5433,6 +5440,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6088,6 +6096,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6333,6 +6342,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6797,6 +6807,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7254,6 +7265,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7758,6 +7770,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -8010,6 +8023,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8440,6 +8454,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -794,6 +794,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1824,6 +1825,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3106,6 +3108,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3589,6 +3592,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4498,6 +4502,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4881,6 +4886,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5193,6 +5199,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5430,6 +5437,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6085,6 +6093,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6330,6 +6339,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6794,6 +6804,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7250,6 +7261,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7754,6 +7766,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -8006,6 +8019,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8436,6 +8450,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -794,6 +794,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1823,6 +1824,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3103,6 +3105,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3586,6 +3589,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4495,6 +4499,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4878,6 +4883,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5190,6 +5196,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5427,6 +5434,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6082,6 +6090,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6325,6 +6334,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6789,6 +6799,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7244,6 +7255,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7748,6 +7760,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -8000,6 +8013,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8429,6 +8443,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -796,6 +796,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1827,6 +1828,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3111,6 +3113,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3599,6 +3602,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4511,6 +4515,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4894,6 +4899,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5212,6 +5218,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_0";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5450,6 +5457,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6106,6 +6114,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6352,6 +6361,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6816,6 +6826,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7273,6 +7284,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7777,6 +7789,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -8030,6 +8043,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8460,6 +8474,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -795,6 +795,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1826,6 +1827,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3110,6 +3112,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3597,6 +3600,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4508,6 +4512,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4891,6 +4896,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5209,6 +5215,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_0";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5447,6 +5454,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6103,6 +6111,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6348,6 +6357,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6812,6 +6822,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7269,6 +7280,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7773,6 +7785,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -8026,6 +8039,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8456,6 +8470,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -795,6 +795,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1826,6 +1827,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3109,6 +3111,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3596,6 +3599,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4507,6 +4511,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4890,6 +4895,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5208,6 +5214,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_0";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5446,6 +5453,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6102,6 +6110,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6347,6 +6356,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6811,6 +6821,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7268,6 +7279,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7772,6 +7784,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -8025,6 +8038,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8455,6 +8469,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -795,6 +795,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1826,6 +1827,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3109,6 +3111,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3596,6 +3599,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4507,6 +4511,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4890,6 +4895,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5203,6 +5209,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_0";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5441,6 +5448,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6097,6 +6105,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6342,6 +6351,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6806,6 +6816,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7263,6 +7274,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7767,6 +7779,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -8020,6 +8033,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8450,6 +8464,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -795,6 +795,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1826,6 +1827,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3109,6 +3111,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3594,6 +3597,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4504,6 +4508,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4887,6 +4892,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5200,6 +5206,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_0";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5438,6 +5445,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6093,6 +6101,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6338,6 +6347,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6802,6 +6812,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7259,6 +7270,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7763,6 +7775,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -8016,6 +8029,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8446,6 +8460,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -795,6 +795,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1826,6 +1827,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3109,6 +3111,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3593,6 +3596,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4503,6 +4507,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4886,6 +4891,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5199,6 +5205,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5437,6 +5444,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6092,6 +6100,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6337,6 +6346,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6801,6 +6811,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7258,6 +7269,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7762,6 +7774,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_2";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -8015,6 +8028,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8445,6 +8459,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -789,6 +789,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1815,6 +1816,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3094,6 +3096,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3576,6 +3579,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4482,6 +4486,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4863,6 +4868,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5171,6 +5177,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5406,6 +5413,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6055,6 +6063,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6107,6 +6116,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@ -6293,6 +6303,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6754,6 +6765,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7209,6 +7221,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7713,6 +7726,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -7963,6 +7977,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8387,6 +8402,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -789,6 +789,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1815,6 +1816,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3094,6 +3096,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3576,6 +3579,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4482,6 +4486,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4863,6 +4868,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5171,6 +5177,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5406,6 +5413,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6055,6 +6063,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6107,6 +6116,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@ -6293,6 +6303,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6754,6 +6765,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7209,6 +7221,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7713,6 +7726,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -7963,6 +7977,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8387,6 +8402,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -788,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1809,6 +1810,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3084,6 +3086,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3563,6 +3566,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4468,6 +4472,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4849,6 +4854,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5155,6 +5161,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5388,6 +5395,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6036,6 +6044,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6088,6 +6097,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@ -6275,6 +6285,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6734,6 +6745,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7188,6 +7200,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7690,6 +7703,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -7940,6 +7954,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8137,6 +8152,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
"stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@ -8356,6 +8372,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -788,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1808,6 +1809,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3083,6 +3085,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3562,6 +3565,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4467,6 +4471,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4848,6 +4853,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5154,6 +5160,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5387,6 +5394,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6035,6 +6043,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6087,6 +6096,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@ -6274,6 +6284,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6732,6 +6743,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7186,6 +7198,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7687,6 +7700,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -7937,6 +7951,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8134,6 +8149,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
"stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@ -8352,6 +8368,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -788,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1808,6 +1809,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3083,6 +3085,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3562,6 +3565,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4467,6 +4471,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4848,6 +4853,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5154,6 +5160,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5387,6 +5394,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6035,6 +6043,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6087,6 +6096,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@ -6274,6 +6284,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6732,6 +6743,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7186,6 +7198,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7686,6 +7699,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -7936,6 +7950,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8133,6 +8148,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
"stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@ -8351,6 +8367,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -788,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1808,6 +1809,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3083,6 +3085,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3562,6 +3565,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4467,6 +4471,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4848,6 +4853,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5153,6 +5159,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5386,6 +5393,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6034,6 +6042,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6086,6 +6095,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@ -6273,6 +6283,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6731,6 +6742,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7185,6 +7197,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7685,6 +7698,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -7935,6 +7949,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8132,6 +8147,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
"stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@ -8350,6 +8366,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -788,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1808,6 +1809,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3083,6 +3085,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3561,6 +3564,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4466,6 +4470,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4847,6 +4852,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5151,6 +5157,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5384,6 +5391,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6032,6 +6040,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6084,6 +6093,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@ -6271,6 +6281,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6729,6 +6740,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7183,6 +7195,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7683,6 +7696,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -7933,6 +7947,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8130,6 +8145,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
"stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@ -8348,6 +8364,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -788,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1808,6 +1809,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3082,6 +3084,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3560,6 +3563,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4465,6 +4469,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4846,6 +4851,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5150,6 +5156,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5383,6 +5390,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6031,6 +6039,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6083,6 +6092,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@ -6269,6 +6279,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6727,6 +6738,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7181,6 +7193,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7681,6 +7694,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -7931,6 +7945,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8127,6 +8142,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
"stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@ -8345,6 +8361,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -788,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1808,6 +1809,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3080,6 +3082,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3557,6 +3560,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4462,6 +4466,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4843,6 +4848,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5147,6 +5153,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5380,6 +5387,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6027,6 +6035,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6079,6 +6088,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@ -6265,6 +6275,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6723,6 +6734,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7177,6 +7189,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7677,6 +7690,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -7927,6 +7941,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8123,6 +8138,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
"stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@ -8341,6 +8357,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -788,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1807,6 +1808,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3079,6 +3081,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3554,6 +3557,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4459,6 +4463,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4840,6 +4845,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5144,6 +5150,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5377,6 +5384,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6024,6 +6032,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6076,6 +6085,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@ -6262,6 +6272,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6719,6 +6730,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7173,6 +7185,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7673,6 +7686,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -7923,6 +7937,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8119,6 +8134,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
"stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@ -8337,6 +8353,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -788,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1807,6 +1808,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3077,6 +3079,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3552,6 +3555,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4457,6 +4461,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4838,6 +4843,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5142,6 +5148,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5375,6 +5382,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6022,6 +6030,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6074,6 +6083,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@ -6260,6 +6270,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6716,6 +6727,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7170,6 +7182,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7670,6 +7683,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -7920,6 +7934,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8116,6 +8131,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
"stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@ -8334,6 +8350,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -788,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1807,6 +1808,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3077,6 +3079,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3551,6 +3554,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4456,6 +4460,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4837,6 +4842,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5141,6 +5147,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5374,6 +5381,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6021,6 +6029,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6073,6 +6082,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@ -6259,6 +6269,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6715,6 +6726,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7169,6 +7181,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7669,6 +7682,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -7919,6 +7933,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8115,6 +8130,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
"stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@ -8333,6 +8349,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -789,6 +789,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1814,6 +1815,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3092,6 +3094,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3574,6 +3577,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4480,6 +4484,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4861,6 +4866,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5169,6 +5175,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5404,6 +5411,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6053,6 +6061,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6105,6 +6114,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@ -6291,6 +6301,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6752,6 +6763,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7207,6 +7219,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7711,6 +7724,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -7961,6 +7975,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8385,6 +8400,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -788,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1807,6 +1808,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3077,6 +3079,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3551,6 +3554,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4456,6 +4460,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4837,6 +4842,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5141,6 +5147,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5374,6 +5381,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6021,6 +6029,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6073,6 +6082,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@ -6259,6 +6269,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6715,6 +6726,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7169,6 +7181,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7669,6 +7682,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -7918,6 +7932,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8114,6 +8129,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
"stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@ -8332,6 +8348,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -788,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1807,6 +1808,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3077,6 +3079,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3551,6 +3554,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4456,6 +4460,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4837,6 +4842,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5141,6 +5147,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5374,6 +5381,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6021,6 +6029,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6073,6 +6082,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@ -6259,6 +6269,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6715,6 +6726,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7168,6 +7180,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7668,6 +7681,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -7917,6 +7931,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8113,6 +8128,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
"stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@ -8331,6 +8347,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -788,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1807,6 +1808,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3077,6 +3079,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3551,6 +3554,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4456,6 +4460,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4836,6 +4841,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5140,6 +5146,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5373,6 +5380,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6020,6 +6028,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6072,6 +6081,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
"monad-memo" = dontDistribute super."monad-memo";
@ -6258,6 +6268,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6714,6 +6725,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7167,6 +7179,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7667,6 +7680,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -7916,6 +7930,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8112,6 +8127,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
"stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@ -8330,6 +8346,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -789,6 +789,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1814,6 +1815,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3092,6 +3094,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3573,6 +3576,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4479,6 +4483,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4860,6 +4865,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5167,6 +5173,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5402,6 +5409,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6051,6 +6059,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6103,6 +6112,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@ -6289,6 +6299,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6750,6 +6761,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7205,6 +7217,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7709,6 +7722,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -7959,6 +7973,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8383,6 +8398,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -789,6 +789,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1814,6 +1815,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3092,6 +3094,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3573,6 +3576,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4479,6 +4483,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4860,6 +4865,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5167,6 +5173,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5402,6 +5409,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6051,6 +6059,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6103,6 +6112,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@ -6289,6 +6299,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6749,6 +6760,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7204,6 +7216,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7707,6 +7720,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -7957,6 +7971,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8381,6 +8396,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -789,6 +789,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1814,6 +1815,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3091,6 +3093,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3572,6 +3575,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4478,6 +4482,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4859,6 +4864,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5166,6 +5172,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5401,6 +5408,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6050,6 +6058,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6102,6 +6111,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@ -6288,6 +6298,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6748,6 +6759,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7203,6 +7215,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7706,6 +7719,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -7956,6 +7970,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8380,6 +8395,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -789,6 +789,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1812,6 +1813,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3089,6 +3091,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3570,6 +3573,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4475,6 +4479,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4856,6 +4861,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5163,6 +5169,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5398,6 +5405,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6047,6 +6055,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6099,6 +6108,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@ -6285,6 +6295,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6744,6 +6755,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7199,6 +7211,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7702,6 +7715,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -7952,6 +7966,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8376,6 +8391,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -789,6 +789,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1812,6 +1813,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3089,6 +3091,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3570,6 +3573,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4475,6 +4479,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4856,6 +4861,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5163,6 +5169,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5398,6 +5405,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6047,6 +6055,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6099,6 +6108,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@ -6286,6 +6296,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6745,6 +6756,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7200,6 +7212,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7703,6 +7716,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -7953,6 +7967,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8377,6 +8392,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -788,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1811,6 +1812,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3088,6 +3090,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3568,6 +3571,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4473,6 +4477,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4854,6 +4859,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5161,6 +5167,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5396,6 +5403,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6045,6 +6053,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6097,6 +6106,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@ -6284,6 +6294,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6743,6 +6754,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7198,6 +7210,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7700,6 +7713,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -7950,6 +7964,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8371,6 +8386,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

View file

@ -788,6 +788,7 @@ self: super: {
"PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
"PasswordGenerator" = dontDistribute super."PasswordGenerator";
"PastePipe" = dontDistribute super."PastePipe";
"PathTree" = dontDistribute super."PathTree";
"Pathfinder" = dontDistribute super."Pathfinder";
"Peano" = dontDistribute super."Peano";
"PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
@ -1809,6 +1810,7 @@ self: super: {
"blink1" = dontDistribute super."blink1";
"blip" = dontDistribute super."blip";
"bliplib" = dontDistribute super."bliplib";
"blockhash" = dontDistribute super."blockhash";
"blocking-transactions" = dontDistribute super."blocking-transactions";
"blogination" = dontDistribute super."blogination";
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
@ -3085,6 +3087,7 @@ self: super: {
"enummapset" = dontDistribute super."enummapset";
"enummapset-th" = dontDistribute super."enummapset-th";
"enumset" = dontDistribute super."enumset";
"env-locale" = dontDistribute super."env-locale";
"env-parser" = dontDistribute super."env-parser";
"envelope" = dontDistribute super."envelope";
"envparse" = dontDistribute super."envparse";
@ -3564,6 +3567,7 @@ self: super: {
"genvalidity" = dontDistribute super."genvalidity";
"genvalidity-containers" = dontDistribute super."genvalidity-containers";
"genvalidity-hspec" = dontDistribute super."genvalidity-hspec";
"genvalidity-text" = dontDistribute super."genvalidity-text";
"geo-resolver" = dontDistribute super."geo-resolver";
"geo-uk" = dontDistribute super."geo-uk";
"geocalc" = dontDistribute super."geocalc";
@ -4469,6 +4473,7 @@ self: super: {
"hgen" = dontDistribute super."hgen";
"hgeometric" = dontDistribute super."hgeometric";
"hgeometry" = dontDistribute super."hgeometry";
"hgeos" = dontDistribute super."hgeos";
"hgettext" = dontDistribute super."hgettext";
"hgithub" = dontDistribute super."hgithub";
"hgl-example" = dontDistribute super."hgl-example";
@ -4850,6 +4855,7 @@ self: super: {
"hspec-slow" = dontDistribute super."hspec-slow";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
"hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun";
"hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
"hspec-test-framework" = dontDistribute super."hspec-test-framework";
"hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
@ -5156,6 +5162,7 @@ self: super: {
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
"ini" = doDistribute super."ini_0_3_1";
"ini-qq" = dontDistribute super."ini-qq";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@ -5391,6 +5398,7 @@ self: super: {
"katip" = dontDistribute super."katip";
"katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
"katt" = dontDistribute super."katt";
"kawhi" = dontDistribute super."kawhi";
"kazura-queue" = dontDistribute super."kazura-queue";
"kbq-gu" = dontDistribute super."kbq-gu";
"kd-tree" = dontDistribute super."kd-tree";
@ -6039,6 +6047,7 @@ self: super: {
"miniutter" = dontDistribute super."miniutter";
"minlen" = dontDistribute super."minlen";
"minst-idx" = dontDistribute super."minst-idx";
"mios" = dontDistribute super."mios";
"mirror-tweet" = dontDistribute super."mirror-tweet";
"misfortune" = dontDistribute super."misfortune";
"missing-py2" = dontDistribute super."missing-py2";
@ -6091,6 +6100,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@ -6278,6 +6288,7 @@ self: super: {
"namelist" = dontDistribute super."namelist";
"names" = dontDistribute super."names";
"names-th" = dontDistribute super."names-th";
"namespace" = dontDistribute super."namespace";
"nano-cryptr" = dontDistribute super."nano-cryptr";
"nano-erl" = dontDistribute super."nano-erl";
"nano-hmac" = dontDistribute super."nano-hmac";
@ -6737,6 +6748,7 @@ self: super: {
"perdure" = dontDistribute super."perdure";
"perfecthash" = dontDistribute super."perfecthash";
"period" = dontDistribute super."period";
"periodic" = dontDistribute super."periodic";
"perm" = dontDistribute super."perm";
"permutation" = dontDistribute super."permutation";
"permute" = dontDistribute super."permute";
@ -7192,6 +7204,7 @@ self: super: {
"quickterm" = dontDistribute super."quickterm";
"quicktest" = dontDistribute super."quicktest";
"quickwebapp" = dontDistribute super."quickwebapp";
"quipper" = dontDistribute super."quipper";
"quiver" = dontDistribute super."quiver";
"quiver-binary" = dontDistribute super."quiver-binary";
"quiver-bytestring" = dontDistribute super."quiver-bytestring";
@ -7694,6 +7707,7 @@ self: super: {
"selinux" = dontDistribute super."selinux";
"semaphore-plus" = dontDistribute super."semaphore-plus";
"semi-iso" = dontDistribute super."semi-iso";
"semibounded-lattices" = dontDistribute super."semibounded-lattices";
"semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
"semigroupoids" = doDistribute super."semigroupoids_4_3";
"semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
@ -7944,6 +7958,7 @@ self: super: {
"smartconstructor" = dontDistribute super."smartconstructor";
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smerdyakov" = dontDistribute super."smerdyakov";
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
@ -8141,6 +8156,7 @@ self: super: {
"stackage" = doDistribute super."stackage_0_7_2_0";
"stackage-cabal" = dontDistribute super."stackage-cabal";
"stackage-curator" = doDistribute super."stackage-curator_0_7_4";
"stackage-install" = doDistribute super."stackage-install_0_1_1_1";
"stackage-metadata" = dontDistribute super."stackage-metadata";
"stackage-sandbox" = dontDistribute super."stackage-sandbox";
"stackage-setup" = dontDistribute super."stackage-setup";
@ -8361,6 +8377,7 @@ self: super: {
"system-info" = dontDistribute super."system-info";
"system-inotify" = dontDistribute super."system-inotify";
"system-lifted" = dontDistribute super."system-lifted";
"system-locale" = dontDistribute super."system-locale";
"system-random-effect" = dontDistribute super."system-random-effect";
"system-test" = dontDistribute super."system-test";
"system-time-monotonic" = dontDistribute super."system-time-monotonic";

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