Merge branch 'master' into staging
... to get the systemd update (rebuilding ~7k jobs).
This commit is contained in:
commit
81039713fa
3
.github/PULL_REQUEST_TEMPLATE.md
vendored
3
.github/PULL_REQUEST_TEMPLATE.md
vendored
@ -1,3 +1,6 @@
|
||||
###### Motivation for this change
|
||||
|
||||
|
||||
###### Things done
|
||||
|
||||
- [ ] Tested using sandboxing
|
||||
|
@ -46,10 +46,10 @@ $ export NIXPKGS_ALLOW_UNFREE=1
|
||||
allowUnfreePredicate = (pkg: ...);
|
||||
</programlisting>
|
||||
|
||||
Example to allow flash player only:
|
||||
Example to allow flash player and visual studio code only:
|
||||
|
||||
<programlisting>
|
||||
allowUnfreePredicate = (pkg: pkgs.lib.hasPrefix "flashplayer-" pkg.name);
|
||||
allowUnfreePredicate = with builtins; (pkg: elem (parseDrvName pkg.name).name [ "flashplayer" "vscode" ]);
|
||||
</programlisting>
|
||||
|
||||
</para>
|
||||
|
@ -24,7 +24,7 @@ rec {
|
||||
Example:
|
||||
concat = fold (a: b: a + b) "z"
|
||||
concat [ "a" "b" "c" ]
|
||||
=> "abcnul"
|
||||
=> "abcz"
|
||||
*/
|
||||
fold = op: nul: list:
|
||||
let
|
||||
|
@ -29,4 +29,30 @@ rec {
|
||||
in type == "directory" || lib.any (ext: lib.hasSuffix ext base) exts;
|
||||
in builtins.filterSource filter path;
|
||||
|
||||
# Get the commit id of a git repo
|
||||
# Example: commitIdFromGitRepo <nixpkgs/.git>
|
||||
commitIdFromGitRepo =
|
||||
let readCommitFromFile = path: file:
|
||||
with builtins;
|
||||
let fileName = toString path + "/" + file;
|
||||
packedRefsName = toString path + "/packed-refs";
|
||||
in if lib.pathExists fileName
|
||||
then
|
||||
let fileContent = readFile fileName;
|
||||
# Sometimes git stores the commitId directly in the file but
|
||||
# sometimes it stores something like: «ref: refs/heads/branch-name»
|
||||
matchRef = match "^ref: (.*)\n$" fileContent;
|
||||
in if isNull matchRef
|
||||
then lib.removeSuffix "\n" fileContent
|
||||
else readCommitFromFile path (lib.head matchRef)
|
||||
# Sometimes, the file isn't there at all and has been packed away in the
|
||||
# packed-refs file, so we have to grep through it:
|
||||
else if lib.pathExists packedRefsName
|
||||
then
|
||||
let packedRefs = lib.splitString "\n" (readFile packedRefsName);
|
||||
matchRule = match ("^(.*) " + file + "$");
|
||||
matchedRefs = lib.flatten (lib.filter (m: ! (isNull m)) (map matchRule packedRefs));
|
||||
in lib.head matchedRefs
|
||||
else throw ("Not a .git directory: " + path);
|
||||
in lib.flip readCommitFromFile "HEAD";
|
||||
}
|
||||
|
@ -114,13 +114,17 @@ rec {
|
||||
name = "list of ${elemType.name}s";
|
||||
check = isList;
|
||||
merge = loc: defs:
|
||||
map (x: x.value) (filter (x: x ? value) (concatLists (imap (n: def: imap (m: def':
|
||||
(mergeDefinitions
|
||||
(loc ++ ["[definition ${toString n}-entry ${toString m}]"])
|
||||
elemType
|
||||
[{ inherit (def) file; value = def'; }]
|
||||
).optionalValue
|
||||
) def.value) defs)));
|
||||
map (x: x.value) (filter (x: x ? value) (concatLists (imap (n: def:
|
||||
if isList def.value then
|
||||
imap (m: def':
|
||||
(mergeDefinitions
|
||||
(loc ++ ["[definition ${toString n}-entry ${toString m}]"])
|
||||
elemType
|
||||
[{ inherit (def) file; value = def'; }]
|
||||
).optionalValue
|
||||
) def.value
|
||||
else
|
||||
throw "The option value `${showOption loc}' in `${def.file}' is not a list.") defs)));
|
||||
getSubOptions = prefix: elemType.getSubOptions (prefix ++ ["*"]);
|
||||
getSubModules = elemType.getSubModules;
|
||||
substSubModules = m: listOf (elemType.substSubModules m);
|
||||
|
@ -9,21 +9,21 @@
|
||||
<para>NixOS supports file systems that are encrypted using
|
||||
<emphasis>LUKS</emphasis> (Linux Unified Key Setup). For example,
|
||||
here is how you create an encrypted Ext4 file system on the device
|
||||
<filename>/dev/sda2</filename>:
|
||||
<filename>/dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d</filename>:
|
||||
|
||||
<screen>
|
||||
$ cryptsetup luksFormat /dev/sda2
|
||||
$ cryptsetup luksFormat /dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d
|
||||
|
||||
WARNING!
|
||||
========
|
||||
This will overwrite data on /dev/sda2 irrevocably.
|
||||
This will overwrite data on /dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d irrevocably.
|
||||
|
||||
Are you sure? (Type uppercase yes): YES
|
||||
Enter LUKS passphrase: ***
|
||||
Verify passphrase: ***
|
||||
|
||||
$ cryptsetup luksOpen /dev/sda2 crypted
|
||||
Enter passphrase for /dev/sda2: ***
|
||||
$ cryptsetup luksOpen /dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d crypted
|
||||
Enter passphrase for /dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d: ***
|
||||
|
||||
$ mkfs.ext4 /dev/mapper/crypted
|
||||
</screen>
|
||||
@ -33,7 +33,7 @@ as <filename>/</filename>, add the following to
|
||||
<filename>configuration.nix</filename>:
|
||||
|
||||
<programlisting>
|
||||
boot.initrd.luks.devices = [ { device = "/dev/sda2"; name = "crypted"; } ];
|
||||
boot.initrd.luks.devices.crypted.device = "/dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d";
|
||||
fileSystems."/".device = "/dev/mapper/crypted";
|
||||
</programlisting>
|
||||
|
||||
|
@ -113,8 +113,8 @@
|
||||
<varlistentry>
|
||||
<term><option>--no-filesystems</option></term>
|
||||
<listitem>
|
||||
<para>Omit everything concerning file system information
|
||||
(which includes swap devices) from the hardware configuration.</para>
|
||||
<para>Omit everything concerning file systems and swap devices
|
||||
from the hardware configuration.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
|
@ -30,7 +30,10 @@ following incompatible changes:</para>
|
||||
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<para>todo</para>
|
||||
<para>Shell aliases for systemd sub-commands
|
||||
<link xlink:href="https://github.com/NixOS/nixpkgs/pull/15598">were dropped</link>:
|
||||
<command>start</command>, <command>stop</command>,
|
||||
<command>restart</command>, <command>status</command>.</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
|
@ -3,6 +3,7 @@ package Logger;
|
||||
use strict;
|
||||
use Thread::Queue;
|
||||
use XML::Writer;
|
||||
use Encode qw(decode encode);
|
||||
|
||||
sub new {
|
||||
my ($class) = @_;
|
||||
@ -56,7 +57,8 @@ sub nest {
|
||||
sub sanitise {
|
||||
my ($s) = @_;
|
||||
$s =~ s/[[:cntrl:]\xff]//g;
|
||||
return $s;
|
||||
$s = decode('UTF-8', $s, Encode::FB_DEFAULT);
|
||||
return encode('UTF-8', $s, Encode::FB_CROAK);
|
||||
}
|
||||
|
||||
sub log {
|
||||
|
@ -382,9 +382,17 @@ sub waitForUnit {
|
||||
my $state = $info->{ActiveState};
|
||||
die "unit ‘$unit’ reached state ‘$state’\n" if $state eq "failed";
|
||||
if ($state eq "inactive") {
|
||||
# If there are no pending jobs, then assume this unit
|
||||
# will never reach active state.
|
||||
my ($status, $jobs) = $self->execute("systemctl list-jobs --full 2>&1");
|
||||
die "unit ‘$unit’ is inactive and there are no pending jobs\n"
|
||||
if $jobs =~ /No jobs/; # FIXME: fragile
|
||||
if ($jobs =~ /No jobs/) { # FIXME: fragile
|
||||
# Handle the case where the unit may have started
|
||||
# between the previous getUnitInfo() and
|
||||
# list-jobs.
|
||||
my $info2 = $self->getUnitInfo($unit);
|
||||
die "unit ‘$unit’ is inactive and there are no pending jobs\n"
|
||||
if $info2->{ActiveState} eq $state;
|
||||
}
|
||||
}
|
||||
return 1 if $state eq "active";
|
||||
};
|
||||
|
@ -192,7 +192,7 @@ in
|
||||
system.activationScripts = mkIf insertLdapPassword {
|
||||
ldap = stringAfter [ "etc" "groups" "users" ] ''
|
||||
if test -f "${cfg.bind.password}" ; then
|
||||
echo "bindpw "$(cat ${cfg.bind.password})"" | cat ${ldapConfig} - > /etc/ldap.conf.bindpw
|
||||
echo "bindpw "$(cat ${cfg.bind.password})"" | cat ${ldapConfig.source} - > /etc/ldap.conf.bindpw
|
||||
mv -fT /etc/ldap.conf.bindpw /etc/ldap.conf
|
||||
chmod 600 /etc/ldap.conf
|
||||
fi
|
||||
|
@ -150,10 +150,6 @@ in
|
||||
|
||||
system.build.binsh = pkgs.bashInteractive;
|
||||
|
||||
# Ensure TERMINFO is set appropriately *before* user shells are run,
|
||||
# as they may depend on it
|
||||
environment.sessionVariables.TERMINFO = "/run/current-system/sw/share/terminfo";
|
||||
|
||||
# Set session variables in the shell as well. This is usually
|
||||
# unnecessary, but it allows changes to session variables to take
|
||||
# effect without restarting the session (e.g. by opening a new
|
||||
|
@ -79,7 +79,7 @@ let
|
||||
echo "options init=${config.system.build.toplevel}/init ${toString config.boot.kernelParams} nomodeset" >> $out/loader/entries/nixos-livecd-nomodeset.conf
|
||||
|
||||
echo "default nixos-livecd" > $out/loader/loader.conf
|
||||
echo "timeout ${builtins.toString config.boot.loader.gummiboot.timeout}" >> $out/loader/loader.conf
|
||||
echo "timeout ${builtins.toString config.boot.loader.timeout}" >> $out/loader/loader.conf
|
||||
'';
|
||||
|
||||
efiImg = pkgs.runCommand "efi-image_eltorito" { buildInputs = [ pkgs.mtools pkgs.libfaketime ]; }
|
||||
|
@ -1,5 +1,6 @@
|
||||
#! @perl@
|
||||
|
||||
use strict;
|
||||
use Cwd 'abs_path';
|
||||
use File::Spec;
|
||||
use File::Path;
|
||||
@ -69,6 +70,7 @@ for (my $n = 0; $n < scalar @ARGV; $n++) {
|
||||
my @attrs = ();
|
||||
my @kernelModules = ();
|
||||
my @initrdKernelModules = ();
|
||||
my @initrdAvailableKernelModules = ();
|
||||
my @modulePackages = ();
|
||||
my @imports;
|
||||
|
||||
@ -379,7 +381,7 @@ EOF
|
||||
# Is this a btrfs filesystem?
|
||||
if ($fsType eq "btrfs") {
|
||||
my ($status, @id_info) = runCommand("btrfs subvol show $rootDir$mountPoint");
|
||||
if ($status != 0 || join("", @msg) =~ /ERROR:/) {
|
||||
if ($status != 0 || join("", @id_info) =~ /ERROR:/) {
|
||||
die "Failed to retrieve subvolume info for $mountPoint\n";
|
||||
}
|
||||
my @ids = join("", @id_info) =~ m/Subvolume ID:[ \t\n]*([^ \t\n]*)/;
|
||||
@ -408,7 +410,7 @@ EOF
|
||||
EOF
|
||||
|
||||
if (scalar @extraOptions > 0) {
|
||||
$fileSystems .= <<EOF;
|
||||
$fileSystems .= <<EOF;
|
||||
options = \[ ${\join " ", map { "\"" . $_ . "\"" } uniq(@extraOptions)} \];
|
||||
EOF
|
||||
}
|
||||
@ -417,6 +419,25 @@ EOF
|
||||
};
|
||||
|
||||
EOF
|
||||
|
||||
# If this filesystem is on a LUKS device, then add a
|
||||
# boot.initrd.luks.devices entry.
|
||||
if (-e $device) {
|
||||
my $deviceName = basename(abs_path($device));
|
||||
if (-e "/sys/class/block/$deviceName"
|
||||
&& read_file("/sys/class/block/$deviceName/dm/uuid", err_mode => 'quiet') =~ /^CRYPT-LUKS/)
|
||||
{
|
||||
my @slaves = glob("/sys/class/block/$deviceName/slaves/*");
|
||||
if (scalar @slaves == 1) {
|
||||
my $slave = "/dev/" . basename($slaves[0]);
|
||||
if (-e $slave) {
|
||||
my $dmName = read_file("/sys/class/block/$deviceName/dm/name");
|
||||
chomp $dmName;
|
||||
$fileSystems .= " boot.initrd.luks.devices.\"$dmName\".device = \"${\(findStableDevPath $slave)}\";\n\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -440,7 +461,7 @@ sub toNixList {
|
||||
sub multiLineList {
|
||||
my $indent = shift;
|
||||
return " [ ]" if !@_;
|
||||
$res = "\n${indent}[ ";
|
||||
my $res = "\n${indent}[ ";
|
||||
my $first = 1;
|
||||
foreach my $s (@_) {
|
||||
$res .= "$indent " if !$first;
|
||||
@ -457,7 +478,7 @@ my $modulePackages = toNixList(uniq @modulePackages);
|
||||
|
||||
my $fsAndSwap = "";
|
||||
if (!$noFilesystems) {
|
||||
$fsAndSwap = "\n${fileSystems} ";
|
||||
$fsAndSwap = "\n$fileSystems ";
|
||||
$fsAndSwap .= "swapDevices =" . multiLineList(" ", @swapDevices) . ";\n";
|
||||
}
|
||||
|
||||
@ -494,7 +515,7 @@ if ($showHardwareConfig) {
|
||||
if ($force || ! -e $fn) {
|
||||
print STDERR "writing $fn...\n";
|
||||
|
||||
my $bootloaderConfig = "";
|
||||
my $bootLoaderConfig = "";
|
||||
if (-e "/sys/firmware/efi/efivars") {
|
||||
$bootLoaderConfig = <<EOF;
|
||||
# Use the gummiboot efi boot loader.
|
||||
@ -568,7 +589,7 @@ $bootLoaderConfig
|
||||
# };
|
||||
|
||||
# The NixOS release to be compatible with for stateful data such as databases.
|
||||
system.stateVersion = "@nixosRelease@";
|
||||
system.stateVersion = "${\(qw(@nixosRelease@))}";
|
||||
|
||||
}
|
||||
EOF
|
||||
|
@ -267,6 +267,7 @@
|
||||
graylog = 243;
|
||||
sniproxy = 244;
|
||||
nzbget = 245;
|
||||
mosquitto = 246;
|
||||
|
||||
# When adding a uid, make sure it doesn't match an existing gid. And don't use uids above 399!
|
||||
|
||||
@ -504,6 +505,7 @@
|
||||
emby = 242;
|
||||
sniproxy = 244;
|
||||
nzbget = 245;
|
||||
mosquitto = 246;
|
||||
|
||||
# When adding a gid, make sure it doesn't match an existing
|
||||
# uid. Users and groups with the same name should have equal
|
||||
|
@ -5,9 +5,11 @@ with lib;
|
||||
let
|
||||
cfg = config.system;
|
||||
|
||||
releaseFile = "${toString pkgs.path}/.version";
|
||||
suffixFile = "${toString pkgs.path}/.version-suffix";
|
||||
releaseFile = "${toString pkgs.path}/.version";
|
||||
suffixFile = "${toString pkgs.path}/.version-suffix";
|
||||
revisionFile = "${toString pkgs.path}/.git-revision";
|
||||
gitRepo = "${toString pkgs.path}/.git";
|
||||
gitCommitId = lib.substring 0 7 (commitIdFromGitRepo gitRepo);
|
||||
in
|
||||
|
||||
{
|
||||
@ -102,6 +104,8 @@ in
|
||||
# changing them would not rebuild the manual
|
||||
nixosLabel = mkDefault (maybeEnv "NIXOS_LABEL" cfg.nixosVersion);
|
||||
nixosVersion = mkDefault (maybeEnv "NIXOS_VERSION" (cfg.nixosRelease + cfg.nixosVersionSuffix));
|
||||
nixosRevision = mkIf (pathExists gitRepo) (mkDefault gitCommitId);
|
||||
nixosVersionSuffix = mkIf (pathExists gitRepo) (mkDefault (".git." + gitCommitId));
|
||||
|
||||
# Note: code names must only increase in alphabetical order.
|
||||
nixosCodeName = "Flounder";
|
||||
|
@ -347,6 +347,7 @@
|
||||
./services/networking/mjpg-streamer.nix
|
||||
./services/networking/minidlna.nix
|
||||
./services/networking/miniupnpd.nix
|
||||
./services/networking/mosquitto.nix
|
||||
./services/networking/mstpd.nix
|
||||
./services/networking/murmur.nix
|
||||
./services/networking/namecoind.nix
|
||||
|
@ -19,7 +19,7 @@ with lib;
|
||||
|
||||
config = mkIf config.programs.man.enable {
|
||||
|
||||
environment.systemPackages = [ pkgs.man ];
|
||||
environment.systemPackages = [ pkgs.man-db ];
|
||||
|
||||
environment.pathsToLink = [ "/share/man" ];
|
||||
|
||||
|
@ -34,6 +34,8 @@ with lib;
|
||||
# Old Grub-related options.
|
||||
(mkRenamedOptionModule [ "boot" "initrd" "extraKernelModules" ] [ "boot" "initrd" "kernelModules" ])
|
||||
(mkRenamedOptionModule [ "boot" "extraKernelParams" ] [ "boot" "kernelParams" ])
|
||||
(mkRenamedOptionModule [ "boot" "loader" "grub" "timeout" ] [ "boot" "loader" "timeout" ])
|
||||
(mkRenamedOptionModule [ "boot" "loader" "gummiboot" "timeout" ] [ "boot" "loader" "timeout" ])
|
||||
|
||||
# smartd
|
||||
(mkRenamedOptionModule [ "services" "smartd" "deviceOpts" ] [ "services" "smartd" "defaults" "monitored" ])
|
||||
|
@ -96,7 +96,7 @@ in
|
||||
}:
|
||||
|
||||
''
|
||||
if ! source=${if source != "" then source else "$(PATH=$SETUID_PATH type -tP ${program})"}; then
|
||||
if ! source=${if source != "" then source else "$(readlink -f $(PATH=$SETUID_PATH type -tP ${program}))"}; then
|
||||
# If we can't find the program, fall back to the
|
||||
# system profile.
|
||||
source=/nix/var/nix/profiles/default/bin/${program}
|
||||
|
@ -107,7 +107,16 @@ in {
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
wants = [ "network.target" ];
|
||||
after = [ "network.target" ];
|
||||
preStart = "mkdir -p /var/spool";
|
||||
preStart = ''
|
||||
mkdir -p /var/spool/smtpd
|
||||
|
||||
mkdir -p /var/spool/smtpd/offline
|
||||
chown root.smtpq /var/spool/smtpd/offline
|
||||
chmod 770 /var/spool/smtpd/offline
|
||||
|
||||
mkdir -p /var/spool/smtpd/purge
|
||||
chmod 700 /var/spool/smtpd/purge
|
||||
'';
|
||||
serviceConfig.ExecStart = "${opensmtpd}/sbin/smtpd -d -f ${conf} ${args}";
|
||||
environment.OPENSMTPD_PROC_PATH = "${procEnv}/libexec/opensmtpd";
|
||||
};
|
||||
|
@ -64,7 +64,7 @@ in
|
||||
|
||||
###### implementation
|
||||
|
||||
config = mkIf config.services.chrony.enable {
|
||||
config = mkIf cfg.enable {
|
||||
|
||||
# Make chronyc available in the system path
|
||||
environment.systemPackages = [ pkgs.chrony ];
|
||||
@ -101,12 +101,14 @@ in
|
||||
home = stateDir;
|
||||
};
|
||||
|
||||
systemd.services.ntpd.enable = false;
|
||||
systemd.services.ntpd.enable = mkForce false;
|
||||
|
||||
systemd.services.chronyd =
|
||||
{ description = "chrony NTP daemon";
|
||||
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
wants = [ "time-sync.target" ];
|
||||
before = [ "time-sync.target" ];
|
||||
after = [ "network.target" ];
|
||||
conflicts = [ "ntpd.service" "systemd-timesyncd.service" ];
|
||||
|
||||
|
@ -90,7 +90,7 @@ in
|
||||
example = literalExample "${pkgs.dnscrypt-proxy}/share/dnscrypt-proxy/dnscrypt-resolvers.csv";
|
||||
default = pkgs.fetchurl {
|
||||
url = "https://raw.githubusercontent.com/jedisct1/dnscrypt-proxy/master/dnscrypt-resolvers.csv";
|
||||
sha256 = "07kbbisrvrqdxif3061hxj3whin3llg4nh50ln7prisi2vbd76xd";
|
||||
sha256 = "0lac20qhcgjxxiiz8jzcn3hkqj4ywl58hahp5n2i6vf9akfyqp7c";
|
||||
};
|
||||
defaultText = "pkgs.fetchurl { url = ...; sha256 = ...; }";
|
||||
};
|
||||
|
219
nixos/modules/services/networking/mosquitto.nix
Normal file
219
nixos/modules/services/networking/mosquitto.nix
Normal file
@ -0,0 +1,219 @@
|
||||
{ config, lib, pkgs, ...}:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
cfg = config.services.mosquitto;
|
||||
|
||||
listenerConf = optionalString cfg.ssl.enable ''
|
||||
listener ${toString cfg.ssl.port} ${cfg.ssl.host}
|
||||
cafile ${cfg.ssl.cafile}
|
||||
certfile ${cfg.ssl.certfile}
|
||||
keyfile ${cfg.ssl.keyfile}
|
||||
'';
|
||||
|
||||
mosquittoConf = pkgs.writeText "mosquitto.conf" ''
|
||||
pid_file /run/mosquitto/pid
|
||||
acl_file ${aclFile}
|
||||
persistence true
|
||||
allow_anonymous ${if cfg.allowAnonymous then "true" else "false"}
|
||||
bind_address ${cfg.host}
|
||||
port ${toString cfg.port}
|
||||
${listenerConf}
|
||||
${cfg.extraConf}
|
||||
'';
|
||||
|
||||
userAcl = (concatStringsSep "\n\n" (mapAttrsToList (n: c:
|
||||
"user ${n}\n" + (concatStringsSep "\n" c.acl)) cfg.users
|
||||
));
|
||||
|
||||
aclFile = pkgs.writeText "mosquitto.acl" ''
|
||||
${cfg.aclExtraConf}
|
||||
${userAcl}
|
||||
'';
|
||||
|
||||
in
|
||||
|
||||
{
|
||||
|
||||
###### Interface
|
||||
|
||||
options = {
|
||||
services.mosquitto = {
|
||||
enable = mkEnableOption "Enable the MQTT Mosquitto broker.";
|
||||
|
||||
host = mkOption {
|
||||
default = "127.0.0.1";
|
||||
example = "0.0.0.0";
|
||||
type = types.string;
|
||||
description = ''
|
||||
Host to listen on without SSL.
|
||||
'';
|
||||
};
|
||||
|
||||
port = mkOption {
|
||||
default = 1883;
|
||||
example = 1883;
|
||||
type = types.int;
|
||||
description = ''
|
||||
Port on which to listen without SSL.
|
||||
'';
|
||||
};
|
||||
|
||||
ssl = {
|
||||
enable = mkEnableOption "Enable SSL listener.";
|
||||
|
||||
cafile = mkOption {
|
||||
type = types.nullOr types.path;
|
||||
default = null;
|
||||
description = "Path to PEM encoded CA certificates.";
|
||||
};
|
||||
|
||||
certfile = mkOption {
|
||||
type = types.nullOr types.path;
|
||||
default = null;
|
||||
description = "Path to PEM encoded server certificate.";
|
||||
};
|
||||
|
||||
keyfile = mkOption {
|
||||
type = types.nullOr types.path;
|
||||
default = null;
|
||||
description = "Path to PEM encoded server key.";
|
||||
};
|
||||
|
||||
host = mkOption {
|
||||
default = "0.0.0.0";
|
||||
example = "localhost";
|
||||
type = types.string;
|
||||
description = ''
|
||||
Host to listen on with SSL.
|
||||
'';
|
||||
};
|
||||
|
||||
port = mkOption {
|
||||
default = 8883;
|
||||
example = 8883;
|
||||
type = types.int;
|
||||
description = ''
|
||||
Port on which to listen with SSL.
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
dataDir = mkOption {
|
||||
default = "/var/lib/mosquitto";
|
||||
type = types.path;
|
||||
description = ''
|
||||
The data directory.
|
||||
'';
|
||||
};
|
||||
|
||||
users = mkOption {
|
||||
type = types.attrsOf (types.submodule {
|
||||
options = {
|
||||
password = mkOption {
|
||||
type = with types; uniq (nullOr str);
|
||||
default = null;
|
||||
description = ''
|
||||
Specifies the (clear text) password for the MQTT User.
|
||||
'';
|
||||
};
|
||||
|
||||
hashedPassword = mkOption {
|
||||
type = with types; uniq (nullOr str);
|
||||
default = null;
|
||||
description = ''
|
||||
Specifies the hashed password for the MQTT User.
|
||||
<option>hashedPassword</option> overrides <option>password</option>.
|
||||
To generate hashed password install <literal>mkpasswd</literal>
|
||||
package and run <literal>mkpasswd -m sha-512</literal>.
|
||||
'';
|
||||
};
|
||||
|
||||
acl = mkOption {
|
||||
type = types.listOf types.string;
|
||||
example = [ "topic read A/B" "topic A/#" ];
|
||||
description = ''
|
||||
Control client access to topics on the broker.
|
||||
'';
|
||||
};
|
||||
};
|
||||
});
|
||||
example = { john = { password = "123456"; acl = [ "topic readwrite john/#" ]; }; };
|
||||
description = ''
|
||||
A set of users and their passwords and ACLs.
|
||||
'';
|
||||
};
|
||||
|
||||
allowAnonymous = mkOption {
|
||||
default = false;
|
||||
example = true;
|
||||
type = types.bool;
|
||||
description = ''
|
||||
Allow clients to connect without authentication.
|
||||
'';
|
||||
};
|
||||
|
||||
extraConf = mkOption {
|
||||
default = "";
|
||||
type = types.lines;
|
||||
description = ''
|
||||
Extra config to append to `mosquitto.conf` file.
|
||||
'';
|
||||
};
|
||||
|
||||
aclExtraConf = mkOption {
|
||||
default = "";
|
||||
type = types.lines;
|
||||
description = ''
|
||||
Extra config to prepend to the ACL file.
|
||||
'';
|
||||
};
|
||||
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
###### Implementation
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
|
||||
systemd.services.mosquitto = {
|
||||
description = "Mosquitto MQTT Broker Daemon";
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
after = [ "network.target" ];
|
||||
serviceConfig = {
|
||||
Type = "forking";
|
||||
User = "mosquitto";
|
||||
Group = "mosquitto";
|
||||
RuntimeDirectory = "mosquitto";
|
||||
WorkingDirectory = cfg.dataDir;
|
||||
Restart = "on-failure";
|
||||
ExecStart = "${pkgs.mosquitto}/bin/mosquitto -c ${mosquittoConf} -d";
|
||||
ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
|
||||
PIDFile = "/run/mosquitto/pid";
|
||||
};
|
||||
preStart = ''
|
||||
rm -f ${cfg.dataDir}/passwd
|
||||
touch ${cfg.dataDir}/passwd
|
||||
'' + concatStringsSep "\n" (
|
||||
mapAttrsToList (n: c:
|
||||
if c.hashedPassword != null then
|
||||
"echo '${n}:${c.hashedPassword}' > ${cfg.dataDir}/passwd"
|
||||
else optionalString (c.password != null)
|
||||
"${pkgs.mosquitto}/bin/mosquitto_passwd -b ${cfg.dataDir}/passwd ${n} ${c.password}"
|
||||
) cfg.users);
|
||||
};
|
||||
|
||||
users.extraUsers.mosquitto = {
|
||||
description = "Mosquitto MQTT Broker Daemon owner";
|
||||
group = "mosquitto";
|
||||
uid = config.ids.uids.mosquitto;
|
||||
home = cfg.dataDir;
|
||||
createHome = true;
|
||||
};
|
||||
|
||||
users.extraGroups.mosquitto.gid = config.ids.gids.mosquitto;
|
||||
|
||||
};
|
||||
}
|
@ -82,6 +82,8 @@ in
|
||||
{ description = "NTP Daemon";
|
||||
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
wants = [ "time-sync.target" ];
|
||||
before = [ "time-sync.target" ];
|
||||
|
||||
preStart =
|
||||
''
|
||||
|
@ -64,7 +64,8 @@ in
|
||||
systemd.services.openntpd = {
|
||||
description = "OpenNTP Server";
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
wants = [ "network-online.target" ];
|
||||
wants = [ "network-online.target" "time-sync.target" ];
|
||||
before = [ "time-sync.target" ];
|
||||
after = [ "dnsmasq.service" "bind.service" "network-online.target" ];
|
||||
serviceConfig.ExecStart = "${package}/sbin/ntpd -d -f ${cfgFile} ${cfg.extraOptions}";
|
||||
};
|
||||
|
@ -102,7 +102,7 @@ in
|
||||
partOf = optional config.networking.firewall.enable "firewall.service";
|
||||
|
||||
restartTriggers = [ fail2banConf jailConf ];
|
||||
path = [ pkgs.fail2ban pkgs.iptables ];
|
||||
path = [ pkgs.fail2ban pkgs.iptables pkgs.iproute ];
|
||||
|
||||
preStart =
|
||||
''
|
||||
|
@ -32,6 +32,12 @@ let
|
||||
''
|
||||
#! ${pkgs.bash}/bin/bash
|
||||
|
||||
${optionalString cfg.displayManager.logToJournal ''
|
||||
if [ -z "$_DID_SYSTEMD_CAT" ]; then
|
||||
_DID_SYSTEMD_CAT=1 exec ${config.systemd.package}/bin/systemd-cat -t xsession -- "$0" "$1"
|
||||
fi
|
||||
''}
|
||||
|
||||
. /etc/profile
|
||||
cd "$HOME"
|
||||
|
||||
@ -39,7 +45,7 @@ let
|
||||
sessionType="$1"
|
||||
if [ "$sessionType" = default ]; then sessionType=""; fi
|
||||
|
||||
${optionalString (!cfg.displayManager.job.logsXsession) ''
|
||||
${optionalString (!cfg.displayManager.job.logsXsession && !cfg.displayManager.logToJournal) ''
|
||||
exec > ~/.xsession-errors 2>&1
|
||||
''}
|
||||
|
||||
@ -83,6 +89,8 @@ let
|
||||
# .local/share doesn't exist yet.
|
||||
mkdir -p $HOME/.local/share
|
||||
|
||||
unset _DID_SYSTEMD_CAT
|
||||
|
||||
${cfg.displayManager.sessionCommands}
|
||||
|
||||
# Allow the user to execute commands at the beginning of the X session.
|
||||
@ -278,6 +286,16 @@ in
|
||||
|
||||
};
|
||||
|
||||
logToJournal = mkOption {
|
||||
type = types.bool;
|
||||
default = true;
|
||||
description = ''
|
||||
By default, the stdout/stderr of sessions is written
|
||||
to <filename>~/.xsession-errors</filename>. When this option
|
||||
is enabled, it will instead be written to the journal.
|
||||
'';
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
};
|
||||
|
@ -139,7 +139,7 @@ in
|
||||
mkdir -m 0755 -p /var/lib/kdm
|
||||
chown kdm /var/lib/kdm
|
||||
${(optionalString (config.system.boot.loader.id == "grub" && config.system.build.grub != null) "PATH=${config.system.build.grub}/sbin:$PATH ") +
|
||||
"KDEDIRS=/run/current-system/sw exec ${kdebase_workspace}/bin/kdm -config ${kdmrc} -nodaemon"}
|
||||
"KDEDIRS=/run/current-system/sw exec ${kdebase_workspace}/bin/kdm -config ${kdmrc} -nodaemon -logfile /dev/stderr"}
|
||||
'';
|
||||
logsXsession = true;
|
||||
};
|
||||
|
@ -520,6 +520,7 @@ in
|
||||
serviceConfig = {
|
||||
Restart = "always";
|
||||
RestartSec = "200ms";
|
||||
SyslogIdentifier = "display-manager";
|
||||
};
|
||||
};
|
||||
|
||||
@ -527,10 +528,11 @@ in
|
||||
[ "-terminate"
|
||||
"-config ${configFile}"
|
||||
"-xkbdir" "${cfg.xkbDir}"
|
||||
# Log at the default verbosity level to stderr rather than /var/log/X.*.log.
|
||||
"-verbose" "3" "-logfile" "/dev/null"
|
||||
] ++ optional (cfg.display != null) ":${toString cfg.display}"
|
||||
++ optional (cfg.tty != null) "vt${toString cfg.tty}"
|
||||
++ optional (cfg.dpi != null) "-dpi ${toString cfg.dpi}"
|
||||
++ optionals (cfg.display != null) [ "-logfile" "/var/log/X.${toString cfg.display}.log" ]
|
||||
++ optional (!cfg.enableTCP) "-nolisten tcp";
|
||||
|
||||
services.xserver.modules =
|
||||
|
@ -48,12 +48,13 @@ let
|
||||
bootPath = args.path;
|
||||
storePath = config.boot.loader.grub.storePath;
|
||||
bootloaderId = if args.efiBootloaderId == null then "NixOS${efiSysMountPoint'}" else args.efiBootloaderId;
|
||||
timeout = if config.boot.loader.timeout == null then -1 else config.boot.loader.timeout;
|
||||
inherit efiSysMountPoint;
|
||||
inherit (args) devices;
|
||||
inherit (efi) canTouchEfiVariables;
|
||||
inherit (cfg)
|
||||
version extraConfig extraPerEntryConfig extraEntries
|
||||
extraEntriesBeforeNixOS extraPrepareConfig configurationLimit copyKernels timeout
|
||||
extraEntriesBeforeNixOS extraPrepareConfig configurationLimit copyKernels
|
||||
default fsIdentifier efiSupport gfxmodeEfi gfxmodeBios;
|
||||
path = (makeBinPath ([
|
||||
pkgs.coreutils pkgs.gnused pkgs.gnugrep pkgs.findutils pkgs.diffutils pkgs.btrfs-progs
|
||||
@ -313,14 +314,6 @@ in
|
||||
'';
|
||||
};
|
||||
|
||||
timeout = mkOption {
|
||||
default = if (config.boot.loader.timeout != null) then config.boot.loader.timeout else -1;
|
||||
type = types.int;
|
||||
description = ''
|
||||
Timeout (in seconds) until GRUB boots the default menu item.
|
||||
'';
|
||||
};
|
||||
|
||||
default = mkOption {
|
||||
default = 0;
|
||||
type = types.int;
|
||||
|
@ -16,7 +16,7 @@ let
|
||||
|
||||
nix = config.nix.package.out;
|
||||
|
||||
timeout = if cfg.timeout != null then cfg.timeout else "";
|
||||
timeout = if config.boot.loader.timeout != null then config.boot.loader.timeout else "";
|
||||
|
||||
inherit (efi) efiSysMountPoint canTouchEfiVariables;
|
||||
};
|
||||
@ -29,20 +29,6 @@ in {
|
||||
|
||||
description = "Whether to enable the gummiboot UEFI boot manager";
|
||||
};
|
||||
|
||||
timeout = mkOption {
|
||||
default = if config.boot.loader.timeout == null then 10000 else config.boot.loader.timeout;
|
||||
|
||||
example = 4;
|
||||
|
||||
type = types.nullOr types.int;
|
||||
|
||||
description = ''
|
||||
Timeout (in seconds) for how long to show the menu (null if none).
|
||||
Note that even with no timeout the menu can be forced if the space
|
||||
key is pressed during bootup
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
|
@ -5,7 +5,7 @@ with lib;
|
||||
let
|
||||
luks = config.boot.initrd.luks;
|
||||
|
||||
openCommand = { name, device, header, keyFile, keyFileSize, allowDiscards, yubikey, ... }: ''
|
||||
openCommand = name': { name, device, header, keyFile, keyFileSize, allowDiscards, yubikey, ... }: assert name' == name; ''
|
||||
# Wait for luksRoot to appear, e.g. if on a usb drive.
|
||||
# XXX: copied and adapted from stage-1-init.sh - should be
|
||||
# available as a function.
|
||||
@ -192,9 +192,8 @@ let
|
||||
''}
|
||||
'';
|
||||
|
||||
isPreLVM = f: f.preLVM;
|
||||
preLVM = filter isPreLVM luks.devices;
|
||||
postLVM = filter (f: !(isPreLVM f)) luks.devices;
|
||||
preLVM = filterAttrs (n: v: v.preLVM) luks.devices;
|
||||
postLVM = filterAttrs (n: v: !v.preLVM) luks.devices;
|
||||
|
||||
in
|
||||
{
|
||||
@ -228,31 +227,31 @@ in
|
||||
};
|
||||
|
||||
boot.initrd.luks.devices = mkOption {
|
||||
default = [ ];
|
||||
example = literalExample ''[ { name = "luksroot"; device = "/dev/sda3"; preLVM = true; } ]'';
|
||||
default = { };
|
||||
example = { "luksroot".device = "/dev/disk/by-uuid/430e9eff-d852-4f68-aa3b-2fa3599ebe08"; };
|
||||
description = ''
|
||||
The list of devices that should be decrypted using LUKS before trying to mount the
|
||||
root partition. This works for both LVM-over-LUKS and LUKS-over-LVM setups.
|
||||
|
||||
The devices are decrypted to the device mapper names defined.
|
||||
|
||||
Make sure that initrd has the crypto modules needed for decryption.
|
||||
The encrypted disk that should be opened before the root
|
||||
filesystem is mounted. Both LVM-over-LUKS and LUKS-over-LVM
|
||||
setups are sypported. The unencrypted devices can be accessed as
|
||||
<filename>/dev/mapper/<replaceable>name</replaceable></filename>.
|
||||
'';
|
||||
|
||||
type = types.listOf types.optionSet;
|
||||
type = types.loaOf types.optionSet;
|
||||
|
||||
options = {
|
||||
options = { name, ... }: { options = {
|
||||
|
||||
name = mkOption {
|
||||
visible = false;
|
||||
default = name;
|
||||
example = "luksroot";
|
||||
type = types.str;
|
||||
description = "Named to be used for the generated device in /dev/mapper.";
|
||||
description = "Name of the unencrypted device in <filename>/dev/mapper</filename>.";
|
||||
};
|
||||
|
||||
device = mkOption {
|
||||
example = "/dev/sda2";
|
||||
example = "/dev/disk/by-uuid/430e9eff-d852-4f68-aa3b-2fa3599ebe08";
|
||||
type = types.str;
|
||||
description = "Path of the underlying block device.";
|
||||
description = "Path of the underlying encrypted block device.";
|
||||
};
|
||||
|
||||
header = mkOption {
|
||||
@ -289,6 +288,7 @@ in
|
||||
'';
|
||||
};
|
||||
|
||||
# FIXME: get rid of this option.
|
||||
preLVM = mkOption {
|
||||
default = true;
|
||||
type = types.bool;
|
||||
@ -394,7 +394,7 @@ in
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
}; };
|
||||
};
|
||||
|
||||
boot.initrd.luks.yubikeySupport = mkOption {
|
||||
@ -408,7 +408,7 @@ in
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf (luks.devices != []) {
|
||||
config = mkIf (luks.devices != {}) {
|
||||
|
||||
# actually, sbp2 driver is the one enabling the DMA attack, but this needs to be tested
|
||||
boot.blacklistedKernelModules = optionals luks.mitigateDMAAttacks
|
||||
@ -463,8 +463,8 @@ in
|
||||
''}
|
||||
'';
|
||||
|
||||
boot.initrd.preLVMCommands = concatMapStrings openCommand preLVM;
|
||||
boot.initrd.postDeviceCommands = concatMapStrings openCommand postLVM;
|
||||
boot.initrd.preLVMCommands = concatStrings (mapAttrsToList openCommand preLVM);
|
||||
boot.initrd.postDeviceCommands = concatStrings (mapAttrsToList openCommand postLVM);
|
||||
|
||||
environment.systemPackages = [ pkgs.cryptsetup ];
|
||||
};
|
||||
|
@ -753,13 +753,6 @@ in
|
||||
"TMPFS_XATTR" "SECCOMP"
|
||||
];
|
||||
|
||||
environment.shellAliases =
|
||||
{ start = "systemctl start";
|
||||
stop = "systemctl stop";
|
||||
restart = "systemctl restart";
|
||||
status = "systemctl status";
|
||||
};
|
||||
|
||||
users.extraGroups.systemd-journal.gid = config.ids.gids.systemd-journal;
|
||||
users.extraUsers.systemd-journal-gateway.uid = config.ids.uids.systemd-journal-gateway;
|
||||
users.extraGroups.systemd-journal-gateway.gid = config.ids.gids.systemd-journal-gateway;
|
||||
|
@ -38,7 +38,7 @@ in
|
||||
description = "CPU Frequency Governor Setup";
|
||||
after = [ "systemd-modules-load.service" ];
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
path = [ cpupower ];
|
||||
path = [ cpupower config.system.sbin.modprobe ];
|
||||
unitConfig.ConditionVirtualization = false;
|
||||
serviceConfig = {
|
||||
Type = "oneshot";
|
||||
|
@ -113,6 +113,8 @@ let kernel = config.boot.kernelPackages.kernel; in
|
||||
# Make it easy to log in as root when running the test interactively.
|
||||
users.extraUsers.root.initialHashedPassword = mkOverride 150 "";
|
||||
|
||||
services.xserver.displayManager.logToJournal = true;
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
|
@ -32,8 +32,8 @@ let cfg = config.ec2; in
|
||||
# Generate a GRUB menu. Amazon's pv-grub uses this to boot our kernel/initrd.
|
||||
boot.loader.grub.version = if cfg.hvm then 2 else 1;
|
||||
boot.loader.grub.device = if cfg.hvm then "/dev/xvda" else "nodev";
|
||||
boot.loader.grub.timeout = 0;
|
||||
boot.loader.grub.extraPerEntryConfig = mkIf (!cfg.hvm) "root (hd0)";
|
||||
boot.loader.timeout = 0;
|
||||
|
||||
boot.initrd.postDeviceCommands =
|
||||
''
|
||||
|
@ -10,10 +10,10 @@ with lib;
|
||||
boot.kernelParams = [ "console=ttyS0" "earlyprintk=ttyS0" "rootdelay=300" "panic=1" "boot.panic_on_fail" ];
|
||||
boot.initrd.kernelModules = [ "hv_vmbus" "hv_netvsc" "hv_utils" "hv_storvsc" ];
|
||||
|
||||
# Generate a GRUB menu.
|
||||
# Generate a GRUB menu.
|
||||
boot.loader.grub.device = "/dev/sda";
|
||||
boot.loader.grub.version = 2;
|
||||
boot.loader.grub.timeout = 0;
|
||||
boot.loader.timeout = 0;
|
||||
|
||||
# Don't put old configurations in the GRUB menu. The user has no
|
||||
# way to select them anyway.
|
||||
|
@ -94,7 +94,7 @@ in
|
||||
|
||||
# Generate a GRUB menu. Amazon's pv-grub uses this to boot our kernel/initrd.
|
||||
boot.loader.grub.device = "/dev/vda";
|
||||
boot.loader.grub.timeout = 0;
|
||||
boot.loader.timeout = 0;
|
||||
|
||||
# Don't put old configurations in the GRUB menu. The user has no
|
||||
# way to select them anyway.
|
||||
|
@ -338,7 +338,7 @@ in
|
||||
fi
|
||||
''}
|
||||
|
||||
|
||||
rm -f $root/var/lib/private/host-notify
|
||||
|
||||
# Run systemd-nspawn without startup notification (we'll
|
||||
# wait for the container systemd to signal readiness).
|
||||
|
@ -102,7 +102,7 @@ in
|
||||
|
||||
# Generate a GRUB menu. Amazon's pv-grub uses this to boot our kernel/initrd.
|
||||
boot.loader.grub.device = "/dev/sda";
|
||||
boot.loader.grub.timeout = 0;
|
||||
boot.loader.timeout = 0;
|
||||
|
||||
# Don't put old configurations in the GRUB menu. The user has no
|
||||
# way to select them anyway.
|
||||
|
@ -27,7 +27,7 @@ with lib;
|
||||
|
||||
boot.kernelParams = [ "console=ttyS0" ];
|
||||
boot.loader.grub.device = "/dev/vda";
|
||||
boot.loader.grub.timeout = 0;
|
||||
boot.loader.timeout = 0;
|
||||
|
||||
# Allow root logins
|
||||
services.openssh.enable = true;
|
||||
|
@ -465,7 +465,7 @@ in
|
||||
});
|
||||
|
||||
swapDevices = mkVMOverride [ ];
|
||||
boot.initrd.luks.devices = mkVMOverride [];
|
||||
boot.initrd.luks.devices = mkVMOverride {};
|
||||
|
||||
# Don't run ntpd in the guest. It should get the correct time from KVM.
|
||||
services.ntp.enable = false;
|
||||
|
@ -69,6 +69,7 @@ in rec {
|
||||
(all nixos.tests.boot.uefiUsb)
|
||||
(all nixos.tests.boot-stage1)
|
||||
(all nixos.tests.ipv6)
|
||||
(all nixos.tests.i3wm)
|
||||
(all nixos.tests.kde4)
|
||||
#(all nixos.tests.lightdm)
|
||||
(all nixos.tests.login)
|
||||
|
@ -12,7 +12,6 @@ let
|
||||
modules =
|
||||
[ ../modules/installer/cd-dvd/installation-cd-minimal.nix
|
||||
../modules/testing/test-instrumentation.nix
|
||||
{ key = "serial"; }
|
||||
];
|
||||
}).config.system.build.isoImage;
|
||||
|
||||
@ -30,20 +29,25 @@ let
|
||||
'';
|
||||
};
|
||||
in {
|
||||
|
||||
biosCdrom = makeBootTest "bios-cdrom" ''
|
||||
cdrom => glob("${iso}/iso/*.iso")
|
||||
'';
|
||||
|
||||
biosUsb = makeBootTest "bios-usb" ''
|
||||
usb => glob("${iso}/iso/*.iso")
|
||||
'';
|
||||
|
||||
uefiCdrom = makeBootTest "uefi-cdrom" ''
|
||||
cdrom => glob("${iso}/iso/*.iso"),
|
||||
bios => '${pkgs.OVMF}/FV/OVMF.fd'
|
||||
'';
|
||||
|
||||
uefiUsb = makeBootTest "uefi-usb" ''
|
||||
usb => glob("${iso}/iso/*.iso"),
|
||||
bios => '${pkgs.OVMF}/FV/OVMF.fd'
|
||||
'';
|
||||
|
||||
netboot = let
|
||||
config = (import ../lib/eval-config.nix {
|
||||
inherit system;
|
||||
|
@ -360,14 +360,8 @@ in {
|
||||
"mount LABEL=boot /mnt/boot",
|
||||
);
|
||||
'';
|
||||
# XXX: Currently, generate-config doesn't detect LUKS yet.
|
||||
extraConfig = ''
|
||||
boot.kernelParams = lib.mkAfter [ "console=tty0" ];
|
||||
boot.initrd.luks.devices = lib.singleton {
|
||||
name = "cryptroot";
|
||||
device = "/dev/vda3";
|
||||
preLVM = true;
|
||||
};
|
||||
'';
|
||||
enableOCR = true;
|
||||
preBootCommands = ''
|
||||
@ -403,8 +397,6 @@ in {
|
||||
"mkdir /mnt/boot",
|
||||
"mount LABEL=boot /mnt/boot",
|
||||
"udevadm settle",
|
||||
"mdadm --verbose -W /dev/md0", # wait for sync to finish; booting off an unsynced device tends to fail
|
||||
"mdadm --verbose -W /dev/md1",
|
||||
);
|
||||
'';
|
||||
preBootCommands = ''
|
||||
|
@ -326,6 +326,7 @@ let
|
||||
in [ ./common/user-account.nix ./common/x11.nix ] ++ vmConfigs;
|
||||
virtualisation.memorySize = 2048;
|
||||
virtualisation.virtualbox.host.enable = true;
|
||||
services.xserver.displayManager.auto.user = "alice";
|
||||
users.extraUsers.alice.extraGroups = let
|
||||
inherit (config.virtualisation.virtualbox.host) enableHardening;
|
||||
in lib.mkIf enableHardening (lib.singleton "vboxusers");
|
||||
|
@ -1,20 +1,27 @@
|
||||
{ fetchurl, stdenv, libmp3splt, pkgconfig }:
|
||||
{ stdenv, fetchurl, pkgconfig, libmp3splt }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "mp3splt-2.6.1";
|
||||
pname = "mp3splt";
|
||||
version = "2.6.2";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://prdownloads.sourceforge.net/mp3splt/${name}.tar.gz";
|
||||
sha256 = "783a903fafbcf47f06673136a78b78d32a8e616a6ae06b79b459a32090dd14f7";
|
||||
url = "mirror://sourceforge/${pname}/${name}.tar.gz";
|
||||
sha256 = "1aiv20gypb6r84qabz8gblk8vi42cg3x333vk2pi3fyqvl82phry";
|
||||
};
|
||||
|
||||
buildInputs = [ libmp3splt pkgconfig ];
|
||||
configureFlags = [ "--enable-oggsplt-symlink" "--enable-flacsplt-symlink" ];
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ libmp3splt ];
|
||||
|
||||
meta = {
|
||||
description = "utility to split mp3, ogg vorbis and FLAC files without decoding";
|
||||
outputs = [ "out" "man" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Utility to split mp3, ogg vorbis and FLAC files without decoding";
|
||||
homepage = http://sourceforge.net/projects/mp3splt/;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
maintainers = [ stdenv.lib.maintainers.bosu ];
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.bosu ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{ stdenv, fetchFromGitHub, cmake, gettext, glib, libmsgpack, libtermkey
|
||||
, libtool, libuv, lpeg, lua, luajit, luaMessagePack, luabitop, man, ncurses
|
||||
, perl, pkgconfig, unibilium, makeWrapper, vimUtils
|
||||
, perl, pkgconfig, unibilium, makeWrapper, vimUtils, xsel
|
||||
|
||||
, withPython ? true, pythonPackages, extraPythonPackages ? []
|
||||
, withPython3 ? true, python3Packages, extraPython3Packages ? []
|
||||
@ -111,6 +111,7 @@ let
|
||||
install_name_tool -change libjemalloc.1.dylib \
|
||||
${jemalloc}/lib/libjemalloc.1.dylib \
|
||||
$out/bin/nvim
|
||||
sed -i -e "s|'xsel|'${xsel}/bin/xsel|" share/nvim/runtime/autoload/provider/clipboard.vim
|
||||
'' + optionalString withPython ''
|
||||
ln -s ${pythonEnv}/bin/python $out/bin/nvim-python
|
||||
'' + optionalString withPyGUI ''
|
||||
|
@ -1,27 +1,29 @@
|
||||
{ stdenv, fetchurl, pkgconfig, fltk, openexr, mesa, which, openexr_ctl }:
|
||||
{ stdenv, fetchurl, pkgconfig, fltk, openexr, mesa, openexr_ctl }:
|
||||
|
||||
assert fltk.glSupport;
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name ="openexr_viewers-1.0.1";
|
||||
name ="openexr_viewers-2.2.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://savannah/openexr/openexr_viewers-1.0.1.tar.gz";
|
||||
sha256 = "1w5qbcdp7sw48z1wk2v07f7p14vqqb1m2ncxyxnbkm9f4ab0ymg6";
|
||||
url = "mirror://savannah/openexr/openexr_viewers-2.2.0.tar.gz";
|
||||
sha256 = "1s84vnas12ybx8zz0jcmpfbk9m4ab5bg2d3cglqwk3wys7jf4gzp";
|
||||
};
|
||||
|
||||
configurePhase =
|
||||
''
|
||||
# don't know why.. adding these flags it works
|
||||
#export CXXFLAGS=`fltk-config --use-gl --cxxflags --ldflags`
|
||||
./configure --prefix=$out --with-fltk-config=${fltk}/bin/fltk-config
|
||||
'';
|
||||
configurePhase = ''
|
||||
./configure --prefix=$out --with-fltk-config=${fltk}/bin/fltk-config
|
||||
'';
|
||||
|
||||
buildInputs = [ openexr fltk pkgconfig mesa which openexr_ctl ];
|
||||
buildPahse = ''
|
||||
make LDFLAGS="`fltk-config --ldflags` -lGL -lfltk_gl"
|
||||
'';
|
||||
|
||||
buildInputs = [ openexr fltk pkgconfig mesa openexr_ctl ];
|
||||
|
||||
meta = {
|
||||
description = "Tool to view OpenEXR images";
|
||||
homepage = http://openexr.com;
|
||||
license = "BSD-like";
|
||||
description = "Application for viewing OpenEXR images on a display at various exposure settings";
|
||||
homepage = "http://openexr.com";
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
};
|
||||
}
|
||||
|
26
pkgs/applications/graphics/qscreenshot/default.nix
Normal file
26
pkgs/applications/graphics/qscreenshot/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ stdenv, fetchurl, dos2unix, which, qt }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "qscreenshot-1.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/qscreenshot/${name}-src.tar.gz";
|
||||
sha256 = "1spj5fg2l8p5bk81xsv6hqn1kcrdiy54w19jsfb7g5i94vcb1pcx";
|
||||
};
|
||||
|
||||
buildInputs = [ dos2unix which qt ];
|
||||
|
||||
# Remove carriage returns that cause /bin/sh to abort
|
||||
preConfigure = ''
|
||||
dos2unix configure
|
||||
sed -i "s|lrelease-qt4|lrelease|" src/src.pro
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Simple creation and editing of screenshots";
|
||||
homepage = https://sourceforge.net/projects/qscreenshot/;
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.all;
|
||||
maintainers = [ maintainers.bjornfor ];
|
||||
};
|
||||
}
|
41
pkgs/applications/graphics/shutter/default.nix
Normal file
41
pkgs/applications/graphics/shutter/default.nix
Normal file
@ -0,0 +1,41 @@
|
||||
{ stdenv, fetchurl, perl, perlPackages, makeWrapper, imagemagick, gdk_pixbuf, librsvg }:
|
||||
|
||||
let
|
||||
perlModules = with perlPackages;
|
||||
[ Gnome2 Gnome2Canvas Gtk2 Glib Pango Gnome2VFS Gnome2Wnck Gtk2ImageView
|
||||
Gtk2Unique FileWhich FileCopyRecursive XMLSimple NetDBus XMLTwig
|
||||
XMLParser HTTPMessage ProcSimple SortNaturally LocaleGettext
|
||||
ProcProcessTable URI ImageExifTool Gtk2AppIndicator LWPUserAgent JSON
|
||||
PerlMagick WWWMechanize HTTPDate HTMLForm HTMLParser HTMLTagset JSONXS
|
||||
CommonSense HTTPCookies NetOAuth PathClass GooCanvas X11Protocol Cairo
|
||||
];
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "shutter-0.93.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://shutter-project.org/wp-content/uploads/releases/tars/${name}.tar.gz";
|
||||
sha256 = "09cn3scwy98wqxkrjhnmxhpfnnynlbb41856yn5m3zwzqrxiyvak";
|
||||
};
|
||||
|
||||
buildInputs = [ perl makeWrapper gdk_pixbuf librsvg ] ++ perlModules;
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p "$out"
|
||||
cp -a . "$out"
|
||||
(cd "$out" && mv CHANGES README COPYING "$out/share/doc/shutter")
|
||||
|
||||
wrapProgram $out/bin/shutter \
|
||||
--set PERL5LIB "${stdenv.lib.makePerlPath perlModules}" \
|
||||
--prefix PATH : "${imagemagick}/bin" \
|
||||
--set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Screenshot and annotation tool";
|
||||
homepage = http://shutter-project.org/;
|
||||
license = licenses.gpl3Plus;
|
||||
platforms = platforms.all;
|
||||
maintainers = [ maintainers.bjornfor ];
|
||||
};
|
||||
}
|
@ -1,40 +1,37 @@
|
||||
{ stdenv, fetchurl, coreutils, unzip, which, pkgconfig, dbus
|
||||
, freetype, xdg_utils, libXext, glib, pango, cairo, libX11, libnotify
|
||||
, libxdg_basedir, libXScrnSaver, xproto, libXinerama, perl, gdk_pixbuf
|
||||
, dbus_daemon, makeWrapper
|
||||
{ stdenv, fetchFromGitHub
|
||||
, pkgconfig, which, perl
|
||||
, cairo, dbus, freetype, gdk_pixbuf, glib, libX11, libXScrnSaver
|
||||
, libXext, libXinerama, libnotify, libxdg_basedir, pango, xproto
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "dunst-1.1.0";
|
||||
name = "dunst-${version}";
|
||||
version = "1.1.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/knopwob/dunst/archive/v${version}.tar.gz";
|
||||
sha256 = "0x95f57s0a96c4lifxdpf73v706iggwmdw8742mabbjnxq55l1qs";
|
||||
src = fetchFromGitHub {
|
||||
owner = "knopwob";
|
||||
repo = "dunst";
|
||||
rev = "v${version}";
|
||||
sha256 = "102s0rkcdz22hnacsi3dhm7kj3lsw9gnikmh3a7wk862nkvvwjmk";
|
||||
};
|
||||
|
||||
buildInputs =
|
||||
[ coreutils unzip which pkgconfig dbus freetype libnotify gdk_pixbuf
|
||||
xdg_utils libXext glib pango cairo libX11 libxdg_basedir
|
||||
libXScrnSaver xproto libXinerama perl dbus_daemon makeWrapper ];
|
||||
nativeBuildInputs = [ perl pkgconfig which ];
|
||||
|
||||
buildPhase = ''
|
||||
export VERSION=${version};
|
||||
export PREFIX=$out;
|
||||
make dunst;
|
||||
'';
|
||||
buildInputs = [
|
||||
cairo dbus freetype gdk_pixbuf glib libX11 libXScrnSaver libXext
|
||||
libXinerama libnotify libxdg_basedir pango xproto
|
||||
];
|
||||
|
||||
postFixup = ''
|
||||
wrapProgram "$out/bin/dunst" \
|
||||
--prefix PATH : '${dbus_daemon.out}/bin'
|
||||
'';
|
||||
outputs = [ "out" "man" ];
|
||||
|
||||
meta = {
|
||||
description = "lightweight and customizable notification daemon";
|
||||
makeFlags = [ "PREFIX=$(out)" "VERSION=$(version)" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Lightweight and customizable notification daemon";
|
||||
homepage = http://www.knopwob.org/dunst/;
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
license = licenses.bsd3;
|
||||
# NOTE: 'unix' or even 'all' COULD work too, I'm not sure
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = [ stdenv.lib.maintainers.domenkozar ];
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.domenkozar ];
|
||||
};
|
||||
}
|
||||
|
@ -4,189 +4,189 @@
|
||||
# ruby generate_sources.rb 46.0.1 > sources.nix
|
||||
|
||||
{
|
||||
version = "47.0b5";
|
||||
version = "47.0b8";
|
||||
sources = [
|
||||
{ locale = "ach"; arch = "linux-i686"; sha512 = "98b283db66cd5d66a8fb74cab768526af7751eb3a2353791dbc8c40100be43753cf977262f5257fe55d7e42160600055209fc77b0ab5ce6893e393e273f0a961"; }
|
||||
{ locale = "ach"; arch = "linux-x86_64"; sha512 = "f931442f88a1d624e194732b4e8b0ce09cae2648a70cad658fa9439f0f69f66d1303236a110e8a9bd64f0034eb6adcc89313ec116624fb3e8d557ee387d2e5ef"; }
|
||||
{ locale = "af"; arch = "linux-i686"; sha512 = "f45f3644c0e6f51e5f88747e6f4c9b6123a40f112dd3768471838c68f8fdb42c729351d6eaa6768b5a7dcb30c1145545bee03c981eb7f271cd42ad7d526b7d74"; }
|
||||
{ locale = "af"; arch = "linux-x86_64"; sha512 = "a48c2e8de38c0f06d51b701eeb8dd4e68973e9601acdb879bc63bf375fdd08412408abd98bface2651dd86a86812ede0fb5ae9981de484afc0657f622428d720"; }
|
||||
{ locale = "an"; arch = "linux-i686"; sha512 = "d0de5de0d84f30b9b4a7e0aaf697bb543a2c0d3e7118a4f963b059a99433fe72d3497526c66102a64600585e3a97243918f91ea08f9e1c189670ac2cb5f7f695"; }
|
||||
{ locale = "an"; arch = "linux-x86_64"; sha512 = "4ad8f425043259bb1ead7c5cf2bafda8d87dfb8e544e6335c9a36c9096f32919e65a28c2f33e87584d53cccaf26c22ebc45657b7e9055876bb19698fb3fe4bd2"; }
|
||||
{ locale = "ar"; arch = "linux-i686"; sha512 = "b34739502ee0e18a8d2e97f4af694cb5aa71bba530915bf18a7488260163d720cb8df07197e46a75081f34a956e586e64fa7b999505a6b32c47010e2b5c6bb8b"; }
|
||||
{ locale = "ar"; arch = "linux-x86_64"; sha512 = "4ded69d272fbebac790dc16b7ebec5d9ee42a71a852f069141d95b423ee3d544839b9b852ede8c2a70e1a90aaf991821f2f51107c749af14e5197aaa747d9657"; }
|
||||
{ locale = "as"; arch = "linux-i686"; sha512 = "54d09a607b608fb1983ad9990a870f422d90d626f91d691a420ce691a904abda0e3539d156fa218a8d0259144a5d6c4da2b4d855f4103bde996bc887b40b6847"; }
|
||||
{ locale = "as"; arch = "linux-x86_64"; sha512 = "19d425bbf52a4c621a61c2fc6dfb88693b90d0705707ae40804c93871f12b22e67dcca0400cb65565e3f4e135c29de14eb581ede6cf204cc8384381267767d56"; }
|
||||
{ locale = "ast"; arch = "linux-i686"; sha512 = "bfdadb27f446b63fa5679731f188bf1a9c59d3efa5371cbc9944ee50de13e2d9ee741faf32a2d340568d6537067b394248245bc0fa426e08c5cfa91b788332fd"; }
|
||||
{ locale = "ast"; arch = "linux-x86_64"; sha512 = "0a4563494a2bfee6aba79a1212c011dc223f0567c5baa106b7af057e697eddbf90fb418cbe2f42d7df6ed183481375a33604275ed256802960f81992851a6354"; }
|
||||
{ locale = "az"; arch = "linux-i686"; sha512 = "d5311c69962d07fb3a2d95dcc0edefe74d59c484d5b61df5efeee46a40afa19a1f2707345f0834c7510e82e8f3f09dfda2fd1c1dad8980fbf02a177bbd58ec7a"; }
|
||||
{ locale = "az"; arch = "linux-x86_64"; sha512 = "071e8a37ca66c113d152f676da4e39de17bd2d28339d036d300b31f7ff8b09f052adac376f858bfe74976c905ab685fa3fa14387359af7456738727d51efc6cb"; }
|
||||
{ locale = "be"; arch = "linux-i686"; sha512 = "fc073297a8363776a6db25b9ea197d5732010c4c9d26726bb655256caae902b7fde05003c28e727cb1728282c7ba22151b554862d0c2aedc4ba483e1291159aa"; }
|
||||
{ locale = "be"; arch = "linux-x86_64"; sha512 = "e2cd3d493dea9e97523dcfb3dedee7ba0c9f6fe6c21e484ac673922090a56a1725eeb278d2c5186a544af4502a74a6d26a02ecad43e39038a7bed5fa0776151a"; }
|
||||
{ locale = "bg"; arch = "linux-i686"; sha512 = "02a0bb4e22d70fc6ffd26cbd1633c7834cc47e0b6b6ac48ca315440e93a8a1eea88fbce0e9f21053da2d65ea715270a84790db597857627b742134929df493c9"; }
|
||||
{ locale = "bg"; arch = "linux-x86_64"; sha512 = "e7c23fca63fda9cfba5c3c70d48a39f7517e0852df213c122db0f2b9ddb5546633f0ad1d8ecf57832cd4396f7f36f0a2b95c44a53ddfa42cee9502de36a27405"; }
|
||||
{ locale = "bn-BD"; arch = "linux-i686"; sha512 = "fcb750a8f297b611b5885f074285644d38a7ffd5cc44e34a9f416edcb7bfad1cb61c58947815ccc882adb349862c8de6a7c67637c257598e9aec2700c34ef4f1"; }
|
||||
{ locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "8c08859d299ced430dcaf3ce2070608f0384ac2fabb42f3acb55e0015a7179906317f0fba051953207021087fb2fbef38e89d1b924d1bb8fc8a32933354353f6"; }
|
||||
{ locale = "bn-IN"; arch = "linux-i686"; sha512 = "e9b0a786571711d278e94e94887b7064f5168b3e57b177d519b847014792fdaafbacf5cfde6d4340309beabede605b719b9a1a58f30ae7f1d11fefbfcd56f6d3"; }
|
||||
{ locale = "bn-IN"; arch = "linux-x86_64"; sha512 = "64e9aa733c14eb31ae8e60b01975c6605b8a01fcdfe2018ec8b395472aff13135a40fb1b664fad6a159eaa809fa56f087d81139b622e58e4d879ae1b7800cf7b"; }
|
||||
{ locale = "br"; arch = "linux-i686"; sha512 = "34423736e3fd774da60984ffd9a99254bc5bb1ce49ce2f88e299e11aa8c7b7d5e8789b76222300d9e87a50cb25764f4705b1664b178149edaecd5f1d25abb3c4"; }
|
||||
{ locale = "br"; arch = "linux-x86_64"; sha512 = "3ccc90fc5118aac8b89194298e376ce90013dd9b4155ef604ac0e39c6fd886dc7397eb332c8370d79a85775b5224c98edd83df2f4bd8f18d0c22e26e307a3f00"; }
|
||||
{ locale = "bs"; arch = "linux-i686"; sha512 = "040c5b200f17f9f1c36b6395e99b531e6509569b8aeaaabe326813a08a19c2d7e911d8cf977eeab3c660738e45a5d56a0d16bb1f0085c72fde95984c8f965e8b"; }
|
||||
{ locale = "bs"; arch = "linux-x86_64"; sha512 = "d0f808f888dd83cc9811f0a85a062fe4ed8b3ba26d2c9819fdb1c91124ad35a00425a92439a91da2b94dda253dccbcd6be51a620e8a1ad0a2b485e14a96db6b7"; }
|
||||
{ locale = "ca"; arch = "linux-i686"; sha512 = "8c8bfb8b2c1c280eacc4653edbaa713c3516ea0ea02df2aefc74ac4b0b920a19e14ccfb559ecce3b9c4b744629c741e6c9a2efd6da1888fab63e545bb8534272"; }
|
||||
{ locale = "ca"; arch = "linux-x86_64"; sha512 = "e68cb49fef941ffdedea5054a4c7cf223c794d261ab8c5526bb4384001a2263d6018097d737ddf6210c3e73175902fb3773f263beced13faed8f697c52dfd479"; }
|
||||
{ locale = "cak"; arch = "linux-i686"; sha512 = "4cf074c30ed3360f92a523dcd54ffc6f18516452f56620d444cf1fc76a669387aa70687e2dec97a19fffeeae5cb413ed2dc62390de77bf2ef609e758521de647"; }
|
||||
{ locale = "cak"; arch = "linux-x86_64"; sha512 = "c66cf417086b3faae42a089fff4847f2c925c2f1e4fa6324888faf231f909ad95c51b1ebb844598e8172bc6b3b08cba8f89b9890b722a6915e1baceda319b91c"; }
|
||||
{ locale = "cs"; arch = "linux-i686"; sha512 = "627abef27cecd1d4801d1d370254f2a68560091dc337f2780ce585566b522d6c75e370177cd0dfdc9e38e96db52d5c54e201c780086fd769e53d6e24149c2988"; }
|
||||
{ locale = "cs"; arch = "linux-x86_64"; sha512 = "4dd222795547eb14ad0d9f66193b9ad139f66f5a1730bbed3a4213b29cd4717a18ccd095e910071d8642602404bd2732bd377dbc3fdf931cdd8c51862fd43295"; }
|
||||
{ locale = "cy"; arch = "linux-i686"; sha512 = "10eccf20af40d4f1e74d1fcd740a0be0da539a2997a7e403e3830ae6d797ae97fa17f573255a6bf414635fe48809c98f0ef2088c6dcb6e730a3d8bbf2a6e88fa"; }
|
||||
{ locale = "cy"; arch = "linux-x86_64"; sha512 = "e5fefa0248b7b594dba6c7e25a069d0f73a5ba3016c557f5866923ca062fa5ba172206c6396bbc595ce76540a9dd23308db23fe1a6a5b10c81dbd4db252ff865"; }
|
||||
{ locale = "da"; arch = "linux-i686"; sha512 = "909ed57b9745cd124bd16821f08aa578aaea79aa452ccd88c2f3cf5d8441ea5969b5f5bf29cce7ed9b46e0117c1ef278a9b34493a347e934a327afe3bc6a5f2a"; }
|
||||
{ locale = "da"; arch = "linux-x86_64"; sha512 = "2188776b00c04c76ca754ae65e1a8c4897fb24ab1fec5afdfbda5d76e71dd68e3e98e44cedd3d4659c92f7b490b888a1e680446428c3b1bbfa6aeed092cb61eb"; }
|
||||
{ locale = "de"; arch = "linux-i686"; sha512 = "67b26a3eac785f893d19f6fddc955c9aeedcd7ad8e4ec40a5f57d14dd1d3c742e3613faf5860c845aa31b9533fafed47b9342e422f1e74e94192a82490634ec7"; }
|
||||
{ locale = "de"; arch = "linux-x86_64"; sha512 = "8385f21ffa8e35e8a475a1795026d4f91660c5b68a219dcfabbf06a5bf41d6d3711c23e810a2df6a8665878930d71e94a398e563caa60bd2e000dc7e74c735af"; }
|
||||
{ locale = "dsb"; arch = "linux-i686"; sha512 = "4aa529f48d6a039952bcb50d91c402b8d85c5def54be9fc4e571e1065e9732c2a7d7c95ecd37963cea9735e30043207b53ec10285fc3988c91b2527dc848c1e7"; }
|
||||
{ locale = "dsb"; arch = "linux-x86_64"; sha512 = "96ebcb4941137c1e07753ed20bd6a53a7ef80d191eaf7c2b949663026f03160ff30d4e085f79710766d3b937753f038f429ea8da33fea49c1472afe7e1a14d10"; }
|
||||
{ locale = "el"; arch = "linux-i686"; sha512 = "df48924718d78d9c39003c65c363301f0009487c6db79f73e1121f7f1f871c43f485050d0a1fd7086ee71830c0de121a0aca8aa6c4cccebdbdbb21603ab35afc"; }
|
||||
{ locale = "el"; arch = "linux-x86_64"; sha512 = "a72a4becb87932795002063809481ec3167c16995d64d18c5a0e9e9acbe094491f8e6e1f35628a1fd99d3c7fa95b541e7b87ecc9b61da46eebf41468edd9e6bb"; }
|
||||
{ locale = "en-GB"; arch = "linux-i686"; sha512 = "a8a35b2420dd581ba61ea01ae1f38b6c3d0c21d26ae5cfc561aac10d7fb7ab9069ee0a488675e0910909f4179fa003800bbcddca1696fbf4d51e98a1030d9032"; }
|
||||
{ locale = "en-GB"; arch = "linux-x86_64"; sha512 = "7a81e63466cfe6340553cd75794804b5f2fc53a975d4ca64be5fdba4915993cebb8b5b45c26940e669938d878627433005ef916ea16a703fc9024a776217ca51"; }
|
||||
{ locale = "en-US"; arch = "linux-i686"; sha512 = "def0f98752e1ba92e3154b7275fdce2c63688369fd26d743c9157a8afb37202caed49a96ac4b580764b39e22b6b1e1dfd3c417d3ae4e8c508f24d181dbec4003"; }
|
||||
{ locale = "en-US"; arch = "linux-x86_64"; sha512 = "8267845b8956245ec961d22a7538db7370e0a484adf4117ecc8824228a2035711538b9676e5673dea8f133e3bc935e9639b896a1a384650b03843233875ff872"; }
|
||||
{ locale = "en-ZA"; arch = "linux-i686"; sha512 = "bea9951b6f1b3665d380f81c5777af4dc87e8616ff222d06c7018438d04c2c310652357d5fe13237f5567e8b223308746bd96dfad73e20d7869e7a7897402bdb"; }
|
||||
{ locale = "en-ZA"; arch = "linux-x86_64"; sha512 = "371d20607fb9570409bef79374485915b279be3ff93c573b4d8a6471d7f551e774839371d857079cdcdd671df384a8cba93ccde71b9ad49a5d813f9b092ac0db"; }
|
||||
{ locale = "eo"; arch = "linux-i686"; sha512 = "36435cb8204873243bf2f7286d8f8a148892fc3f8d47940722214639230546fb87e941b4c449cbfb642a17bc2d12be1586444cb2146a773774b2486c424dfd6c"; }
|
||||
{ locale = "eo"; arch = "linux-x86_64"; sha512 = "c1ca2aadbec3dbc46e72c05a36d01a3973a61239fd57e3493258129532c45b0a2cf76b1877f98167c836065f25071cda89e3636b6f8ca61c2925e8d359f4aef9"; }
|
||||
{ locale = "es-AR"; arch = "linux-i686"; sha512 = "9bb812c5f2d623d8f9688867ac2a159e2edcbfbe9c883eba713451ebcfb7ad4716fcd10e022d988a6854921266ffeaec5a8ee7780196eed4c2ec32f424b3d423"; }
|
||||
{ locale = "es-AR"; arch = "linux-x86_64"; sha512 = "1559ca934349aa4583609a64ec5ec4f9b3fc7c7ba0d55344e2853774736adc118599b48e3aea42ab376a393bc31b3f798d406fc79fd7f4acab6ed4be1ea5d649"; }
|
||||
{ locale = "es-CL"; arch = "linux-i686"; sha512 = "c4b7fc14c455fcb007406ce648b329d664caca0739187600191837cafd7f835024f4636bd1622708fca8315d8808f2e0721934cc028349507454092298520315"; }
|
||||
{ locale = "es-CL"; arch = "linux-x86_64"; sha512 = "c380341e32a153c504a1b72bc6ecd2a4b907b854dde42e91230d2d3679866f4c01c5a09a29373f0e580f992469e2448e8c3a1c448083c0416c7f14ebd3afabe5"; }
|
||||
{ locale = "es-ES"; arch = "linux-i686"; sha512 = "c3b8dd9909cda43d4227ee2cf4a747f3d4774dab3b8e38463464843286e86e5bd25edd026943ee8ded649ec4504f3c41a2ffe70deb3f33d9c54a2bcfebc8d697"; }
|
||||
{ locale = "es-ES"; arch = "linux-x86_64"; sha512 = "8e0dfc6380b71230bb4b3153bb682f71b759755e5acd8efc727f61769a701dd1e61d6895a9a82d6481335ea1fb82192febdb9e3810a61fe7d209f741e2ab3741"; }
|
||||
{ locale = "es-MX"; arch = "linux-i686"; sha512 = "0491052cbd95b439537d03909459b22754717fe581f6c33aff218def471a164c3ea2c44d1db1ebbdc2be592cbb1e87a8cba8f9bcdc0360a18ebe7e3f0e559003"; }
|
||||
{ locale = "es-MX"; arch = "linux-x86_64"; sha512 = "26b5d89429c5fb26fd2179f74c789ae023beb4d90cfaff47e044dd388525120a8dc42bc0d52442847249d86c6f5be88fa347f7ded1edd9485bca4df6fbd6b0c8"; }
|
||||
{ locale = "et"; arch = "linux-i686"; sha512 = "0311dde01390a778f5a043ddc64654697245f60d325e0d189fb79ea50df7b5cfcfd5e72403f349cc2f92282a93dad9ad7efec23bacabd695c74e809234cfd484"; }
|
||||
{ locale = "et"; arch = "linux-x86_64"; sha512 = "64ac04e96cffb54a35a9f2a2c41b55d66e0d7d4f218ea71ed590f1c62b83e4b426609473f0cae5c65bc382b298b670f5295354f5151c65eb93170607a39ab125"; }
|
||||
{ locale = "eu"; arch = "linux-i686"; sha512 = "8fde0bdaea215428b77c586846b647d1ae8423ee80f35d61dd400a4c732e1cacd1c65d77f95a8584e60ed26a90d3c92d2510fee62ba20c0135cb94245136d2a2"; }
|
||||
{ locale = "eu"; arch = "linux-x86_64"; sha512 = "8304ca1172dccbabcd88c39955213bf3d57b9622f3f387a748db26310974d9b82de1dee01a4b34a0abcb4d6789f7c2fd4ecc17ce4d8090a5e271729c80494736"; }
|
||||
{ locale = "fa"; arch = "linux-i686"; sha512 = "d54bdbdd1bff08d7bd3f45a5a40f893f269b219fee009184f76eebcc5e9908430c57f7770f26de2ce6c343744046cca8368c2ec5a5e36e860f975ab24783ac63"; }
|
||||
{ locale = "fa"; arch = "linux-x86_64"; sha512 = "5ccf346b56925f02f1261981830a40c25a33ca38d2214bb528c4df9c8f389ac97c27bba0236b80c07152978705a02485e3c8e5151d1f1ac4cd62958d2d49143d"; }
|
||||
{ locale = "ff"; arch = "linux-i686"; sha512 = "b7cfc0598678ebdb2b6d5f3e555067684d4d059179ac4bf63c9852579f8153f649e356eb4d88f483f6a79b26c8788723e83f273a2de900baa99e95bacdf11202"; }
|
||||
{ locale = "ff"; arch = "linux-x86_64"; sha512 = "ff1b6479190b1b784595beccfeaa842d5f66da934909cc1c92a5d34a5aa7fd448708068057e3a07f7f86c28608289ce78f754326f228bbdfc96993a81a88963c"; }
|
||||
{ locale = "fi"; arch = "linux-i686"; sha512 = "09f42f06e9c9b98f250a2df5864aa3e0aecd5eacf851d55c2f005ce7420d30c0ca5c1fc0a50a64cb90cf95628cf1be1ddebfa82c37f1a128f4a122bdf581ca9c"; }
|
||||
{ locale = "fi"; arch = "linux-x86_64"; sha512 = "711058109e442cca3e127dbf3a487db2aa89ca7859d6d9872d219dd21b729ad98dc4812c590689583a628e3b118a366cad9b0801b994217f2f971fad9e83ebd4"; }
|
||||
{ locale = "fr"; arch = "linux-i686"; sha512 = "9ce0946cf7aa588476cb2be42020b5087e98dbd8cf8983a48b38bf9b9472756bf0cbe0295324c8d706df72f35c57266c882ce5722bbff02e59ca1b16114bf73a"; }
|
||||
{ locale = "fr"; arch = "linux-x86_64"; sha512 = "304df64f3b914168f92195a7cc39e7368ba1633d75acb9cac6ebc5c90c126d40d78211458da4a2cb1eb1e9cbc3b7346e815ba36c09bb672eecc7e2805835989d"; }
|
||||
{ locale = "fy-NL"; arch = "linux-i686"; sha512 = "d920a93e27e9f6bdb5d0390157f913696c5755a5a07cd15df4baa5589b93cd71e4b4fc11da9c2453ebfd453d1774d1b2238ecb56326bc8f5c7aeab77b86e6641"; }
|
||||
{ locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "488d2e6d02ffc5695ad476cc835f451bcb6e42bc197da256ca0ce8ade7baec50fd818d3658269c6f2e6f372ab9b4893d90f7dbbd9e4f08c8376a59638d8c6b23"; }
|
||||
{ locale = "ga-IE"; arch = "linux-i686"; sha512 = "dea5e1b24420e958f4275ea9d3d646d99c16022f8086ee8cc207b6d7ab5bf7d7ba2d715d50f8f6ebd633544bba692d34134034c0ecfd0c85a466425c97a6300a"; }
|
||||
{ locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "aa6e55e3aa56aa61a13b1270e812058a513baf3d82759dfce6eb79c8ae87d18b634704a4c8aadbdcab289b2c501bddef2997e82b3872a8d5f485aef70182ac4f"; }
|
||||
{ locale = "gd"; arch = "linux-i686"; sha512 = "4dc9c3a6159eed67e391c002adc8eee467bea21b7a0166132a13891134802332acb4cd11764383beeef44528a29eeaf19f30ca8985228097c79278403cd309df"; }
|
||||
{ locale = "gd"; arch = "linux-x86_64"; sha512 = "fdbfdd04846e37271c4565f3e6ccf2936b5bdcce5ef92ecbe5be13c5a1ca547ad4c1fca9e8d87c14147f2fcaa815778bb4d5e17a4f04eef4be1659636f39468b"; }
|
||||
{ locale = "gl"; arch = "linux-i686"; sha512 = "ee8e7ddb91856c0caaecc376e4a835ae04e1081e07341ada4d49b543796c98d07aece0837b887dc7780c935cd30c813cb22eed485dc57bb68a94aacefb368e7b"; }
|
||||
{ locale = "gl"; arch = "linux-x86_64"; sha512 = "906d16f7a10f1e5f548c744d520e27f7bd9fdd4668287992d5d8af50c9b389d3af882eeed859a64c97b88e94de8fcc93dbcadf41caae36a3442eb3da131de81d"; }
|
||||
{ locale = "gn"; arch = "linux-i686"; sha512 = "69167c749ecafac6b7fc610dff05122907b152f0c6c5fef2966c41252b94a3e5853264d8254a3aa5d72f2e11e07397a8b192b1d8e7e0c5654ab1ae7467e2b9bf"; }
|
||||
{ locale = "gn"; arch = "linux-x86_64"; sha512 = "efb6d111e97bb49312537fd0517a8e48ffb58fede9031c90880a8ac4ae909acbd21140e56f9f82151e27b3f1ea014e9c9a3204b35a1c6fed6794dcd282c523d7"; }
|
||||
{ locale = "gu-IN"; arch = "linux-i686"; sha512 = "d57f0091a765f80493e95493a2f82a408754205942109858656cab840db3573f58d48f00cb799b9f5ce6a2e5147299a1f636c9af81fe55a91624d2c8a73a4dae"; }
|
||||
{ locale = "gu-IN"; arch = "linux-x86_64"; sha512 = "96c38bf77f37fa791b04f6f63004caaae6bde4423733620bc7aa095d887f497da12414028c1ff250c5efe811ec3828e9214788bc85e7d73f885c433379da4bb9"; }
|
||||
{ locale = "he"; arch = "linux-i686"; sha512 = "ca812d1008cce0b8314e5a0a50c8b2de8b0153e99eb7c493ca828159c78fd9a02e15e3926b865698fb0822b995d9a757282d32c8c13d2f9f1c42896280c0048f"; }
|
||||
{ locale = "he"; arch = "linux-x86_64"; sha512 = "4bf246c12753f70c8a0d084738fd992966430bc0cc2a6d363e09715dcfd9099f5ecef5b110f5c79bdcf9eca3c029ad0b7b04574eb172421c252dd850926f3b67"; }
|
||||
{ locale = "hi-IN"; arch = "linux-i686"; sha512 = "63727a991fa87d2fb675ee10d2759a42fcbbf50794af4d7d96cec26a02fb07f0c221d069ce762555595b6ad5b713379c5969273e87034a1cbeb886ceb7e68bad"; }
|
||||
{ locale = "hi-IN"; arch = "linux-x86_64"; sha512 = "d190f4d39e485bd212547b39ce72dc9f02b87436313d7a449cef6f3c8594357534867b635d21d3914faa4f6eb89668cf29a2499ad166b0feb3a7f232de3599fe"; }
|
||||
{ locale = "hr"; arch = "linux-i686"; sha512 = "508e6c6f55c5ea5ed65180467e682071c0804e499392835f53c06516d09d8f40c209c6b252406599bbbbaa3300679ae1002c436a5c638c79559ac5747e69812a"; }
|
||||
{ locale = "hr"; arch = "linux-x86_64"; sha512 = "0fcc0ce95c5765563a3c090087854fec969e2eb7c936fd26bdda15c39087c24eb4dbc1748cdd0eda9f4a8922b62af0f3ef51d176d44d75b00c0e8604d7d09426"; }
|
||||
{ locale = "hsb"; arch = "linux-i686"; sha512 = "40c941ea0f08ef6b81ebcd001bbcf7d1d5bd6b43f67cdb9b9669148221c5157d4e9a3dbd02bd377ae23805ce20f7e8e097bb96b26be15ffb724e4636ee8f69b6"; }
|
||||
{ locale = "hsb"; arch = "linux-x86_64"; sha512 = "f2452ff5d06af892f7b33fe62cadb18444e7199f956b7a9afd8f5804f59999683e80b92f8193ba99bba7677c505f6cb9cc7f5e2ab11066bad3b4c5230168c15d"; }
|
||||
{ locale = "hu"; arch = "linux-i686"; sha512 = "7b33b356cc463e21fbc0eb8e79c68622f0a5c9080a077428b29664bb6a2e627f36dc19588577fde8bf0dd47b92a68c5642111d55dc4f9593d103cb59404dc94a"; }
|
||||
{ locale = "hu"; arch = "linux-x86_64"; sha512 = "7d96f273f258141fcb7438f4c4a940b8351261f5b72e7c9bcad23edfa4c8bb4dbc3867264e8af9d81be926c177adc5b1e872a8b6b4796ef2e057e322f5d8f7a2"; }
|
||||
{ locale = "hy-AM"; arch = "linux-i686"; sha512 = "1124c892d9e5d0f134eb02cda33aaf823c099e9fe7ed875df994af8b99abb992cab28e3de1227b71d61048285078d0c0bc9104f28a78330649d098a516e96a9e"; }
|
||||
{ locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "e85c7be731bfc4ae5ae0dbfe10c611ecfb815ad3749cb0cfd0b7b9b31d24c6a949c80f5bc5f698932c4420f9819e97069667a21fd99b77e2b4c2ed1164cf861c"; }
|
||||
{ locale = "id"; arch = "linux-i686"; sha512 = "5c509dc4ad9e07ec1bbd7235f9b05dd97cfac2d9d6b18897192f9863719d3b2509ed1fa6bec528ccf57a0c96414325fb9d74e3db8ef3bfb880685eb96e7a8beb"; }
|
||||
{ locale = "id"; arch = "linux-x86_64"; sha512 = "6aabb3f1b0eacc7f6203c77492683f37814fcf71595c8b01d4c4304f00c17fae89c0b2a681d59612c676d889516663ecc6c12cfa8d42a804d734995a861d971e"; }
|
||||
{ locale = "is"; arch = "linux-i686"; sha512 = "bd87b3c76104b1436be92ae86bc9e1040258334f7b79484a5ce94bddcd0473d8cf28ffe615cf46c0d92698e90885de66627688dd8485cf75acbdde84f5d414d1"; }
|
||||
{ locale = "is"; arch = "linux-x86_64"; sha512 = "d542a1eb114f917f7f0652933f9378428e58169b91fa691d05589390a13918bd0d2109aa59ce8ade43dbfeebd49deea8feb110e24c54f1c90d0fb1314e2be8a9"; }
|
||||
{ locale = "it"; arch = "linux-i686"; sha512 = "3ae512498e1bfd6ea249b7693fa4da77c209e6747745eede733528504465cc090f17524e57edac99789781e5bbe831f21c68eb34aa4f6f294cf66ba04f37d375"; }
|
||||
{ locale = "it"; arch = "linux-x86_64"; sha512 = "f53816f745d6a5c6ed74bf23f0e48a0171d79719f21c262657b6402e54b416563e38c215e9fc33179ef82051747025c642757ddf650ae7cfb601af33fb46eaba"; }
|
||||
{ locale = "ja"; arch = "linux-i686"; sha512 = "22d6416182f3766751e7f0aa647c0f4b658cf32321287550dda1885711ecf6725cb85c1e75f9656661b33d8ee4b3e0fe6b62399848d668b5ac3922d53922a370"; }
|
||||
{ locale = "ja"; arch = "linux-x86_64"; sha512 = "70f390611d41bfd5e0eff0f2a32afa38abdc41ca3ee2d50b0242cae7b5003d0b6e4430cebb949185ba00e711b46c2bdc410aeb2180e52f2884785617da04e696"; }
|
||||
{ locale = "kk"; arch = "linux-i686"; sha512 = "322032a5bfe60e135ea430596989db85df3cc1c7d39061b8606c86b01f0fa3523e197b0e0a2dd7eed6667dc01bc3df3b7b8c5c9f1254305c4afb9a247c647a9f"; }
|
||||
{ locale = "kk"; arch = "linux-x86_64"; sha512 = "d92cf7c83e19733a66955a7351aff90debb6057fc7f3277ccc196e0f0f72b43dc261ad34ec600a5862784dcd6bfc71bae5c7d3f5ffdbb06c2ea8c632ab320a38"; }
|
||||
{ locale = "km"; arch = "linux-i686"; sha512 = "bb482b0ea1d09e624095e5cecb7327321ac5a6895d7a522da9a1aef081d93ed090e7ee743487afbeab125f660179c7e65ad767918724f7eed84ecbaaa28ed9e9"; }
|
||||
{ locale = "km"; arch = "linux-x86_64"; sha512 = "0f1ce557998ecd2fc698c091b95f8669ca32ff0a27b415bfb122f9c5e37a25abf4baf62ea3e3ac63c649c4d1510d2bd71e8bcbad399e8ac423eee7bdc240f0cd"; }
|
||||
{ locale = "kn"; arch = "linux-i686"; sha512 = "68a55c9712a1eab6677ba9577326211aa4c3f6122690da540eb44dddef2d5f6b1a34fc026ddc2e3d005af41149f9e8ccc8eff2bfab952a688b25ab48464dd2e7"; }
|
||||
{ locale = "kn"; arch = "linux-x86_64"; sha512 = "ed7285ea39f41820dd38677d0dda05c0193e2bfbb2149b6ac12b3611b67a154cc76a0e75a23badaf813cbc0f24dd2be78707ecf2962d5582777cfeb8fb59d042"; }
|
||||
{ locale = "ko"; arch = "linux-i686"; sha512 = "c20fd881febb57ed2012e654338a24e24277b6c0ff71b86e190c80afbf5caa8bd6408b2b265ac7aebbc5233c942761beffb4252cac6a5bef41d6f18d13cf6884"; }
|
||||
{ locale = "ko"; arch = "linux-x86_64"; sha512 = "27eb552c9e88088191becf75e3ab0b789a76a5423e84451ddc74ce5ded95b0f98a2fdb0a7552e95752ee4ae41ca9e83bbef3f6ebc8ab089903a63d7d9b558213"; }
|
||||
{ locale = "lij"; arch = "linux-i686"; sha512 = "d0f697f29c8008344e5ebfa4325046837720e5061e309f530db3de4eb066ffa7f3bdce3e97abfc388569664af46f60e73fa9018998f8c42af0ab1b8c44a751c8"; }
|
||||
{ locale = "lij"; arch = "linux-x86_64"; sha512 = "3da427ccb0a138d40af0ed0139adba64accccdc02c2d3abbed04c7ed51bd5cca675b2a39d765406a607b76050bac11fc90ded3b84491066920a8387e490ce3a1"; }
|
||||
{ locale = "lt"; arch = "linux-i686"; sha512 = "c9c779d3f9902248ade70fdec78ea282e021d857a7594ee9fc52eb39c65c142c5278694f6f9621f7f98075a3e9f44e4765493b88a1bf9108bd91fe8522d73319"; }
|
||||
{ locale = "lt"; arch = "linux-x86_64"; sha512 = "ac53cab92414f0c28cd1cd6a722e59889b0f8ef5d842f93c5ab775b8c857ce1c266522ab119b655c5800e1e0fa370791f4c545c00e35d64e8e6c0f6e2a7bd7d5"; }
|
||||
{ locale = "lv"; arch = "linux-i686"; sha512 = "a8cc63ad51e11bb98c8b1e7d0b4673ac198eaa73083ffec491e2b4d333ad6b9908d734da53ad70306717bee4de7c48c9f7ed08cc5647b3d494eca001bf80bb22"; }
|
||||
{ locale = "lv"; arch = "linux-x86_64"; sha512 = "8b229439f9ddead6b965f5e14626e159a6d94774b2f9e57898b86c39f77adc08a6e93b33be050e053bbc1a660f27da66a81f3d1e3222001e52e5463716ee370d"; }
|
||||
{ locale = "mai"; arch = "linux-i686"; sha512 = "b39472c32581b9977cb5701a398d83b8d4abaf2943c99035d57404610b3ccb016b99f4d89618451701434320dd6a83ecb3d927fcbab2999c273b3e7df32e0428"; }
|
||||
{ locale = "mai"; arch = "linux-x86_64"; sha512 = "d8e7f74ef1d4e70da44bfd12a2b93e66df40e7ead86f6d1f33eed0f3bafd72b39c43b4cce086c8b27d9d8d297469a5c5238ca48f46bacaf7b850c57c067702f7"; }
|
||||
{ locale = "mk"; arch = "linux-i686"; sha512 = "99267203937be5687b638f44ccdd9610d0b4804035f6681aa6924f07064e6f26d6dc2900cf39bbdfc2abbb0a72e3cc3b194a20a804e0052b704032e057e469c9"; }
|
||||
{ locale = "mk"; arch = "linux-x86_64"; sha512 = "e656d150a4a49d9d9f0c619450b9a1bea4a14f7f63d40684c29b247efba83de4a4238d247bb2e62fc77bf4251c5199188d1c1e8498b2e85b9c9be351e9dd3cd2"; }
|
||||
{ locale = "ml"; arch = "linux-i686"; sha512 = "4a25b6677772dfe7c7e61910fe0c3edc74d42b1a87468ca9315231c983e8cd9db56ffc02d02345c6e76408c5d40ee655dc5e75d7add173a88f1f3a2b4e922c56"; }
|
||||
{ locale = "ml"; arch = "linux-x86_64"; sha512 = "dec2789ab8d4ed76e642d9bbbab740fd260e8c159568bfb560623e6d774f8ff0692789e1bab26ae759bc864f8e7bd9ebae04e591589bb6fd5a9598b22d28fa52"; }
|
||||
{ locale = "mr"; arch = "linux-i686"; sha512 = "ac74407da2b53417edee5e0286964d4e6ee1019d40995e7b4a2f545b4689b6eef65e46dfb59892ce27a06a79c8f6e6b73e29738544377d33b8d6ed7bb6eb0cf2"; }
|
||||
{ locale = "mr"; arch = "linux-x86_64"; sha512 = "e8c492e12556421385150c3ab1387c857a2b6fdecace7277d9a71d614a12f0905662ed838824ab09aded7c7b01d3da891ac60969bcad57a130bc6bb280cc4a27"; }
|
||||
{ locale = "ms"; arch = "linux-i686"; sha512 = "b0da250f5f73dd3a9ef7e0c7eec1ff4a67247f74e4b3afd12f8ff025ada35b737d3d948eb75ce1b0abf48a5553ecd4f464214e85e70b2a8e0478b2b27905ca93"; }
|
||||
{ locale = "ms"; arch = "linux-x86_64"; sha512 = "88e28245914f5cdcf745e85c102e2365b017637f1b08048d74a92a5671dd99d605fea1448e6ae1b1ac19346762be63cc3786b79e0399c9966b915f4d1b2bbd51"; }
|
||||
{ locale = "nb-NO"; arch = "linux-i686"; sha512 = "ec8f67a63cf22401f99c8c1724ddbf18c281780cd6b8b4b872941ec932150c532e04e39f49531e8fed05a3ef29228292b957e05abec99a348d1e91f4b30d1fc9"; }
|
||||
{ locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "72cb3b2cc2da91ea8b8222f332f4115f87455913abd99fe3b8ca0a290881ad35c5d9e08e5352e380550c6f6775e6e03269f65498887e03c349ab63369101f3a2"; }
|
||||
{ locale = "nl"; arch = "linux-i686"; sha512 = "0cfa7d042bc73e1027a2ac51b87d1f62730b04dad8f87dbd93252c3a11ac3082bbf837cd6b98b1b85a032f638d9d9a400599c9fbd17b565ecff5adaf8ee5b443"; }
|
||||
{ locale = "nl"; arch = "linux-x86_64"; sha512 = "03456fbfb93971264e75ea2a5db9511610a26269e2d3d31bd25e57133a605d7dc12a8a779f2dd215beaea8a1c93d4f7e6642eed0968d4a99e2b6ace5a1a95b50"; }
|
||||
{ locale = "nn-NO"; arch = "linux-i686"; sha512 = "97951fc2eb41eb89740bf1512db62d26e6ff7b2244e68fde834d2818dc8fea61557f12f6a18f871b509e4d3c1f4f1db2fae53b8da5b87cb0ee93ab44b9e2555e"; }
|
||||
{ locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "f0b9aa2f67ddced02ebc4e90e91777799f8fa455313132d3e686c26705446321515caa0ca148f0969c1a5e0ee8b7b005630ba76d4bbd6437eacfcdf581e0c0cd"; }
|
||||
{ locale = "or"; arch = "linux-i686"; sha512 = "97333fecf4097ad57c117bd7228037c7b4ef4c5e7d713801f468c951994d3c1ee65c58351ee4dcb7f3ffd193ce05e67d6502b560f8d39f92b9da185dbd322fd9"; }
|
||||
{ locale = "or"; arch = "linux-x86_64"; sha512 = "4714229f654ec610d0ed3ec88f4d55f60de72e67524e6e572279bfa2dd433bf68486f0d0498ee4227bd687d55ac38914ae8b595cae676aab2508ef4790f4fbe7"; }
|
||||
{ locale = "pa-IN"; arch = "linux-i686"; sha512 = "4ee507e28cc5069824a1386fd7d28b7f65a634f1ebd8f3c3387c2753c193fd8059221923504a4032ec07c3fecdcb5a15ac1b2dcdb73307fed357c0d9af8b4437"; }
|
||||
{ locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "9f1cb5dc4128547bff4bdbc1dc48ca505f1b16dc3e6b42afe5685b9b3659d7e540801a1e71a46a0bdaf2c3476b75b898f6a0ac907cb0f99e425b517b08cdaab0"; }
|
||||
{ locale = "pl"; arch = "linux-i686"; sha512 = "692eca157eccad4392f241d56644806abd2a183dc809480db7d5aa1482d6034b2e367ee382984fb7621cb4ed794c200b3db55c052e1a0f6f01306fd02f3efc14"; }
|
||||
{ locale = "pl"; arch = "linux-x86_64"; sha512 = "635ffa536d4309da36beee2829d665a9bbef2e2ced5003632c982c0cfca776eae1b2b5be03ae6b59cdb8b22966b2866c8346acb75c49fb47e6ea39c576530817"; }
|
||||
{ locale = "pt-BR"; arch = "linux-i686"; sha512 = "18b8c00f31dd3af18f9aa8ee5ebd28a533830844484ecc373c6477c7d862e8e512b52c5de80c6cfdfd70ff9942593b2d9ee13e03d17f7e2088e550e519e216a6"; }
|
||||
{ locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "70e01c566b9344a51f2c893e3fa437d65a7930b571a87213fc4371af818c036612f79ad687fc6e0e52397529a5b173aedbccbcc948c7a816786d4ebdefd4438a"; }
|
||||
{ locale = "pt-PT"; arch = "linux-i686"; sha512 = "e5628b348f9aa98bb831628016360b15cb265b749451017fe0e0c09b10355be80a4358442d53e4e18972ea426f8fc90350587859bdcab9c987a1a633abbbdb9d"; }
|
||||
{ locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "f5ec3e50559608c77f0f96db27e7b32ed26965599489cccd8e49a15665b1d33d3628f2220e9af6d22969183a50d8c7d7cfb7cef208a277d74386bb284413ac87"; }
|
||||
{ locale = "rm"; arch = "linux-i686"; sha512 = "e1c64a105a4a44e8de276cf5d4e7592f4558663981f57277702b112caf0c1f212325932d048dbaba4c593caee52b7932377bd9024bdaa1615107e8b5546d8ea1"; }
|
||||
{ locale = "rm"; arch = "linux-x86_64"; sha512 = "0e06044ea7869f0e00e0a6bf99c1f2c6bd04a9d87823dbfa8387defa11d479f44e225ee839cbfaf93fa1d45680bd6803620bb7256574ed94522a319a8f1ba5e4"; }
|
||||
{ locale = "ro"; arch = "linux-i686"; sha512 = "9a514be28ac95c17b6694bdcb0243ba772363d9b333420af82be70b947b200177f500e2e3ddb9f010932b9ee0b7271568a6f3ed0bbcadaa904d650e0001f1b96"; }
|
||||
{ locale = "ro"; arch = "linux-x86_64"; sha512 = "06e10fbdf4ad4c9c13e62c817bc94b9b3522d8b625c65d273f77cf44658b74419ed37ec84453158f136a1597445bbbaaa7cd8d6bda3ed21ddb7c1ceb2420a17e"; }
|
||||
{ locale = "ru"; arch = "linux-i686"; sha512 = "a443e644552326a85895dc6368f91365163342fca8bf6a467496c41bbc2d0934476a5b0be9ae079e7d260a1930a53595f054b1778563b20557de300db383b100"; }
|
||||
{ locale = "ru"; arch = "linux-x86_64"; sha512 = "f85745244798c0eff4f603a72fdf44d20812614793b7697add27ef06f55a57eb21ec21ec8a7a6ee3228228d6d0ea52f43d6bdac8f88ea310f1561af0381b3ba1"; }
|
||||
{ locale = "si"; arch = "linux-i686"; sha512 = "00d3c6f0fd87ea63ba2bd1870ad422d41a9d984674bb00b07e1c2b60dbe0c24585cc095af68f0728f2bd24af3fc00d5308aa4181d1f4b0460866b26c35b0a187"; }
|
||||
{ locale = "si"; arch = "linux-x86_64"; sha512 = "aad8a7b45871e8633a85a0a40adc231d9f57315fc93b683c498699f8549c6d14d097922d7b79e96892fbe4e3454be55845994d826f2cf37d877e3445a049a578"; }
|
||||
{ locale = "sk"; arch = "linux-i686"; sha512 = "c290d2d481e39a2780362b420130b5638e4fc832c09d49e0892f25dc420dea6a3f087a76ed89a5650a8efc7d82d3ec80d0ae3d3ae2e012fe5eb58c18f025bdbc"; }
|
||||
{ locale = "sk"; arch = "linux-x86_64"; sha512 = "0e64a924486d8c0efb8bed4271a3ef6731f76fc0a7b7e1909215ed2b9635963659427a57342a26b825ce11aa57c2aa54fd75928d27e63dc5bffbce2bc3af75df"; }
|
||||
{ locale = "sl"; arch = "linux-i686"; sha512 = "2cf452873a756785e1468eeb2f9b2e90567c22895bddfdff40b23e69025abd38e1634358a47bc943335e8516fc2f55b939dd2f3ffcbdddeacd3b1c3d39811c46"; }
|
||||
{ locale = "sl"; arch = "linux-x86_64"; sha512 = "c89b76f586190b2f3d5141c066691652a193d25841e87ae0e5ff5dd938164b95032e50239354e7842960a4a4e8a3a917c0061717acd9fd36e74e739676935736"; }
|
||||
{ locale = "son"; arch = "linux-i686"; sha512 = "ff56f55c9716ec5d7af6b1f22da2b3105d62c821010f95333412befed11146e95abf7952b2fa998b444d6b9ec9777e747b139bbfbf79e16c881cb55e0c49f335"; }
|
||||
{ locale = "son"; arch = "linux-x86_64"; sha512 = "284585a534cb65ef2c3dfb46afd1ab3ff0d9695a553aa4c04caf9487a4f6418b461c872aba2f2e15e6c00010934a7f44424a18ffcafaa76e35d3d2a0d61a7551"; }
|
||||
{ locale = "sq"; arch = "linux-i686"; sha512 = "3a2cb298bef66314afa54b94205de0c9fae75f6f063462060d3381939f2359255492adfae51f8215807723912d94ad55a99be7ec7fb023b39f79a951ffa19bdc"; }
|
||||
{ locale = "sq"; arch = "linux-x86_64"; sha512 = "62cbbe10959edb18824fd22729bb7d0615441377a546b745ca287b9c2398d6b4e8c4f6f80eda48efe5e808f1f5327862e7a364f1d837901341317536f952bb69"; }
|
||||
{ locale = "sr"; arch = "linux-i686"; sha512 = "c367d4b46752b0574d8842ef211e9f9bdbd68a2f14785740f4cbf785ba82b42c33d6092f3abae2c730be12345d629864b719d534a4c07d5cbec311fbf92df19b"; }
|
||||
{ locale = "sr"; arch = "linux-x86_64"; sha512 = "16263f6414ecc92e4c7cd0e41457f42217c86d9d373c6f5459b4ddf4b0842d20bdf1b7446a80ba59bb9513f745ab7433c504dd0174ff516c34adbcdc4861b5a9"; }
|
||||
{ locale = "sv-SE"; arch = "linux-i686"; sha512 = "fef1978d41a13c485ca24fcd1358c8421aa6be06730100e66567e6a7021424ffd2c94debd96f6e25cc8d429d7460399e10e346251223b36ee924174bb63aa9b5"; }
|
||||
{ locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "1c8a7506109569c0298b20fb00f2463d4e78ff04d5b41661c5cd758a6bebf63fc2abec6f1cafa89acaab679764897dbe10e5647c3a32efe2b748a06e6d5af342"; }
|
||||
{ locale = "ta"; arch = "linux-i686"; sha512 = "7060ea65a9a4556bf7b7d438de3a516ca4c20531cc5f3c97d8695f3fbbc94c37060273551a0e04382df84812e170512c143e7f835699e99ca8ef21c50fd47437"; }
|
||||
{ locale = "ta"; arch = "linux-x86_64"; sha512 = "beca8cf5594e6865510c2873c6f2b8a9fcf68440d9fb75979e72ddaa994ea789e9cc5d5829982abfff5932ca4d1a491da53ccc34b7dee38c3114982fcda169b0"; }
|
||||
{ locale = "te"; arch = "linux-i686"; sha512 = "e99f01f99eee95ce73af2b818ebedb05414764cf02f3928bbcde6fe3bf03c71a2043b99088af4912b4033453d6a70adee70a7ca583ab5279d9b5ea194137a156"; }
|
||||
{ locale = "te"; arch = "linux-x86_64"; sha512 = "077e1246824e5ef9b08f83c4589216b9d91e79a6cd8fa7b6da0de9f35807076bf9b29d9e514c58e1437d1a39d32c2ec09eb39176461daec35734d327fddb8a90"; }
|
||||
{ locale = "th"; arch = "linux-i686"; sha512 = "a1eb5970b00c0472a96fcfba4c1a30d3ea7d383b5547cd8156a547a5725e7ca7b42c45a4c3ee749221af8bec65764498cc0693f778b6fe3e186de0580f8187a1"; }
|
||||
{ locale = "th"; arch = "linux-x86_64"; sha512 = "73bace49382ba38af87d77a0ec180e0bc2e9c308208dc0ef8d789ba529d7d4c4d97815924279eded4f7438f4f12bb6e7f92c6474b00d1336bd15d5b48ae87935"; }
|
||||
{ locale = "tr"; arch = "linux-i686"; sha512 = "23ce428ae503c2a9a5471ae84d79b110317d17d59eadbc39aedf3c219285c7c20af7eead04a2de7cb6bd97dea3b9834bf97341f3fe68c79d31a029e547c2d7e6"; }
|
||||
{ locale = "tr"; arch = "linux-x86_64"; sha512 = "e8a640a5e1dfcb2e118cc20f26ec0bdaca3fde5a9b94cb62b6170a8f0a161ed7d1492cfafd0a5ddbb7f82810c96b589979c31cb98983a9ff26a7f131fc186b99"; }
|
||||
{ locale = "uk"; arch = "linux-i686"; sha512 = "6f6c3ba54d22f90869a9d045ffcec89ccfef7f80745ad89c8200e0cf3d76bd09d379680440f27aaf50ee5eb7c09d29dafb37416a5d939d6f1b44cd9dcd542b03"; }
|
||||
{ locale = "uk"; arch = "linux-x86_64"; sha512 = "e41efe76cf15b1b3bb51dd3ec1c4c571ad80dac69962c604ed8b717cb442626c76a5ebb078dba5d2e94cf7381461803504c9a3e313401a1d25addba46b46810a"; }
|
||||
{ locale = "uz"; arch = "linux-i686"; sha512 = "c5037d8f96f0b1c98c7e93557872f02506abf78dbec0d3041dd69baac73f6928622d4131d3387d79c5e4edc4b37a9c9f29c5c06d891e3ddd8c78ba3b1c3e8a58"; }
|
||||
{ locale = "uz"; arch = "linux-x86_64"; sha512 = "ee727853b1323a12aebedaae543e18833f1167832baa76c8dc7341d1c50f48751e10c5d3d35c69cf2837cb1cf6fea6162839be045afee22c06ca25833dfc419f"; }
|
||||
{ locale = "vi"; arch = "linux-i686"; sha512 = "463ef27d81df3f7d3d5cf2362e3d8d5144db2bc7c57b0ccec75bbebdae7ed5e366242bd9202adb47bf785dacf161699fbb619d6c35a8bc6eefdfb15af9c9d257"; }
|
||||
{ locale = "vi"; arch = "linux-x86_64"; sha512 = "efc8bc04e117ce791d5bf491cb5feb78bd6a9c112221590073ce5a801384049e1279f5e051d8475b960c9f7149175345742dce02fd593a95f1ec83724a1b5fb9"; }
|
||||
{ locale = "xh"; arch = "linux-i686"; sha512 = "0283091ad6f61f1d6ed547ec841271d6c222bd02ada832bacae0d5b75019e788043abc97ce90bb94ab30b3ec5414911ae45a86a79b4c1e17efb78ec309103fd5"; }
|
||||
{ locale = "xh"; arch = "linux-x86_64"; sha512 = "1fefd81b65e80705d09612e2fa3996d0a11fbf01c1a49d4ea7769a31b6f89827e1c7acba85c7c5d109387afca5d108f2f2e3f6db36032298c260093687aaf54f"; }
|
||||
{ locale = "zh-CN"; arch = "linux-i686"; sha512 = "f22c920f0959995c3b0985044e364ff3edf191227f70c339ab6a64e2c02e4d0c11064439cd8a9d04917619f0128585cd46c64d12f4109170ff8b2fec51ba8e3d"; }
|
||||
{ locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "801e25e24fb66d46e650aa5af7ee95999a8410bdac5e8a067192fbef24690f1f0c273ce4836d8cabea637d165cc0a16b2c2f39f4604bf098e3d6cc8e4ea3df07"; }
|
||||
{ locale = "zh-TW"; arch = "linux-i686"; sha512 = "ee2ca9b3bbae6a889d51d0922932e8bf7f523f8ad28b14647cebe19b5526580271ee87a124977089009ab1ca68d70120363bae76127c90e024567fa3cd9cbef1"; }
|
||||
{ locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "6c53b22c8bf8320a397a4703e9b4568dc955e11e592b216c50e4382bb3dcfdf8810283afc7fe79039d83d5d5ce272d386ba0441472445afdd784a3da9ed61f5d"; }
|
||||
{ locale = "ach"; arch = "linux-i686"; sha512 = "f2c0f192757d7d8dddaf5d4baa7ab2697dd41f19ff9b5c191a08829ed0d835d1f68a666e086d331b34fd2c4e9eba75a516c13fd7fe8f9d3648c4624fff06292e"; }
|
||||
{ locale = "ach"; arch = "linux-x86_64"; sha512 = "d6aa9b1909ae41992a1f448a838c7f5760075c3947307b9b45e72da724ca86b0701ad686e2a93cf9d369108326b36b840eef9bd4a5ee878e17fde169ccda2d00"; }
|
||||
{ locale = "af"; arch = "linux-i686"; sha512 = "76fe510aa89f2025066dd34ebb62945bec39ad259ec2b76920f4927d65fc5ea314887fa735a36de55af3c6965b5bda88eaf93ede9021e57a44499df9160b6b64"; }
|
||||
{ locale = "af"; arch = "linux-x86_64"; sha512 = "578b6b3cf27743c2ca993f44ea67aa1cd7a28c6212618a5ce60e81146131d5bcc5b571c8005d0415cea31767f98549c04b259926001fbe5f744e61fec42e08ff"; }
|
||||
{ locale = "an"; arch = "linux-i686"; sha512 = "927a8becfe9d23c2c66bf6eacfb061eb73d17b6766fa897ec89e1426d8b2320edc76906cd5d47e60a48110cd1a261978c5bff6805f91b95bf6a9539232e4f318"; }
|
||||
{ locale = "an"; arch = "linux-x86_64"; sha512 = "8bf1300ddc2c968c5634f3104e5ac3b4b573a1eb3218ddebf2e2bf19b8232c66816df0268d77a0ac322351002bb16ab850b0ee581f24091b2a826638c9adcfaa"; }
|
||||
{ locale = "ar"; arch = "linux-i686"; sha512 = "e8fcac5e450d97ed131ed11af0acb0adbbfc490c32714a87ef3a4937824576038f99a83bcc4ddd8c2de912436f305d8ede4dbc25ad15d866c9b05ebceeafef22"; }
|
||||
{ locale = "ar"; arch = "linux-x86_64"; sha512 = "8a625fa7aea1f0f115bd5a7cd51e7a723eabcf859bc5aad03e1cc8e83835a6a89066146430462a703807151cfb9528c4bd2393a507aeb7d09ddc7f13e5c9f6d4"; }
|
||||
{ locale = "as"; arch = "linux-i686"; sha512 = "423f810f72441a42394ba7aabe2fe8931eda8c5b86783c9b366098a15c909f98b57e9da7ebaf47776692f61b6f1e8437a66bffce9760717ad10c9dc9ba5f17fe"; }
|
||||
{ locale = "as"; arch = "linux-x86_64"; sha512 = "95fb92d54b4ae5fd7ff3ad9c2877701bc1d99d85fc5f6962ad424c570d7ad621bb5bea2c06f1552a196b515c158ab3392fe6a677c33250b2ef9991568a12579c"; }
|
||||
{ locale = "ast"; arch = "linux-i686"; sha512 = "9ea9099863d130d55bdca59aba52da1aa74c5aca26ce8f1dd2f3843ca41a76839d3f3a6bf854d73cf99c2f4317770653fe241e0ab96b47c956fc0c7b9a5df9b7"; }
|
||||
{ locale = "ast"; arch = "linux-x86_64"; sha512 = "668648f760ad17ba552cd60fb1874ca196823f1441f4b1e5f8f2818c616edb7d2248f602b5cfff151ff7bdf39fa08ec1d72cdf6f75c7dc884fccb7489c2c596d"; }
|
||||
{ locale = "az"; arch = "linux-i686"; sha512 = "e7474052cb5703c2625a8ccfb95d62fde0b557b23217ba4086a2849c9f439456494b4464e2478ef22dad025eba5e42fc422dd0221426cea8600e4a9cad081628"; }
|
||||
{ locale = "az"; arch = "linux-x86_64"; sha512 = "2072ac5c93fae1d5c092d94c46698c6bf30e0d2378e3920a3c94d533b298970c885d658895f4c6d75b472f54da2903061db2e66cd01c75f4af58dffe03d8c783"; }
|
||||
{ locale = "be"; arch = "linux-i686"; sha512 = "0f6ba65f6bfa2fb56f84d1dc66bc8c3f5f49f84aeec395786dd30a53e843831a7427bd7fa9ea8b6d4dc2ea506f67ab1c619b72a9732af496e0580c3eae23f9ce"; }
|
||||
{ locale = "be"; arch = "linux-x86_64"; sha512 = "dea51d5ddc791a4b0eb35e73843a48ef0002586d3146143b4a88fe349d1d2229b37d3dc8cd1bfe27e8542feca6bd39e862fdeff564ad02d5f0f12ee6ca4f8fcc"; }
|
||||
{ locale = "bg"; arch = "linux-i686"; sha512 = "3b48d3d01f70c31a56308022323f37e9aa42636162c3841f9ddd2b660d6ae55af880b2d243ff98de4e75628bcbcba9dcdc34e342b7082032bc1ebdee3ac98e2d"; }
|
||||
{ locale = "bg"; arch = "linux-x86_64"; sha512 = "bcd3026820009724d3ccf48cdb382208537f500aadff104f7de5641985ff06cd49920626b43a642df64899aaa21b562350c3be1deec975464ab7b079e8148e8c"; }
|
||||
{ locale = "bn-BD"; arch = "linux-i686"; sha512 = "2814c443a77552bbd64cb1ff656ee22f082f298cc2befb1c3d4ac744510364b5b9e997d7e5d55ed172619b2e96d731e75ecbc554fd2ab3b5516de9646baa5e99"; }
|
||||
{ locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "cd660f2e51b177296c100a21f01e041018202191f22008d9905c7c9d393421d6b1aeea921607a527fad8e861a6e6a47d93a1705400b9447f9e5954182ee521da"; }
|
||||
{ locale = "bn-IN"; arch = "linux-i686"; sha512 = "5bb89d1940f99faf27b194b06c965f9d538770c75104eeb34702cd96ed81dfb531c1e7537544aa42479780f17cfa8c0489da8d5f6bf1050b222926f1e03bc545"; }
|
||||
{ locale = "bn-IN"; arch = "linux-x86_64"; sha512 = "491812ad2c3e5b8d0f7744578f66171e89acaa5e6666650b35db5dc57bba124e27d90687b2d57b1167122b49ba89614be51d58ddc1e705d7b9257c5f65c28356"; }
|
||||
{ locale = "br"; arch = "linux-i686"; sha512 = "306dfda3ade5ba9f18695df80c5ae1781f407a62a3016348baf2f7aab7dc89fe5ac11aad226da328e4fad8e49fc43e98ca9cbc3e0d2b097bf133ff54d0f0431c"; }
|
||||
{ locale = "br"; arch = "linux-x86_64"; sha512 = "613f826bde6c1935144e6ca10970864a07c065c917f38e2d206d79627284bc1066f8f8859ef7fd55c5db0603093fce3c689bd490075b644fb4278bb0cb2b7259"; }
|
||||
{ locale = "bs"; arch = "linux-i686"; sha512 = "60345c10e148dc322e8ea9cfb9632df60c096aa950f44625e50c8534193d22ccd440fc95df9c2e47a0efa161ab2c214f522bd9f624f71820da315ec5ffc729c6"; }
|
||||
{ locale = "bs"; arch = "linux-x86_64"; sha512 = "70b257b9f24a5dfd92e617c37deac7174d6ed0816d430262e596af38d939a7fa929980005aaeb84588c9997dd343d3d98c7855ffa375bfb6e26877f79269e350"; }
|
||||
{ locale = "ca"; arch = "linux-i686"; sha512 = "509fe80f15514d996ac929b149e83e174513706bc9bc62e04ec42fe023e4df1a5966e19b30ae0823ff38ecb1f0f46474e68f4ce0a6a68886779544e2160f0a25"; }
|
||||
{ locale = "ca"; arch = "linux-x86_64"; sha512 = "645e0f0446c0a60cca75b553d36eb83a173b1747b36705f7b9f1ac36123ea68c98679a99118d4b922cc87412db6cc43c7dd30cf38ae3e1ac197022fbd1a7d231"; }
|
||||
{ locale = "cak"; arch = "linux-i686"; sha512 = "7fffe20115e73010da075663593e7c18241d8df32ba71ea88f54eb1946d725a098f26ad10e8f02f0c9c9717be803ccaf83a74fa848cafd01622086fbb0277870"; }
|
||||
{ locale = "cak"; arch = "linux-x86_64"; sha512 = "faf75e7be493279b86e7aeedefd738e92ce18315edd9061f73d78b2c433085def7fa58ffaaab1b4684c5a68e725d47c8082f7d00bdb8824cb451f405f8c3d009"; }
|
||||
{ locale = "cs"; arch = "linux-i686"; sha512 = "906e346f3d56bb3c4038d9fd4351d0527eb3da79b4cd19b8d6701973a8d894a5cfcdd61b0af19d62d29b532145b0519a3f42f7b4d37b39372b70d5d02db78615"; }
|
||||
{ locale = "cs"; arch = "linux-x86_64"; sha512 = "6e9d8f6a8de8e34ebf242ffc76a195e40a8872892c4a6920958e13580e79743cd99d79358834b2fdb4f468e79718f06a0b36b410a6108fa059abff84e5631c9f"; }
|
||||
{ locale = "cy"; arch = "linux-i686"; sha512 = "29201964f3f3650229571bdb01f2421928db6e6a66bf16c355115112249cb7fc87d4f8de79bf8aa511b03449fa24708a120a91dc316d824321e827ba1b94614c"; }
|
||||
{ locale = "cy"; arch = "linux-x86_64"; sha512 = "e05b015f92bb537456376fecd3712c20fbd75272938eb65cbc4efc86f89ac2282d0085cf3a694eb35132cfa33e7c6a1d9d31f6ead19775dd552d86b0094e6cac"; }
|
||||
{ locale = "da"; arch = "linux-i686"; sha512 = "0134d9a2566d5db17d74a6847cf14445c6e036e75369ae4ab79459ec9c4d3f576a85cd2f3b8a74b301a7a06d01a32acc1c1b38909e78724f1df81410c21cc9d9"; }
|
||||
{ locale = "da"; arch = "linux-x86_64"; sha512 = "adfb3bfe8461ec25d17bd307d27c90d27f6b6f13f100ae4dc0417cf7bdfa63b18be795abe9cbc8d621fc623f0d9fc31cdc86506bf708035d2e50442ade8ddcce"; }
|
||||
{ locale = "de"; arch = "linux-i686"; sha512 = "263fa508642bfd4158adde292803f99a91c8970ee220f20b4b94e02f4a8067ae08571c76a3cf16d911706d3e6b65b2e3c6a1b48f99756b814f5d2f731b42d79f"; }
|
||||
{ locale = "de"; arch = "linux-x86_64"; sha512 = "3b2ce6b7a84d749c5658553f750a7cc65d00e015d2b84862fa544921de0ccb8a77391718171a0ce9f79d949803382c27b03089c0247e2643862a8dede50f2c3f"; }
|
||||
{ locale = "dsb"; arch = "linux-i686"; sha512 = "263f3c0868e002bab2122307f40f7d2122c04963352882a115cccc258d6dba520c95012083f898006decf88e393a49c5b5944650102a7aa6c404d2e4cc2084e9"; }
|
||||
{ locale = "dsb"; arch = "linux-x86_64"; sha512 = "cf90b6bcb17d7dfe02d4ecdefcd45a694234440ac1c988bc20603b0a96cc1bda186a51c7d6d3d50ad12d9dae0cbd5ef99f9403014d6d7bf812c08e5430ab64b6"; }
|
||||
{ locale = "el"; arch = "linux-i686"; sha512 = "6cbf29fe7d578565a621468eb19315589aca02b90514b2be104cbb6f557b8d5d8db676da281fc32d3cc213fba9ae59bde2898e95e9e4b149d969b5c846434b17"; }
|
||||
{ locale = "el"; arch = "linux-x86_64"; sha512 = "65bcb7db22a394f8af91ea12c2d1b33c7c33a8f2c855a595bead81fbf6a70d6dc84f397f0a942d3db1b8c2cc0335f07fc63cdb917140b22985fa97d5fb348031"; }
|
||||
{ locale = "en-GB"; arch = "linux-i686"; sha512 = "7704a4ec2bb06113169f8dbddd94c557f489a402ba69ce529387c0bcb24a2559505dd3445e46b87f944cde3488e49f2638e2341df24d756cbd9f05035f6dea0e"; }
|
||||
{ locale = "en-GB"; arch = "linux-x86_64"; sha512 = "dc8c048597fbadf892b1376932d822b6b2b1974d4cf2b89cab295ff06f24d0c39fca9be9017f0542a54d060e34c708609757cd3b1da1e0f7ee2d26992cf21e4f"; }
|
||||
{ locale = "en-US"; arch = "linux-i686"; sha512 = "8d59d34f8bef6f1f3b9bf4767edf303a14936f635e924d2e5373d6ccae43cbadaff8e430205a26c01ace987dbed64ec11e553b06c8d0b97c9c33d85bb31ee6db"; }
|
||||
{ locale = "en-US"; arch = "linux-x86_64"; sha512 = "ab8e9bddcc85e91a679818c4bf6994d0ba00254d32df05e33e7ac2d529813830c1a67d622bbd879625b9b6c41b988afb7598456a6cb44fd878cbe655a1cf7e1a"; }
|
||||
{ locale = "en-ZA"; arch = "linux-i686"; sha512 = "e7832c3602ecb8103c5e8f2b7dceafadad1f2e3094db278477a1ec9ed5f4c38ceb47d4798ca3df5c6186ba1e85678fb055f25a373969d39351392673e001877e"; }
|
||||
{ locale = "en-ZA"; arch = "linux-x86_64"; sha512 = "235e0105e669f6f4e68ba14174382c521dc4b23d76a054e07dc51addbe8bfaec46f4c7fa4a852490e4c879381b6f65a2a96ebd7bbfd16a40090564b224bc9790"; }
|
||||
{ locale = "eo"; arch = "linux-i686"; sha512 = "427628aa9934f7ef7989e859f90bd835a5085bc14143e462aebf5ef9c5cecd77fdc1599b13c7832c05cedf9296ecd9255c6881f1264d201aa1803dd330055ee4"; }
|
||||
{ locale = "eo"; arch = "linux-x86_64"; sha512 = "50229dd469804147fedc786a35a8032c6bcd7fb12abca6b9352aac8f6ac9cab56c8f487f88bae833907febe594956c978680ac39adb41ddf441bf56c6ca1c93d"; }
|
||||
{ locale = "es-AR"; arch = "linux-i686"; sha512 = "287049bc2b649ab9f258378371e5bcf8fdb23ef38f114b4030b6aed041c57d906b25d4984787bf382105af5e8e304001ac827882552671c91d2f67df3ebfbe5f"; }
|
||||
{ locale = "es-AR"; arch = "linux-x86_64"; sha512 = "2ff411ad6f97e65b756c201657eb73c3255c3de1b4fc72acc281915bc9b9ff8c729839d1d5089e606b338e74ac3919681f06164cb1e60d5d08326c2c080ab064"; }
|
||||
{ locale = "es-CL"; arch = "linux-i686"; sha512 = "5a66edb762b3f2be2ae77dee1fbb0b9e7e2e7a957c5bd7669792258de7c8d0fcbe2bad67cd34f30fab525412e1fd7dc02527ab764d5a296c52ff3c0911c98dc4"; }
|
||||
{ locale = "es-CL"; arch = "linux-x86_64"; sha512 = "6a38b46160385b82f7e403f589e8f1b138f5ccdeb81a21fe5a3e7289584d66471fbce7878b749cd466fb5bc4bbd6fb6a0c8d3841be31c326e2227b6fce7a59f4"; }
|
||||
{ locale = "es-ES"; arch = "linux-i686"; sha512 = "0feac37e9b6fac3a4a56a5e34ef7d2997a96c31d61f7fbac5e3a685553345809cf64fe87acddec6994159486eae14063d8b04bc741bec5b8ab3669352f1aca68"; }
|
||||
{ locale = "es-ES"; arch = "linux-x86_64"; sha512 = "b4bed3ea73c0a7b821aaebf1196bc7bd0ad7d5695d88194f995e5c17f0a3435b635fc0cd56155af48e691b99192851bb2e74528a6225fff12be464e42dcfbfec"; }
|
||||
{ locale = "es-MX"; arch = "linux-i686"; sha512 = "eb47674ff0354554a2698e2bba97f3ae99d32d15c398f17cef88b05832a9e1113da233b01522acbb80cc074f704dbee6955fa975fc96b55395d3bc36c7a6470d"; }
|
||||
{ locale = "es-MX"; arch = "linux-x86_64"; sha512 = "e258bed70c2fb88886653e7a47e8f574939a4c79d858bde3052f4bf3c140dbcc3d5971746163cfd1146ce6d045863771b41c64ed2385f6df19727d8f05596433"; }
|
||||
{ locale = "et"; arch = "linux-i686"; sha512 = "120f3f779add5348dfdb91f112df8e8abbe5e8b0370561f5f750d730bea1ef83bfb028f97ce2be77d6be2a30999371745ddc0827df2562129bf454644c5526ba"; }
|
||||
{ locale = "et"; arch = "linux-x86_64"; sha512 = "23be4694124dfcea463e119eb9729341fcda4f9a550c270ec9fa7d3d0acdf82314d94f6333bedfef4aab7c0fcc2ea81f34c9f653999d197af3138e630e37eabc"; }
|
||||
{ locale = "eu"; arch = "linux-i686"; sha512 = "714a3d9c72c79e3a55e32b16c5526aa825dd1dbcf6d8da056b4aae8fb9fa6de08ca2a8702d087cfbd538d66fa0cb7dc1b676df1abca16deed90045aa50c1f360"; }
|
||||
{ locale = "eu"; arch = "linux-x86_64"; sha512 = "bec1d92988e29a792e14775c33c95db54522a22c9db3970fbb52b683f668031c9e402d05097f0eb9f44e7b52da9374411eda0b38e6e3ff4dfbd30778f0034393"; }
|
||||
{ locale = "fa"; arch = "linux-i686"; sha512 = "4ae92ae5555ac303cbb85b32c389307927aec90f3dc8dfcdeb9c447ef7d76df850a0da2089ea3dc51bf10d71246ac7cbd53587a881dbdce93e6a67c90568cfb0"; }
|
||||
{ locale = "fa"; arch = "linux-x86_64"; sha512 = "26b9a9fb98c793630f251e2483944a4b4630dad669242359b38afa6158ba8718b87f7a3bbe743d0bafde278d7e7114cbb9a26b0bf37337101c6db1f3deea972b"; }
|
||||
{ locale = "ff"; arch = "linux-i686"; sha512 = "250425e3e008c9ec5fce82d57c743a7481c4a6291a60f200f82030feb1a5cf60079bf2add7adb0581b38195515161a8f282066918aa11c21c1a25f6bdb750c91"; }
|
||||
{ locale = "ff"; arch = "linux-x86_64"; sha512 = "b80f9b1a7d289d53f3ed101255a8539085125a8adb8053746198a66eedcc86b1ebd030cf1992d66bf9c50b7110f0c59892139cb9195065a5e219873f4e06499b"; }
|
||||
{ locale = "fi"; arch = "linux-i686"; sha512 = "f2ed582adbee8fa129586c2d3ba3f6255eabe8a1b29eac95c2af45d6196d88115695dbd9574da4dbd84befc7578aaea601b2f685a9c6369a296a3515d8fbe450"; }
|
||||
{ locale = "fi"; arch = "linux-x86_64"; sha512 = "36d9a9b27d92c2025d29894b69b50b8a9dc23d098b2bd4943ea86fc2693813e2fac96518b61918ba87b32c30e0aeeb7e0a95926aef27dc039a4c6d056b4c958c"; }
|
||||
{ locale = "fr"; arch = "linux-i686"; sha512 = "930f903853e8bbcb77e92022d42416e4d7085d8ea6688909a32fe5d3a52b466d91f83940b4d1864242984662c3d5356ed7dca22e5b38ff2f084f916708df1949"; }
|
||||
{ locale = "fr"; arch = "linux-x86_64"; sha512 = "3147e58710187b2e3973e9db45a71544bb810c125af5d42d42ff4a82658ba4decf93f29c7cf91bf66fc1f66b9015e13c2bdc473572d23d5e7bcbd2edea29f8fe"; }
|
||||
{ locale = "fy-NL"; arch = "linux-i686"; sha512 = "6827df664e6d0a40f6a20a3fdd7f6e094bcb789349cf05ab43689cae17761a5696121156ebdabf4dcee2bcf232063433e5b8194cb294c44f38a1ca19397101d0"; }
|
||||
{ locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "a3d878b27a95f1942394005f93a7e5f7bbe677454954722bc9e826eaac94528b944e11261b697dfbdeb5ee6f2dc2b0b69472092aa5b0bf7a21098be99c7aa91d"; }
|
||||
{ locale = "ga-IE"; arch = "linux-i686"; sha512 = "53540c04c36ff082665d0c662d3a57f976882e12dff31da9dcc25986a5e8b9f427c3678dcbc3ddb5c2af53ca3cede28e692a1b575b62954c395491e2a579f540"; }
|
||||
{ locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "336c86e648f3ba48c885aa2363607267df275dce67407edff24e7c5959084b7494119fec0712316104f2e062208e4d41d70c1d8d91c5d8cf75a456e3ad7f5970"; }
|
||||
{ locale = "gd"; arch = "linux-i686"; sha512 = "2e95307fd68a654926614aa82f6a9e6aa214348aebee79f24f3cb13b8723a08d6e4552700567b0ad0305f951f7a91e2a4daab9b78d7fd72ace330b5501f646e7"; }
|
||||
{ locale = "gd"; arch = "linux-x86_64"; sha512 = "31cccd686805e819cede6b5f92ad270aa534ff607f148d7efdab0be91d78e20609abed9d7e2baa12323f33490af700a4569305384a127148f36e134651bfcfdc"; }
|
||||
{ locale = "gl"; arch = "linux-i686"; sha512 = "19e770c25e0023cf405801bf1bb0f4f08083117626435feb9292e2fa236a7af8f65d5402c19b7b0b9265a4894bfd2609e3fc364c4431922a6b62804511fd1f1d"; }
|
||||
{ locale = "gl"; arch = "linux-x86_64"; sha512 = "569a2eb72f232216f379c890abe7d8cd61120f99dfd75ebb9cc610e5726876bb64d94b6aa05a4996855095ed76bf731941ef8fd3fa116b0a51ea64c739323f95"; }
|
||||
{ locale = "gn"; arch = "linux-i686"; sha512 = "b386a8bf32bb42fcd0d011a16ec4449d51a11de4fa35a715a2d08baa9a744fd219c9067e865530b2e1fcf074030b785f17231b3394fd044fb8516e8ff83f5645"; }
|
||||
{ locale = "gn"; arch = "linux-x86_64"; sha512 = "57d55e84ade8c953f7d3d738f209f1e05e7020784ea12a536713e4eca0fb85cf27560df70aa9fe6bf1253d1ec0c2a81e1169c3b72728f83004675870958f9d0c"; }
|
||||
{ locale = "gu-IN"; arch = "linux-i686"; sha512 = "94a5710cf9832d92fdd8540118427fe0ed14da27f0d9fc5f12ac28eec7f0930137f892d8344531ba010568e79cd8a8a48e2a3c52f4083cb7bfc7ce793e05e366"; }
|
||||
{ locale = "gu-IN"; arch = "linux-x86_64"; sha512 = "59c37e95bcd2b97f641f8a637642c65c74a5d12cb5aa177e3fcff68de840db574e5e99fd14d59f379ad72d0a89b2384f242ac496ad8200c4db9240c46c61842e"; }
|
||||
{ locale = "he"; arch = "linux-i686"; sha512 = "fbbb5754f3ebe95b5ecc3c1e7a995023bca549fd07bd6d65b41b58a5bc6cd59c6ffcb46e580fe1aaf826d6aa662ba180eba3a4b911017327c02b0ffd2a757fde"; }
|
||||
{ locale = "he"; arch = "linux-x86_64"; sha512 = "2cfe531fa70db4309aa191d5112bd5cdaec35e52b7a0de72341263468a4e2f2f320bb0d8927d1a51bbb53ca607f34a16400198ee31ef42a87f7890760c7dd040"; }
|
||||
{ locale = "hi-IN"; arch = "linux-i686"; sha512 = "c4afe5a04da5f7a2c78f98491930799a808312dcde60c0e0b1d5f04ef05aedd7cf6f7a9e2e66a8ef34d6c20a16386903b07590ade1437bd5d1d69f66c2c0080e"; }
|
||||
{ locale = "hi-IN"; arch = "linux-x86_64"; sha512 = "abe399d2326e55e5ab380d1f5af25c5a1372687380834a427df6c9ed3d8acc43e559929124d23e4a55f23691e7500aff3b43a9f4018dac5ba19ada742e9a134e"; }
|
||||
{ locale = "hr"; arch = "linux-i686"; sha512 = "699cb32761706f39342a8a118006daa34423d4e1aa159889d3c581a4393b9d299d73c2a9c8f2c47677a35252ad2bb4bf423d37187fc53f9f401bc4e2c7766c71"; }
|
||||
{ locale = "hr"; arch = "linux-x86_64"; sha512 = "9d74672634c83abedbaeb89ff931f981cc0e6abe6141a1339e39c05f26ee6d991742b8ca41cba6bdcd17134b27ea97722df2c73e9e67ee7fe1257301e8ff9e29"; }
|
||||
{ locale = "hsb"; arch = "linux-i686"; sha512 = "062f91a5090915a3cc674b3ac1fce41aa755356e6eb03aa3841a297abd56c9b62969736fae6f890d33675c813ef2e16afb989147ec254ac7d21d7a8e08e65c74"; }
|
||||
{ locale = "hsb"; arch = "linux-x86_64"; sha512 = "8e1a7652dd919748bffb90d3d738c00670609dda0f0f7fc61d0fe44645546249dbc536bc6fe0e1620641ec49534f5c547b29ec0e3e8340bb970effca183cea60"; }
|
||||
{ locale = "hu"; arch = "linux-i686"; sha512 = "1267f2548bffce97b2dea39d69bde19d2d2fb0ae34dbbfd73f84a95e018392bc44ca1c613aead56ff8088e64e4a2ba4e3d78659a4fc9d9b6b4ea83c4d7340220"; }
|
||||
{ locale = "hu"; arch = "linux-x86_64"; sha512 = "900c72bbb8d75f79f06c254270e95ca804f946b4cbed07c9d5eb4ebe35fd6caeef623deafeb1e579a4ae97da58f24416a81b1419b8107a65349b5c8496e664d4"; }
|
||||
{ locale = "hy-AM"; arch = "linux-i686"; sha512 = "43e881e3140528ed65cdc217e70e05ad4e3d4e48503e7f6c526c08684bd5307bb2b7c4b374efba8eaa57243833eff8ea48b6c385dd8e3c2edc8a570dc12b2d81"; }
|
||||
{ locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "0d38d8e2b9008b26b0adc89ea497b69011f3f5e84ec1fa55e29328a9c41be1dc063c5dd7e22e42c45b25a35a7022e82d85ddc58e15aedde627cc05f78b9f196f"; }
|
||||
{ locale = "id"; arch = "linux-i686"; sha512 = "a5cf380a49cf9a5cb018be968d28f60be0979e47c06732ce8f3254ed9988f745636b7a616a65ebc5f5d78d0e1357de83552e886d06efb92a54179a5c740a764a"; }
|
||||
{ locale = "id"; arch = "linux-x86_64"; sha512 = "4e8846f47027a2ac9b3aac4d7ea0ed774bea87f8ecd3bfa3774045050395b10b46254d4254dd40cb9a670300621b791113b38ef4c316a0339236216d7947ec81"; }
|
||||
{ locale = "is"; arch = "linux-i686"; sha512 = "071a574d070b00379512fad2fb6ef5d9e012976f4b30fc085a56c201cbc3f25931c12e9be03af3744496d73571a4de2c95a8c77ab3a343f32b70b066937f105a"; }
|
||||
{ locale = "is"; arch = "linux-x86_64"; sha512 = "a60bf26dd76c8cabe84359cfda8a002b414613c2d359ba2badb2da22a50b306465babdcfe2d63557d1d8855eb9184bdbcf8075d475c2945fce341283d1c7d415"; }
|
||||
{ locale = "it"; arch = "linux-i686"; sha512 = "a9dd2973e91662a146250d520888daa7228a9ce23470f351df2b7ada8721ea1f13c15b8c9c686b4dbbbf955ee7ff7dee704ba037373b2dc5d91e77470ec35a4a"; }
|
||||
{ locale = "it"; arch = "linux-x86_64"; sha512 = "b6d196675990053d44b7e96d4c8e1e9c6e607fc358aff605c0978f26c3bb486f84541743ea79d61e4751935c71342ac662d660b5e2990861c518895ea5218e73"; }
|
||||
{ locale = "ja"; arch = "linux-i686"; sha512 = "8a18a46e1f5dbf1d4ce2e8ba72188afaf128d96c767751ee763e77d03dbef7daa04898286a3b23308f9009535aa8dc81a5cacef01b0b222f6b59653c9bc29e01"; }
|
||||
{ locale = "ja"; arch = "linux-x86_64"; sha512 = "c5fa6648db9ff7bdaf309d80eee4fbe01c94fd97a6ead0c803bee981d44117052bffe1e424512fb5af27c3b17c055ce3e1bdeca47a28f8893dbda0d755c770a3"; }
|
||||
{ locale = "kk"; arch = "linux-i686"; sha512 = "43a61d27e32363842add7ed61daee0509b21e08a85b64479d00ce7945c07a6ef33de86d0fa8f713cf302736083bf93ecd3a0584d733c6ab523bb786d40641645"; }
|
||||
{ locale = "kk"; arch = "linux-x86_64"; sha512 = "fcb779d313db514e0d6383fa4f27bb4461f9a91be9a7bf5be28314654591ed24f32bed9aa9cff30f5faa3f2b7ba1e51fda16625791b6261fdfb9722959170c3e"; }
|
||||
{ locale = "km"; arch = "linux-i686"; sha512 = "993785268c090eb52689ed8f897614d03dd4601cab5c8cc53a5c82571da08ed9cfbd4b50813ef7b57791d0e2746e3b188590ad2f7c850883086f454c9b811657"; }
|
||||
{ locale = "km"; arch = "linux-x86_64"; sha512 = "8adaa6f0b24751bcbb858a3ee8d30e38b757d0ee3be99d05a812d56d081d729f043e3031c800c1913607a3298cd0f4de489599ed7be10fbc5aa0a18bbda265bd"; }
|
||||
{ locale = "kn"; arch = "linux-i686"; sha512 = "944e94b66c696afff4bd59467cee862b06809197993ea9585a7367665d67dc8dcdd08e7aeb745a95379dc3b05187ef020d5ceafd5ded4c1b62592485269411c5"; }
|
||||
{ locale = "kn"; arch = "linux-x86_64"; sha512 = "53e248541226bbc5405da683c424cf0309088c583ecec7e1b2d768e13e032235828973b0c3478ae0f1cdfaa26de9bcb56ff17563c6303aee0f34af83b806c69c"; }
|
||||
{ locale = "ko"; arch = "linux-i686"; sha512 = "01284a92e559e0e626426b43218623a463e1d6f1dcec40e6cd1732ddf749b76d855a55a7110003026e7cb381c97b85e0c9651c746383e154d35bf9d2348f38f1"; }
|
||||
{ locale = "ko"; arch = "linux-x86_64"; sha512 = "eb5f42ec04d9f16df4234bddbb21fa2b2c510d79483acd421c9ddc3ae2ccdd9ff306ca7679d520c91d38572bd65331a9109ea469fc5c99f748e01e42f3aadfdf"; }
|
||||
{ locale = "lij"; arch = "linux-i686"; sha512 = "31ebca9a1816f2b05bece4238ff50518b55ba838d66c80ffd06535b7bb15f467e8d722fa2cf0219a52324b9fbce1b9cf68411192d00458cccc0cb0c244ccdb5f"; }
|
||||
{ locale = "lij"; arch = "linux-x86_64"; sha512 = "d0da2f54fda85610a14772ddf79ea80e7d02a31f5ad2d4f5f5ad31b4045cf99ce72bfca8bcd0a2bbda172381275b235c0fcc2f57299b75908da927a32376662a"; }
|
||||
{ locale = "lt"; arch = "linux-i686"; sha512 = "f3acf3de208ed2be59b89cf4036884341c5847f0d688cdce2e62a4639d0fb5480eacff1a9bfa5af5b10f16b1f6e00c5ec390868bbf15d3ab00f724dfe0386c7c"; }
|
||||
{ locale = "lt"; arch = "linux-x86_64"; sha512 = "bb5b3ce914b6ddc637a469e8bd2a58aa49ed3cbfdc3e9d2c5943c93f7932e4ff1e1a55f12b4c9706229c4388acddd1bc2160d1bfcc19144ca35d842c7f88a58a"; }
|
||||
{ locale = "lv"; arch = "linux-i686"; sha512 = "f94d038ef012958a1acabc91441d8e7a8029d43f4be30e03dcac0466945a97782b7ff31ea9200c2cf474d4785bc6e17b5761f18c205d981bb5869310fd7ab1fc"; }
|
||||
{ locale = "lv"; arch = "linux-x86_64"; sha512 = "7cc8320f678f3b0db83f536e0224c3aa933f70910ad00aaab51a94d3f1ea86954ea88f97528a77bd1cbe9047d3089180f15bad047fb87add116d2ce8f4c4aafd"; }
|
||||
{ locale = "mai"; arch = "linux-i686"; sha512 = "98fedabbf9dfcdb15bf03bc805a37feda40a74ef75631d0533d3ae75492f2846025db31dee263a46e45c0bebdf593051a888a58510bc5a617c60bb2d76513d75"; }
|
||||
{ locale = "mai"; arch = "linux-x86_64"; sha512 = "3068e6b0366e0207d47e0346ced7b4051b72b384fb4d1270c10b6d7abf4f4f087e0e7b3ff4059e3760274b0665a0a278283be036aaf254769f1102a8b986041e"; }
|
||||
{ locale = "mk"; arch = "linux-i686"; sha512 = "328559fb21d441660f2d772d08de6c23d5ecf792bd1c0fa35dba8e24fa6b36dde1c205eee78c50df6c19a88c18df5521df913dd35a5fc685bb3d323ecc922043"; }
|
||||
{ locale = "mk"; arch = "linux-x86_64"; sha512 = "4f455eb0826491303c351c0b33f329e2467acac04724ad83965188e80eba320364163eb4abada1cdfd2c3ca0d4b682a588d6469fb8088f0a725075c4e7d9f274"; }
|
||||
{ locale = "ml"; arch = "linux-i686"; sha512 = "9c25afe7df32cf4887f98a45b0fa6af1d971e2ebd8cb51f9718f8801b4c15a96a579909953ceb043f62d733b5ad74dc6a24152638ef40defda416ec2c7c31847"; }
|
||||
{ locale = "ml"; arch = "linux-x86_64"; sha512 = "02db0f63c767718998a741ea873ada8bb9ae1fd0bd55ca8e41e64c613253336f599f076c0a9cc0257da8e47a90b605fd60a8d3d409e46348750d29b21d423c55"; }
|
||||
{ locale = "mr"; arch = "linux-i686"; sha512 = "d93cd2f804b34f80ae9f9c80707fe8eca7a3ccabc2eb04110adce764f87a009832b9e2459f2695540854ee0b4653c21bbcc90af1c26a58311448612ecbee6a28"; }
|
||||
{ locale = "mr"; arch = "linux-x86_64"; sha512 = "bc39b04b09b5ea90142d75c8db847c5b5b5e1e8a9162b51465bfb2e44e182cc0e6c2b895a2e2ad9a3b799a11d97342bc1979d20a4d14abed8d1eb7a6d4bf7647"; }
|
||||
{ locale = "ms"; arch = "linux-i686"; sha512 = "4078f58d1022de03b6bc24d8a4b1cb874e91ac97fd7c856d2c34153be7fdd19c1c0e43f1e3b2328359efe9d12e7944b4afd1e94765cf1a31e1a9f4a510aaf3fa"; }
|
||||
{ locale = "ms"; arch = "linux-x86_64"; sha512 = "80ea5d4d120abb1ae30d72b51262be60175962ce1295dca0d0f9c07c2c2d93cdd1c6bf323cb1f4c34830a47c9c71eec0b03ef279b7fb0076e96267efe011be4a"; }
|
||||
{ locale = "nb-NO"; arch = "linux-i686"; sha512 = "fe9cb30a545cf30e9ce8f2ccc26d5d80f3b2fe50fa394b3500ffe1682869084915cb30fc3ad773f9a167e542e3b95dd9d335c013c65ba52dcce3aa68b027990a"; }
|
||||
{ locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "ef8d30e5bf024174ca282ef85f1953fd8366163b8f7a652f1f789663fb1a558c1223189212a05f409c0847441562191c92f3fadbdefeb2f2d93377ed58c2fc83"; }
|
||||
{ locale = "nl"; arch = "linux-i686"; sha512 = "3481e2cc8918cc6e5fdcded7d7f4a33fc82d6e9765c00c995f65b3fc1144979536fd0fc4feb51fa8c1f24825d6bf7793f5608bec85ddf7906102656aa3073f56"; }
|
||||
{ locale = "nl"; arch = "linux-x86_64"; sha512 = "c438ac385683229e42d932fc7fecbfbb6a2a6eb5fc01fd47b814cd7b259f063cbd488f323333dfdff34cefbfeea0dfa840e6dc619029e1961bdee9e27a1be2d4"; }
|
||||
{ locale = "nn-NO"; arch = "linux-i686"; sha512 = "79f2a46fc1b9af4812b3e33a8f5d93d87635965b4e5d8b8d23db00c43c5ae0d76550a7ae7d0c510f09123b44c214911a43e81a2c0eee0301995cfcd933acdc33"; }
|
||||
{ locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "e269de7fe8321a223c12ab692b381c3f4e194e5ea56e9b26e07e1da68eb10c0ee5bd0a0353bd8e9cb285eb56b17f3ea2a4eaf164076f8306bf46334478774702"; }
|
||||
{ locale = "or"; arch = "linux-i686"; sha512 = "e6e5fef195033af36a41c199d45f515792c9ffffd9ee3390a04733c32d646ae93ef2f48c8810b6a247fcb19b7d41844ad95da169a4e71435569a3b3caa8f6ca9"; }
|
||||
{ locale = "or"; arch = "linux-x86_64"; sha512 = "3333dec7315a32fc98a405582af5fed327478d3fd23f7c6959a216217f08213af8fe2383f1b19d3f3bfab5b7dcc00446cc98a67581add974bd1fc20ed6f4e733"; }
|
||||
{ locale = "pa-IN"; arch = "linux-i686"; sha512 = "7aa2f5cb9e547ee7612f2408fac26e8a14114e564288f4f2a99b40394cda1a8e806b86b4669cac58aef9733c444f6c64afa1a7fd9eb7fda4e71a569ac70caa40"; }
|
||||
{ locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "826e41b7d420ac381529248da89ca68731e64244ed482f28270ce4c6306cc44841bafb044fc45e5872c78e7cf1703c7f0ce4854987de507ca2c9b293f11d6c4b"; }
|
||||
{ locale = "pl"; arch = "linux-i686"; sha512 = "d75bcb5018620480aef4ee9b3ce7ff3d9bb962a207e7481b8c5f76e19fc07c0b32413e182d4f4c1a02c346ecde7b376fbec821397f339c72bac4ae1a8d0ff173"; }
|
||||
{ locale = "pl"; arch = "linux-x86_64"; sha512 = "ac6ae69f03042155c23c4081f8231b693857ab3e3c1776fd12482e3b71a74cf9681cffbff2ab10dfd68343bd57df453d27930af6b78cdf6acd8540ac255bbe06"; }
|
||||
{ locale = "pt-BR"; arch = "linux-i686"; sha512 = "3b1fcdfaa33f9dea2025b3fe8fea5ae8f1e7a02c654ae33edf463751814d1af669ebf6c32e75972942bdf981527bed5d783566744f63e9306b3fc58bc6af662f"; }
|
||||
{ locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "aa9a737456c65c908b0a3190f1ae8ea0630af7420ffae2c5f1774fc33558068e1ee94ceef04323d896adbc106f38a272629646ce457ca1dcf80748bf307b388a"; }
|
||||
{ locale = "pt-PT"; arch = "linux-i686"; sha512 = "90214a67b5b7e145fc54dc0d6d6750b456bf624be09a02344d86bb58f9d5ad68c2c3089bd91fa26e5e0cae4e536363fbd58cff856f30973fc65900079deb3804"; }
|
||||
{ locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "af418fee283817a39095d95990b7c45b487ea48a47415a42d1f733c1a7fb08a472740cd8f03f61d87adc9cc6cb0f1d6604dec0a603f1d07a1f455d327d8e7142"; }
|
||||
{ locale = "rm"; arch = "linux-i686"; sha512 = "5170d7043e9136f3cf2b89b7176fbd5161ab0629f927c2b07619ef54f3cf3dcc9b6c05d46c959a2d28cecd11b56b7fddddc83491ea4c37fb25c1d6ea7b213b3a"; }
|
||||
{ locale = "rm"; arch = "linux-x86_64"; sha512 = "25d5495f69360f19138e9b52bee9953b63d628fc47b56bc79b82bcc82299b28d240c5d4e7c043d7b71d76b8d20b5868d7647d7b4155a4f942ec617769f2ec63c"; }
|
||||
{ locale = "ro"; arch = "linux-i686"; sha512 = "e48da280009f1441c4b065dab2728eb1fdb3e6398b80eedcb945e72b34d3bc92b3c263a5dc6a8de37bb50efee63c55ababa720540a029c97de4dfc35b63c95fb"; }
|
||||
{ locale = "ro"; arch = "linux-x86_64"; sha512 = "b6f1d50c29e343e25bf4ca816ac51b9f1dd5c8de760b718f32900462959d4b5dfca334ee1bb6dd391adb7e9a516d5675245a0893d6842a785a910de32bceb82c"; }
|
||||
{ locale = "ru"; arch = "linux-i686"; sha512 = "8e7ba939d2618e4cf40ff70897cdd27265256cef03c5c67c2acc4a87a51158ab4aaafda6e94aa0ec150a600beef08480b18884dfa21bb00fce042d8cf923eb57"; }
|
||||
{ locale = "ru"; arch = "linux-x86_64"; sha512 = "b734f1d583bf525d2324a4e0472b375cc6e4279dd2218745965387519dc6c22453a919a956f2b346b166d326323e69d739071f8c27ec8e3ec9f0d79b2c25b922"; }
|
||||
{ locale = "si"; arch = "linux-i686"; sha512 = "58904fcf03826341cbd961a22abd968f21809fd9dcaabc272df08afc5c7f54a72defd0adaea51aa2c0843a435d4055f215c6b07f9fc59820effd8cdb83cc1a12"; }
|
||||
{ locale = "si"; arch = "linux-x86_64"; sha512 = "ba902d30340ccb1f067254d3aa59460c30588e6e93270c8d66c6a1bcae157cf4317e7904526b28f642bb39e7d7fb65abd4b30d10babf666d1a56a495d805b38c"; }
|
||||
{ locale = "sk"; arch = "linux-i686"; sha512 = "074a73f61f8f54106bb1bd895ed05e7161a7267621ee3feffb00ae9e517cb42864a2a54372316520d14a1eb1570cf4c125746229f750b43b9b4feafa04f87348"; }
|
||||
{ locale = "sk"; arch = "linux-x86_64"; sha512 = "62e7298061afc6c54879881ec1b9732ed0fdfe9f84fc783870c62e94f4d199e4a6b7e6dc652fa84840c964610dc83b7d31868492ae5a97ef53c6d68b57c20653"; }
|
||||
{ locale = "sl"; arch = "linux-i686"; sha512 = "9dc22697d6c487f63e21c3cade639aae421d587947f9c5b388fe3c16f31f2f6f0427a9d78730fdcebbeef438d185bc2dcf6c23a3dcc3e2c65a4a2942387f8da0"; }
|
||||
{ locale = "sl"; arch = "linux-x86_64"; sha512 = "3c55e65d704ea31d8639eea0148bbb72e425db347493695ac2deeb278e7919396a85a5e971d491b3fe9c14bb8275e926d22a875f0f747aa4818531801c65d5cd"; }
|
||||
{ locale = "son"; arch = "linux-i686"; sha512 = "122849b7a3f59d66fc2584ad0f0efa43454b2958878253f513466836c3092e287f001e0c72f55d9e319c531138669874ba73321323c565c07dc63a64cf674115"; }
|
||||
{ locale = "son"; arch = "linux-x86_64"; sha512 = "64b9e80e286b63d59c57a91c90a02034682fdaa7a33d9c596949cebeec1a0d92ec6cc2cb16f694cd089fc24fd2540ca39386ef3abb7cdb360e985638afb5b509"; }
|
||||
{ locale = "sq"; arch = "linux-i686"; sha512 = "4fa5606b8d041cb763874642b7ea622df5b7c29cd8bd514d884ad4c4f0bcd44a85d421575a9d2c256d347087405491bf8ebf928f94647fc96d34d52ed094152b"; }
|
||||
{ locale = "sq"; arch = "linux-x86_64"; sha512 = "2488656fb2d1c52fb8221ef91b32fa8f20b72a491052faca213fbd38bb09d479f070bca875b84064390b28076d9f53c0f8ef411707e1b1ee5ad6eca7eddb3bd7"; }
|
||||
{ locale = "sr"; arch = "linux-i686"; sha512 = "4f9a1a3969a7c273cbb9cf46a9d0f09e351935b2bdb7acd36272eb321b05171c466236b63ebd11947a8708383fa3d436790e591bd8ff4f88c324d6cf4bfa199d"; }
|
||||
{ locale = "sr"; arch = "linux-x86_64"; sha512 = "5c0c0d639c0279011113cbb4ba75127bf8c1a34697b1e5478fe44f869171e43c6517fe7390e69dd6f81dcce7cd122f083d972f7c3a52d152926d04fbc61cf00f"; }
|
||||
{ locale = "sv-SE"; arch = "linux-i686"; sha512 = "49ccd39f6a832ab97523b68aac726363ae9003c11bca6cf4db529e835237f09dd316c120178e49c9af10f9f31c8b41d4b2ae97f38e41143868d4e0c89a284c6d"; }
|
||||
{ locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "fa0a2db30b3c2d0bf476f093aee5cf6067d6237b8394962dd8fabd1e9d64993a364d658cf3bc5922068ad29d780e7281f03e6cc1475f72a251cfb95128bf2a24"; }
|
||||
{ locale = "ta"; arch = "linux-i686"; sha512 = "db4d31cf4348ee1e3f7f18adc69d4103428d172e06b51aa92f3bfb5f34ee8aa8be1fe868712744b245f1bf0cf35a83cff70b4c4737dc6d36ae6791caa14309d3"; }
|
||||
{ locale = "ta"; arch = "linux-x86_64"; sha512 = "f9cdd627843d93bc6d31303eabcd53bc842a3afd9d628c03f49ff7cfc6da069d5c2a89bc9446ccfe534425d39b0f167a1e1dfe90a7e3967be2793318e3496d49"; }
|
||||
{ locale = "te"; arch = "linux-i686"; sha512 = "fea5778e244b19e3b318ad8f887634c7437b7a38a6dd8928d110d4001d9fe518273e94182fed2d4c31f04a8d230f48698f60607b5a36f006294029220dc9edab"; }
|
||||
{ locale = "te"; arch = "linux-x86_64"; sha512 = "475dd48e7911859a56aee7cd66d2266ab4d33273fac22b3c1ef4db47245dd478e05411e430d5889e5e3263dd357e0ea9214af77196c663b97a696a696f824361"; }
|
||||
{ locale = "th"; arch = "linux-i686"; sha512 = "60875cae74bbc1fa27d79fcf298f87749010335176676e750202405286576cdcbcd899bedc5a79cf5cf7cf4ee54fda2fa882b9294ffb96ff46fdb323c77083e7"; }
|
||||
{ locale = "th"; arch = "linux-x86_64"; sha512 = "6a692c69a2f290e61d20f9a114187c09ff187e662851ebc4469b4bd68743a33c4e940e5ee22c724c18fcf8d8e1e9d69321acfbda3704bf0c6c158c65a1e469c5"; }
|
||||
{ locale = "tr"; arch = "linux-i686"; sha512 = "805db5eb571f84f6f818c8d870dc18f3b119e2559464ee9428905ff18a99792349d51c5098b815cfd0248c493513ef95fd23768098809a288ce55f0c21cf4303"; }
|
||||
{ locale = "tr"; arch = "linux-x86_64"; sha512 = "331dfae960fca3e4377a341bcac6b5558a14ed824b761e1a1f7ee45995c794b47d25f0763ec6b940f5a37aa5cccfb5d836574ca7a48f5d2d03d9a51228a837e1"; }
|
||||
{ locale = "uk"; arch = "linux-i686"; sha512 = "3b81d2072f89d17c4197ec50c9f6cd97f8318a0f998548bf8ce8cee166170b71b40fd50af542d170c7aef02f8212336f425b4257f23c5caad17c9e49c0cac577"; }
|
||||
{ locale = "uk"; arch = "linux-x86_64"; sha512 = "3a43a2a5a146f2c389b9db771dc9783427bb917579d0139e921fd1f2cfe23c155337ed9b2dc124857eaf1cbc354f9e6b734a549494e03b677d51ae68f4b06164"; }
|
||||
{ locale = "uz"; arch = "linux-i686"; sha512 = "8b86c46f8b7811668d814db06a5d49e8309c970da5bb4dc45cae90c980172b2dd9438d1dbe90a615cc4f388234e605aba1c12c4c47f25e15ac9c59938b0399b0"; }
|
||||
{ locale = "uz"; arch = "linux-x86_64"; sha512 = "3280a7faac5022d100c7b4970d2065df8313b29b39667e677fe6ccbcfc2b6dc6acb3318bc8866ce11c826328425da39dafedb9b5b1693af700bcf5eba43b3abb"; }
|
||||
{ locale = "vi"; arch = "linux-i686"; sha512 = "75bedcd0535928bdc973ebf5cbeec2ab24bed2bcb1f96ba52d83cf1f29f646bec848379013380e8357299cfb0dcfc9c06e0de0ffac81ce79e9880b65a7dfb354"; }
|
||||
{ locale = "vi"; arch = "linux-x86_64"; sha512 = "9c2db35562d7f4828dddba51d51bc6d0f77b7ace3c02e0892605aeae1c0c8d462111903c8e52799e2438f548749e8cea08dbb027dd2d706e04a2b0251c1caa64"; }
|
||||
{ locale = "xh"; arch = "linux-i686"; sha512 = "9215fa230df45a7f3c8bb558f1878e2e56ba385f10fcc551dc35f6a44906ea27c6f98217b397df5d994d8d833e14549056169e8579b41348b3c32e04a52c38e0"; }
|
||||
{ locale = "xh"; arch = "linux-x86_64"; sha512 = "a506b3f162ec72f41a84a661b269efc6c7f6a7fbbe6c6e21244cc433ad1062c269c054ece9d2fca8c1a01704b65003729183367509e6979de45f989819bf4a15"; }
|
||||
{ locale = "zh-CN"; arch = "linux-i686"; sha512 = "b2cc5decb60ee74bab8f46baeb68fac6cb71e3d7454161140369d2e24cd5ee3742f8d7e3a5ac52efa5433289a04c793eac6c6bdb538ef9e20c15529d0dffc7a2"; }
|
||||
{ locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "dd2c31fca8a2a908d86639ef0c3af065be355fa0f137e6dc48c8afd97e9d717ced45068e2da034120f6de59c29db46622244c312a33f6966c8b8b11fc9fb8fd9"; }
|
||||
{ locale = "zh-TW"; arch = "linux-i686"; sha512 = "56b085b47b0201394a09fc8092611cff1fb9b11776058cddbfc06583d63c3631c87be77add470cbd9217c3861c6681b687b1db1e5436b26a022c3f5f56e8c3a1"; }
|
||||
{ locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "1192a45a6cb57c717d9481d75b8009a45bd68447440ab58f85b578c2e37e06023e19cbad087afd0b8c57d80c40e4043459caa87c8e9f624df2f8b3188e2a56fb"; }
|
||||
];
|
||||
}
|
||||
|
@ -4,11 +4,11 @@
|
||||
, gsm, speex, portaudio, spandsp, libuuid
|
||||
}:
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.4.18";
|
||||
version = "0.4.19";
|
||||
name = "baresip-${version}";
|
||||
src=fetchurl {
|
||||
url = "http://www.creytiv.com/pub/baresip-${version}.tar.gz";
|
||||
sha256 = "1qgmw0261y89zka9dgqzvirfk3bg8p5b929vqm1418859mw9i87a";
|
||||
sha256 = "1ldh3sc4n19vsjfc1f3kbrin7djb1z6y1rkisc5f6zjx4bd6535v";
|
||||
};
|
||||
buildInputs = [zlib openssl libre librem pkgconfig
|
||||
cairo mpg123 gstreamer gst_ffmpeg gst_plugins_base gst_plugins_bad gst_plugins_good
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
let
|
||||
|
||||
version = "4.0.1637";
|
||||
version = "4.0.1641";
|
||||
|
||||
rpath = stdenv.lib.makeLibraryPath [
|
||||
xdg_utils
|
||||
@ -43,7 +43,7 @@ let
|
||||
if stdenv.system == "x86_64-linux" then
|
||||
fetchurl {
|
||||
url = "https://atlassian.artifactoryonline.com/atlassian/hipchat-apt-client/pool/HipChat4-${version}-Linux.deb";
|
||||
sha256 = "043qcylqzkzgmlhhxnhm5wy3gvh2cyhjmxnnrrz7y183ji6rw6nd";
|
||||
sha256 = "15xy89qmldp1zs3f809b8sayvawc7sz24l0718iib83g5jzvivsm";
|
||||
}
|
||||
else
|
||||
throw "HipChat is not supported on ${stdenv.system}";
|
||||
|
@ -12,20 +12,20 @@ let
|
||||
system-x86_64 = lib.elem stdenv.system lib.platforms.x86_64;
|
||||
in stdenv.mkDerivation rec {
|
||||
name = "telegram-desktop-${version}";
|
||||
version = "0.9.48";
|
||||
version = "0.9.49";
|
||||
qtVersion = lib.replaceStrings ["."] ["_"] qtbase.version;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "telegramdesktop";
|
||||
repo = "tdesktop";
|
||||
rev = "v${version}";
|
||||
sha256 = "1i1f7a9mikq8n08cnwcyywxj7sh1jc6yfj0zd3n7fgfhl0srzvlb";
|
||||
sha256 = "1smz0d07xcpv7kv5v739b5a8wrgv5fx0wy15d3zzm3s69418a6nc";
|
||||
};
|
||||
|
||||
tgaur = fetchgit {
|
||||
url = "https://aur.archlinux.org/telegram-desktop.git";
|
||||
rev = "f8907d1ccaf8345c06232238342921213270e3d8";
|
||||
sha256 = "1fsp098ykpf5gynn3lq3qcj3a47bkjfr0l96pymmmfd4a2s1690v";
|
||||
sha256 = "04jh0fsrh4iwg188d20z15qkxv05wa5lpd8h21yxx3jxqljpdkws";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
@ -160,6 +160,6 @@ in stdenv.mkDerivation rec {
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.linux;
|
||||
homepage = "https://desktop.telegram.org/";
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
maintainers = with maintainers; [ abbradar garbas ];
|
||||
};
|
||||
}
|
||||
|
@ -13,7 +13,7 @@
|
||||
enableOfficialBranding ? false
|
||||
}:
|
||||
|
||||
let version = "45.0"; in
|
||||
let version = "45.1.0"; in
|
||||
let verName = "${version}"; in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://mozilla/thunderbird/releases/${verName}/source/thunderbird-${verName}.source.tar.xz";
|
||||
sha256 = "0rynfyxgpvfla17zniaq84slc02kg848qawkjmdbnv74y6bkhs8m";
|
||||
sha256 = "0293cwnqj4ys629ra87577c7snv4p8x2nbs1kzcnjpc96vjypsca";
|
||||
};
|
||||
|
||||
buildInputs = # from firefox30Pkgs.xulrunner, without gstreamer and libvpx
|
||||
|
@ -2,11 +2,11 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "samtools-${version}";
|
||||
version = "1.3";
|
||||
version = "1.3.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/samtools/samtools/releases/download/${version}/${name}.tar.bz2";
|
||||
sha256 = "03mnf0mhbfwhqlqfslrhfnw68s3g0fs1as354i9a584mqw1l1smy";
|
||||
sha256 = "0znnnxc467jbf1as2dpskrjhfh8mbll760j6w6rdkwlwbqsp8gbc";
|
||||
};
|
||||
|
||||
buildInputs = [ zlib ncurses ];
|
||||
|
@ -3,12 +3,12 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "yarp-${version}";
|
||||
version = "2.3.64";
|
||||
version = "2.3.65";
|
||||
src = fetchFromGitHub {
|
||||
owner = "robotology";
|
||||
repo = "yarp";
|
||||
rev = "v2.3.64";
|
||||
sha256 = "0x9sdc8d6rppzf1kx53w0yjlnmz7h75qv62yd3ls09w3cy7nb5x7";
|
||||
rev = "v${version}";
|
||||
sha256 = "003n0z1qrd7l8maa98aa49gsfsyy7w8gb2pprlgj92r0drk8zm02";
|
||||
};
|
||||
|
||||
buildInputs = [ cmake ace ];
|
@ -4,7 +4,7 @@
|
||||
|
||||
let
|
||||
# if you bump version, update pkgs.tortoisehg too or ping maintainer
|
||||
version = "3.8.1";
|
||||
version = "3.8.2";
|
||||
name = "mercurial-${version}";
|
||||
in
|
||||
|
||||
@ -13,7 +13,7 @@ stdenv.mkDerivation {
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://mercurial.selenic.com/release/${name}.tar.gz";
|
||||
sha256 = "156m6269xdqq7mpw01c6b065k29xnb8b9lyzn1b0nlz5il2izkps";
|
||||
sha256 = "1zdz42znd6i7c3nf31j0k6frcs68qyniyvcad8k2a1hlarlv2y6b";
|
||||
};
|
||||
|
||||
inherit python; # pass it so that the same version can be used in hg2git
|
||||
|
36
pkgs/applications/video/gnome-mpv/default.nix
Normal file
36
pkgs/applications/video/gnome-mpv/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ stdenv, fetchurl
|
||||
, intltool, pkgconfig, wrapGAppsHook
|
||||
, appstream-glib, epoxy, glib, gtk3, mpv
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gnome-mpv-${version}";
|
||||
version = "0.9";
|
||||
|
||||
src = fetchurl {
|
||||
sha256 = "06pgxl6f3kkgxv8nlmyl7gy3pg55sqf8vgr8m6426mlpm4p3qdn0";
|
||||
url = "https://github.com/gnome-mpv/gnome-mpv/releases/download/v${version}/${name}.tar.xz";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ intltool pkgconfig wrapGAppsHook ];
|
||||
buildInputs = [ appstream-glib epoxy glib.dev gtk3 mpv ];
|
||||
|
||||
NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Simple GTK+ frontend for the mpv video player";
|
||||
longDescription = ''
|
||||
GNOME MPV interacts with mpv via the client API exported by libmpv,
|
||||
allowing access to mpv's powerful playback capabilities through an
|
||||
easy-to-use user interface.
|
||||
'';
|
||||
homepage = https://github.com/gnome-mpv/gnome-mpv;
|
||||
license = licenses.gpl3Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
}
|
@ -20,11 +20,11 @@ assert (!withQt5 -> qt4 != null);
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "vlc-${version}";
|
||||
version = "2.2.2";
|
||||
version = "2.2.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://get.videolan.org/vlc/${version}/${name}.tar.xz";
|
||||
sha256 = "1dazxbmzx2g5570pkg519a7fsj07rdr155kjsw7b9y8npql33lls";
|
||||
sha256 = "0nxzspnyzlm17imlggi8ypnwiizi0f5wrj3436c3qg7i6mymimxr";
|
||||
};
|
||||
|
||||
# Comment-out the Qt 5.5 version check, as we do apply the relevant patch.
|
||||
|
@ -2,7 +2,6 @@
|
||||
, go, sqlite, iproute, bridge-utils, devicemapper
|
||||
, btrfs-progs, iptables, e2fsprogs, xz, utillinux
|
||||
, systemd, pkgconfig
|
||||
, enableLxc ? false, lxc
|
||||
}:
|
||||
|
||||
# https://github.com/docker/docker/blob/master/project/PACKAGERS.md
|
||||
@ -42,7 +41,7 @@ stdenv.mkDerivation rec {
|
||||
install -Dm755 ./bundles/${version}/dynbinary/docker-${version} $out/libexec/docker/docker
|
||||
install -Dm755 ./bundles/${version}/dynbinary/dockerinit-${version} $out/libexec/docker/dockerinit
|
||||
makeWrapper $out/libexec/docker/docker $out/bin/docker \
|
||||
--prefix PATH : "${iproute}/sbin:sbin:${iptables}/sbin:${e2fsprogs}/sbin:${xz.bin}/bin:${utillinux}/bin:${optionalString enableLxc "${lxc}/bin"}"
|
||||
--prefix PATH : "${iproute}/sbin:sbin:${iptables}/sbin:${e2fsprogs}/sbin:${xz.bin}/bin:${utillinux}/bin"
|
||||
|
||||
# systemd
|
||||
install -Dm644 ./contrib/init/systemd/docker.service $out/etc/systemd/system/docker.service
|
||||
|
@ -15,7 +15,7 @@
|
||||
|
||||
with stdenv.lib;
|
||||
let
|
||||
version = "2.5.1";
|
||||
version = "2.6.0";
|
||||
audio = optionalString (hasSuffix "linux" stdenv.system) "alsa,"
|
||||
+ optionalString pulseSupport "pa,"
|
||||
+ optionalString sdlSupport "sdl,";
|
||||
@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://wiki.qemu.org/download/qemu-${version}.tar.bz2";
|
||||
sha256 = "0b2xa8604absdmzpcyjs7fix19y5blqmgflnwjzsp1mp7g1m51q2";
|
||||
sha256 = "1v1lhhd6m59hqgmiz100g779rjq70pik5v4b3g936ci73djlmb69";
|
||||
};
|
||||
|
||||
buildInputs =
|
||||
|
@ -10,13 +10,22 @@ stdenv.mkDerivation rec {
|
||||
name = "fluxbox-${version}";
|
||||
version = "1.3.7";
|
||||
|
||||
buildInputs = [ pkgconfig freetype fribidi libXext libXft libXpm libXrandr libXrender xextproto libXinerama imlib2 ];
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/fluxbox/${name}.tar.xz";
|
||||
sha256 = "1h1f70y40qd225dqx937vzb4k2cz219agm1zvnjxakn5jkz7b37w";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
|
||||
buildInputs = [ freetype fribidi libXext libXft libXpm libXrandr libXrender xextproto libXinerama imlib2 ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
preConfigure = ''
|
||||
substituteInPlace util/fluxbox-generate_menu.in \
|
||||
--subst-var-by PREFIX "$out"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Full-featured, light-resource X window manager";
|
||||
longDescription = ''
|
||||
|
@ -17,6 +17,9 @@ stdenv.mkDerivation rec {
|
||||
mkdir -p $out/share/man/man1
|
||||
'';
|
||||
installFlags = "PREFIX=\${out} SYSCONFDIR=\${out}/etc MANDIR=\${out}/share/man";
|
||||
postInstall = ''
|
||||
mv $out/bin/i3lock $out/bin/i3lock-color
|
||||
'';
|
||||
meta = with stdenv.lib; {
|
||||
description = "A simple screen locker like slock";
|
||||
homepage = http://i3wm.org/i3lock/;
|
||||
|
@ -12,14 +12,15 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "0az43nqhmbniih3yw9kz5lnky0n7mxylvklsib76s4l2alf6i3ps";
|
||||
};
|
||||
patchPhase = ''
|
||||
sed -i -e "s|mktemp|${coreutils}/bin/mktemp|" lock
|
||||
sed -i -e "s|\`pwd\`|$out/share/i3lock-fancy|" lock
|
||||
sed -i -e "s|dirname|${coreutils}/bin/dirname|" lock
|
||||
sed -i -e "s|rm |${coreutils}/bin/rm |" lock
|
||||
sed -i -e "s|scrot |${scrot}/bin/scrot |" lock
|
||||
sed -i -e "s|(mktemp)|(${coreutils}/bin/mktemp)|" lock
|
||||
sed -i -e "s|'rm -f |'${coreutils}/bin/rm -f |" lock
|
||||
sed -i -e "s|scrot -z |${scrot}/bin/scrot -z |" lock
|
||||
sed -i -e "s|convert |${imagemagick.out}/bin/convert |" lock
|
||||
sed -i -e "s|awk |${gawk}/bin/awk|" lock
|
||||
sed -i -e "s|i3lock |${i3lock-color}/bin/i3lock-color |" lock
|
||||
sed -i -e "s|awk -F|${gawk}/bin/awk -F|" lock
|
||||
sed -i -e "s| awk | ${gawk}/bin/awk |" lock
|
||||
sed -i -e "s|i3lock -n |${i3lock-color}/bin/i3lock-color -n |" lock
|
||||
sed -i -e 's|ICON="$SCRIPTPATH/lockdark.png"|ICON="'$out'/share/i3lock-fancy/lockdark.png"|' lock
|
||||
sed -i -e 's|ICON="$SCRIPTPATH/lock.png"|ICON="'$out'/share/i3lock-fancy/lock.png"|' lock
|
||||
'';
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin $out/share/i3lock-fancy
|
||||
|
@ -1182,6 +1182,30 @@ rec {
|
||||
packages = commonOpenSUSEPackages;
|
||||
};
|
||||
|
||||
opensuse132i386 = {
|
||||
name = "opensuse-13.2-i586";
|
||||
fullName = "openSUSE 13.2 (i586)";
|
||||
packagesList = fetchurl {
|
||||
url = mirror://opensuse/13.2/repo/oss/suse/repodata/485e4f44e3c3ef3133accb589480933c2fe48dedfc44a7e5f9d5437cd9122a99-primary.xml.gz;
|
||||
sha256 = "0klzmk680as4sb6h1wl0ynj0dds3m70qim66wwbiqlnnp6xkf83y";
|
||||
};
|
||||
urlPrefix = mirror://opensuse/13.2/repo/oss/suse/;
|
||||
archs = ["noarch" "i586"];
|
||||
packages = commonOpenSUSEPackages;
|
||||
};
|
||||
|
||||
opensuse132x86_64 = {
|
||||
name = "opensuse-13.2-x86_64";
|
||||
fullName = "openSUSE 13.2 (x86_64)";
|
||||
packagesList = fetchurl {
|
||||
url = mirror://opensuse/13.2/repo/oss/suse/repodata/485e4f44e3c3ef3133accb589480933c2fe48dedfc44a7e5f9d5437cd9122a99-primary.xml.gz;
|
||||
sha256 = "0klzmk680as4sb6h1wl0ynj0dds3m70qim66wwbiqlnnp6xkf83y";
|
||||
};
|
||||
urlPrefix = mirror://opensuse/13.2/repo/oss/suse/;
|
||||
archs = ["noarch" "x86_64"];
|
||||
packages = commonOpenSUSEPackages;
|
||||
};
|
||||
|
||||
centos65i386 = {
|
||||
name = "centos-6.5-i386";
|
||||
fullName = "CentOS 6.5 (i386)";
|
||||
@ -1191,7 +1215,7 @@ rec {
|
||||
};
|
||||
urlPrefix = http://vault.centos.org/6.5/os/i386;
|
||||
archs = ["noarch" "i386"];
|
||||
packages = commonCentOSPackages;
|
||||
packages = commonCentOSPackages ++ [ "procps" ];
|
||||
};
|
||||
|
||||
centos65x86_64 = {
|
||||
@ -1203,7 +1227,20 @@ rec {
|
||||
};
|
||||
urlPrefix = http://vault.centos.org/6.5/os/x86_64/;
|
||||
archs = ["noarch" "x86_64"];
|
||||
packages = commonCentOSPackages;
|
||||
packages = commonCentOSPackages ++ [ "procps" ];
|
||||
};
|
||||
|
||||
# Note: no i386 release for 7.x
|
||||
centos71x86_64 = {
|
||||
name = "centos-7.1-x86_64";
|
||||
fullName = "CentOS 7.1 (x86_64)";
|
||||
packagesList = fetchurl {
|
||||
url = http://vault.centos.org/7.1.1503/os/x86_64/repodata/1386c5af55bda40669bb5ed91e0a22796c3ed7325367506109b09ea2657f22bd-primary.xml.gz;
|
||||
sha256 = "1g92gxjs57mh15hm0rsk6bbkwv3r4851xnaypdlhd95xanpwb1hk";
|
||||
};
|
||||
urlPrefix = http://vault.centos.org/7.1.1503/os/x86_64;
|
||||
archs = ["noarch" "x86_64"];
|
||||
packages = commonCentOSPackages ++ [ "procps-ng" ];
|
||||
};
|
||||
|
||||
};
|
||||
@ -1795,22 +1832,22 @@ rec {
|
||||
debian70x86_64 = debian7x86_64;
|
||||
|
||||
debian7i386 = {
|
||||
name = "debian-7.9-wheezy-i386";
|
||||
fullName = "Debian 7.9 Wheezy (i386)";
|
||||
name = "debian-7.10-wheezy-i386";
|
||||
fullName = "Debian 7.10 Wheezy (i386)";
|
||||
packagesList = fetchurl {
|
||||
url = mirror://debian/dists/wheezy/main/binary-i386/Packages.bz2;
|
||||
sha256 = "a390176680327fd52d6aada6dd8eee051c94ce49d80f0a68dc90ef51b81c3169";
|
||||
sha256 = "02dncyhz3c02jzdxqngbhfic7acsa7p2yv76xwrhawj38yjgqzrm";
|
||||
};
|
||||
urlPrefix = mirror://debian;
|
||||
packages = commonDebianPackages;
|
||||
};
|
||||
|
||||
debian7x86_64 = {
|
||||
name = "debian-7.9-wheezy-amd64";
|
||||
fullName = "Debian 7.9 Wheezy (amd64)";
|
||||
name = "debian-7.10-wheezy-amd64";
|
||||
fullName = "Debian 7.10 Wheezy (amd64)";
|
||||
packagesList = fetchurl {
|
||||
url = mirror://debian/dists/wheezy/main/binary-amd64/Packages.bz2;
|
||||
sha256 = "818d78c648505f91cb99f269178d4f62b56d4209cd51bebbc9bf2bd31c8c7156";
|
||||
sha256 = "1kir3j6y81s914njvs0sbwywq7qv28f8s615r9agg9s0h5g760fw";
|
||||
};
|
||||
urlPrefix = mirror://debian;
|
||||
packages = commonDebianPackages;
|
||||
@ -1879,7 +1916,6 @@ rec {
|
||||
"patch"
|
||||
"perl"
|
||||
"pkgconfig"
|
||||
"procps"
|
||||
"rpm"
|
||||
"rpm-build"
|
||||
"tar"
|
||||
|
@ -8,7 +8,7 @@ let
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "geolite-legacy-${version}";
|
||||
version = "2016-05-16";
|
||||
version = "2016-05-23";
|
||||
|
||||
srcGeoIP = fetchDB
|
||||
"GeoLiteCountry/GeoIP.dat.gz" "GeoIP.dat.gz"
|
||||
@ -24,10 +24,10 @@ stdenv.mkDerivation rec {
|
||||
"1v8wdqh6yjicb7bdcxp7v5dimlrny1fiynf4wr6wh65vr738csy2";
|
||||
srcGeoIPASNum = fetchDB
|
||||
"asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz"
|
||||
"1nplklc88jn0iqla9ar5vgcq4wvkqkd5pbgvn89757466dl1igiw";
|
||||
"0jx4rg2zxpcwhc27ph8hbbl0vdjpdd6d8c7ifxfxrz9jdjvzz6q5";
|
||||
srcGeoIPASNumv6 = fetchDB
|
||||
"asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz"
|
||||
"06wmjr4frc83v68abpnad8z9xy4fsjsvwild6bw7816w9rdvdqzw";
|
||||
"0wax1z8fnldmkv0mh35ad738daqdcszs90cabzg472d1iys937av";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "GeoLite Legacy IP geolocation databases";
|
||||
|
@ -1,7 +1,7 @@
|
||||
{ stdenv, fetchgit, python }:
|
||||
|
||||
let
|
||||
tag = "1.35.4";
|
||||
tag = "1.36.4";
|
||||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -10,13 +10,13 @@ stdenv.mkDerivation rec {
|
||||
srcFC = fetchgit {
|
||||
url = git://github.com/kripken/emscripten-fastcomp;
|
||||
rev = "refs/tags/${tag}";
|
||||
sha256 = "3bd50787d78381f684f9b3f46fc91cc3d1803c3389e19ec41ee59c2deaf727d8";
|
||||
sha256 = "0qmrc83yrlmlb11gqixxnwychif964054lgdiycz0l10yj0q37j5";
|
||||
};
|
||||
|
||||
srcFL = fetchgit {
|
||||
url = git://github.com/kripken/emscripten-fastcomp-clang;
|
||||
rev = "refs/tags/${tag}";
|
||||
sha256 = "ec0d22c04eec5f84695401e19a52704b28e8d2779b87388f399b5f63b54a9862";
|
||||
sha256 = "1av58y9s24l32hsdgp3jh4fkc5005xbzzjd27in2r9q3p6igd5d4";
|
||||
};
|
||||
|
||||
buildInputs = [ python ];
|
||||
@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = https://github.com/kripken/emscripten-fastcomp;
|
||||
description = "emscripten llvm";
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ bosu ];
|
||||
maintainers = with maintainers; [ qknight ];
|
||||
license = stdenv.lib.licenses.ncsa;
|
||||
};
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
{ stdenv, fetchgit, emscriptenfastcomp, python, nodejs, closurecompiler, jre }:
|
||||
|
||||
let
|
||||
tag = "1.35.4";
|
||||
tag = "1.36.4";
|
||||
appdir = "share/emscripten";
|
||||
in
|
||||
|
||||
@ -11,10 +11,10 @@ stdenv.mkDerivation rec {
|
||||
src = fetchgit {
|
||||
url = git://github.com/kripken/emscripten;
|
||||
rev = "refs/tags/${tag}";
|
||||
sha256 = "466500356c8c0fbcee495b2dbd2ccf0bf9d7eaf303d274ebaf491122759dd233";
|
||||
sha256 = "02m85xh9qx29kb6v11y072gk8fvyc23964wclr70c69j2gal2qpr";
|
||||
};
|
||||
|
||||
buildCommand = ''
|
||||
buildCommand = ''
|
||||
mkdir -p $out/${appdir}
|
||||
cp -r $src/* $out/${appdir}
|
||||
chmod -R +w $out/${appdir}
|
||||
@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = https://github.com/kripken/emscripten;
|
||||
description = "An LLVM-to-JavaScript Compiler";
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ bosu ];
|
||||
maintainers = with maintainers; [ qknight ];
|
||||
license = licenses.ncsa;
|
||||
};
|
||||
}
|
||||
|
@ -5,7 +5,7 @@
|
||||
let
|
||||
inherit (bootPkgs) ghc;
|
||||
|
||||
in
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
version = "8.0.1";
|
||||
name = "ghc-${version}";
|
||||
|
@ -96,7 +96,7 @@ self: super: {
|
||||
src = pkgs.fetchgit {
|
||||
url = https://github.com/ekmett/linear.git;
|
||||
rev = "8da21dc72714441cb34d6eabd6c224819787365c";
|
||||
sha256 = "08l0z6zrlbals2bwc2abbh31j9gf90vgp8sy3dcrp0knc98bgaa1";
|
||||
sha256 = "0f4r7ww8aygxv0mqdsn9d7fjvrvr66f04v004kh2v5d01dp8d7f9";
|
||||
};
|
||||
});
|
||||
|
||||
@ -161,4 +161,6 @@ self: super: {
|
||||
buildDepends = [ primitive ];
|
||||
license = pkgs.stdenv.lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
MonadCatchIO-transformers = doJailbreak super.MonadCatchIO-transformers;
|
||||
}
|
||||
|
@ -3558,6 +3558,8 @@ self: super: {
|
||||
"getopt-simple" = dontDistribute super."getopt-simple";
|
||||
"gf" = dontDistribute super."gf";
|
||||
"ggtsTC" = dontDistribute super."ggtsTC";
|
||||
"ghc-boot" = dontDistribute super."ghc-boot";
|
||||
"ghc-boot-th" = dontDistribute super."ghc-boot-th";
|
||||
"ghc-core" = dontDistribute super."ghc-core";
|
||||
"ghc-core-html" = dontDistribute super."ghc-core-html";
|
||||
"ghc-datasize" = dontDistribute super."ghc-datasize";
|
||||
@ -3591,6 +3593,7 @@ self: super: {
|
||||
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
|
||||
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci" = dontDistribute super."ghci";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
"ghci-lib" = dontDistribute super."ghci-lib";
|
||||
@ -3637,6 +3640,7 @@ self: super: {
|
||||
"gipeda" = dontDistribute super."gipeda";
|
||||
"giphy-api" = dontDistribute super."giphy-api";
|
||||
"gist" = dontDistribute super."gist";
|
||||
"git" = dontDistribute super."git";
|
||||
"git-all" = dontDistribute super."git-all";
|
||||
"git-annex" = dontDistribute super."git-annex";
|
||||
"git-checklist" = dontDistribute super."git-checklist";
|
||||
@ -4133,6 +4137,7 @@ self: super: {
|
||||
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
|
||||
"harp" = dontDistribute super."harp";
|
||||
"harpy" = dontDistribute super."harpy";
|
||||
"harvest-api" = dontDistribute super."harvest-api";
|
||||
"has" = dontDistribute super."has";
|
||||
"has-th" = dontDistribute super."has-th";
|
||||
"hascal" = dontDistribute super."hascal";
|
||||
@ -5133,6 +5138,7 @@ self: super: {
|
||||
"instrument-chord" = dontDistribute super."instrument-chord";
|
||||
"int-cast" = dontDistribute super."int-cast";
|
||||
"integer-pure" = dontDistribute super."integer-pure";
|
||||
"integer-simple" = dontDistribute super."integer-simple";
|
||||
"integration" = doDistribute super."integration_0_2_0_1";
|
||||
"intel-aes" = dontDistribute super."intel-aes";
|
||||
"interchangeable" = dontDistribute super."interchangeable";
|
||||
@ -7060,6 +7066,7 @@ self: super: {
|
||||
"push-notify-general" = dontDistribute super."push-notify-general";
|
||||
"pusher-haskell" = dontDistribute super."pusher-haskell";
|
||||
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
|
||||
"pusher-ws" = dontDistribute super."pusher-ws";
|
||||
"pushme" = dontDistribute super."pushme";
|
||||
"putlenses" = dontDistribute super."putlenses";
|
||||
"puzzle-draw" = dontDistribute super."puzzle-draw";
|
||||
@ -7091,6 +7098,7 @@ self: super: {
|
||||
"queuelike" = dontDistribute super."queuelike";
|
||||
"quick-generator" = dontDistribute super."quick-generator";
|
||||
"quick-schema" = dontDistribute super."quick-schema";
|
||||
"quickbooks" = dontDistribute super."quickbooks";
|
||||
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
|
||||
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
|
||||
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_9";
|
||||
@ -7257,6 +7265,7 @@ self: super: {
|
||||
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
|
||||
"reflex-gloss" = dontDistribute super."reflex-gloss";
|
||||
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
|
||||
"reflex-jsx" = dontDistribute super."reflex-jsx";
|
||||
"reflex-orphans" = dontDistribute super."reflex-orphans";
|
||||
"reflex-transformers" = dontDistribute super."reflex-transformers";
|
||||
"reform" = dontDistribute super."reform";
|
||||
@ -7442,6 +7451,7 @@ self: super: {
|
||||
"rosso" = dontDistribute super."rosso";
|
||||
"rot13" = dontDistribute super."rot13";
|
||||
"rotating-log" = dontDistribute super."rotating-log";
|
||||
"roundRobin" = dontDistribute super."roundRobin";
|
||||
"rounding" = dontDistribute super."rounding";
|
||||
"roundtrip" = dontDistribute super."roundtrip";
|
||||
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
|
||||
@ -7663,6 +7673,7 @@ self: super: {
|
||||
"servant-postgresql" = dontDistribute super."servant-postgresql";
|
||||
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
|
||||
"servant-response" = dontDistribute super."servant-response";
|
||||
"servant-router" = dontDistribute super."servant-router";
|
||||
"servant-scotty" = dontDistribute super."servant-scotty";
|
||||
"servant-server" = dontDistribute super."servant-server";
|
||||
"servant-swagger" = dontDistribute super."servant-swagger";
|
||||
@ -8127,6 +8138,7 @@ self: super: {
|
||||
"storablevector" = dontDistribute super."storablevector";
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"store" = dontDistribute super."store";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
@ -8187,6 +8199,7 @@ self: super: {
|
||||
"subnet" = dontDistribute super."subnet";
|
||||
"subtitleParser" = dontDistribute super."subtitleParser";
|
||||
"subtitles" = dontDistribute super."subtitles";
|
||||
"subwordgraph" = dontDistribute super."subwordgraph";
|
||||
"success" = dontDistribute super."success";
|
||||
"suffixarray" = dontDistribute super."suffixarray";
|
||||
"suffixtree" = dontDistribute super."suffixtree";
|
||||
@ -8406,6 +8419,7 @@ self: super: {
|
||||
"test-shouldbe" = dontDistribute super."test-shouldbe";
|
||||
"test-simple" = dontDistribute super."test-simple";
|
||||
"testPkg" = dontDistribute super."testPkg";
|
||||
"testbench" = dontDistribute super."testbench";
|
||||
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
|
||||
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
|
||||
"testloop" = dontDistribute super."testloop";
|
||||
@ -8418,6 +8432,7 @@ self: super: {
|
||||
"text" = doDistribute super."text_1_1_1_3";
|
||||
"text-and-plots" = dontDistribute super."text-and-plots";
|
||||
"text-binary" = doDistribute super."text-binary_0_1_0";
|
||||
"text-conversions" = dontDistribute super."text-conversions";
|
||||
"text-format-simple" = dontDistribute super."text-format-simple";
|
||||
"text-icu" = doDistribute super."text-icu_0_7_0_0";
|
||||
"text-icu-translit" = dontDistribute super."text-icu-translit";
|
||||
@ -8601,6 +8616,7 @@ self: super: {
|
||||
"tracetree" = dontDistribute super."tracetree";
|
||||
"tracker" = dontDistribute super."tracker";
|
||||
"tracy" = dontDistribute super."tracy";
|
||||
"traildb" = dontDistribute super."traildb";
|
||||
"trajectory" = dontDistribute super."trajectory";
|
||||
"transactional-events" = dontDistribute super."transactional-events";
|
||||
"transf" = dontDistribute super."transf";
|
||||
@ -9106,6 +9122,7 @@ self: super: {
|
||||
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
|
||||
"web-css" = dontDistribute super."web-css";
|
||||
"web-encodings" = dontDistribute super."web-encodings";
|
||||
"web-inv-route" = dontDistribute super."web-inv-route";
|
||||
"web-mongrel2" = dontDistribute super."web-mongrel2";
|
||||
"web-page" = dontDistribute super."web-page";
|
||||
"web-plugins" = dontDistribute super."web-plugins";
|
||||
@ -9160,6 +9177,7 @@ self: super: {
|
||||
"whois" = dontDistribute super."whois";
|
||||
"why3" = dontDistribute super."why3";
|
||||
"wigner-symbols" = dontDistribute super."wigner-symbols";
|
||||
"wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
|
||||
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
|
||||
"win-hp-path" = dontDistribute super."win-hp-path";
|
||||
"windowslive" = dontDistribute super."windowslive";
|
||||
@ -9184,6 +9202,7 @@ self: super: {
|
||||
"wolf" = dontDistribute super."wolf";
|
||||
"woot" = dontDistribute super."woot";
|
||||
"word-trie" = dontDistribute super."word-trie";
|
||||
"word-vector" = dontDistribute super."word-vector";
|
||||
"word24" = dontDistribute super."word24";
|
||||
"word8" = doDistribute super."word8_0_1_1";
|
||||
"wordcloud" = dontDistribute super."wordcloud";
|
||||
@ -9308,6 +9327,7 @@ self: super: {
|
||||
"xournal-parser" = dontDistribute super."xournal-parser";
|
||||
"xournal-render" = dontDistribute super."xournal-render";
|
||||
"xournal-types" = dontDistribute super."xournal-types";
|
||||
"xpathdsv" = dontDistribute super."xpathdsv";
|
||||
"xsact" = dontDistribute super."xsact";
|
||||
"xsd" = dontDistribute super."xsd";
|
||||
"xsha1" = dontDistribute super."xsha1";
|
||||
@ -9392,6 +9412,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-ip" = dontDistribute super."yesod-ip";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
|
@ -3558,6 +3558,8 @@ self: super: {
|
||||
"getopt-simple" = dontDistribute super."getopt-simple";
|
||||
"gf" = dontDistribute super."gf";
|
||||
"ggtsTC" = dontDistribute super."ggtsTC";
|
||||
"ghc-boot" = dontDistribute super."ghc-boot";
|
||||
"ghc-boot-th" = dontDistribute super."ghc-boot-th";
|
||||
"ghc-core" = dontDistribute super."ghc-core";
|
||||
"ghc-core-html" = dontDistribute super."ghc-core-html";
|
||||
"ghc-datasize" = dontDistribute super."ghc-datasize";
|
||||
@ -3591,6 +3593,7 @@ self: super: {
|
||||
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
|
||||
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci" = dontDistribute super."ghci";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
"ghci-lib" = dontDistribute super."ghci-lib";
|
||||
@ -3637,6 +3640,7 @@ self: super: {
|
||||
"gipeda" = dontDistribute super."gipeda";
|
||||
"giphy-api" = dontDistribute super."giphy-api";
|
||||
"gist" = dontDistribute super."gist";
|
||||
"git" = dontDistribute super."git";
|
||||
"git-all" = dontDistribute super."git-all";
|
||||
"git-annex" = dontDistribute super."git-annex";
|
||||
"git-checklist" = dontDistribute super."git-checklist";
|
||||
@ -4133,6 +4137,7 @@ self: super: {
|
||||
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
|
||||
"harp" = dontDistribute super."harp";
|
||||
"harpy" = dontDistribute super."harpy";
|
||||
"harvest-api" = dontDistribute super."harvest-api";
|
||||
"has" = dontDistribute super."has";
|
||||
"has-th" = dontDistribute super."has-th";
|
||||
"hascal" = dontDistribute super."hascal";
|
||||
@ -5133,6 +5138,7 @@ self: super: {
|
||||
"instrument-chord" = dontDistribute super."instrument-chord";
|
||||
"int-cast" = dontDistribute super."int-cast";
|
||||
"integer-pure" = dontDistribute super."integer-pure";
|
||||
"integer-simple" = dontDistribute super."integer-simple";
|
||||
"integration" = doDistribute super."integration_0_2_0_1";
|
||||
"intel-aes" = dontDistribute super."intel-aes";
|
||||
"interchangeable" = dontDistribute super."interchangeable";
|
||||
@ -7060,6 +7066,7 @@ self: super: {
|
||||
"push-notify-general" = dontDistribute super."push-notify-general";
|
||||
"pusher-haskell" = dontDistribute super."pusher-haskell";
|
||||
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
|
||||
"pusher-ws" = dontDistribute super."pusher-ws";
|
||||
"pushme" = dontDistribute super."pushme";
|
||||
"putlenses" = dontDistribute super."putlenses";
|
||||
"puzzle-draw" = dontDistribute super."puzzle-draw";
|
||||
@ -7091,6 +7098,7 @@ self: super: {
|
||||
"queuelike" = dontDistribute super."queuelike";
|
||||
"quick-generator" = dontDistribute super."quick-generator";
|
||||
"quick-schema" = dontDistribute super."quick-schema";
|
||||
"quickbooks" = dontDistribute super."quickbooks";
|
||||
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
|
||||
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
|
||||
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_9";
|
||||
@ -7257,6 +7265,7 @@ self: super: {
|
||||
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
|
||||
"reflex-gloss" = dontDistribute super."reflex-gloss";
|
||||
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
|
||||
"reflex-jsx" = dontDistribute super."reflex-jsx";
|
||||
"reflex-orphans" = dontDistribute super."reflex-orphans";
|
||||
"reflex-transformers" = dontDistribute super."reflex-transformers";
|
||||
"reform" = dontDistribute super."reform";
|
||||
@ -7442,6 +7451,7 @@ self: super: {
|
||||
"rosso" = dontDistribute super."rosso";
|
||||
"rot13" = dontDistribute super."rot13";
|
||||
"rotating-log" = dontDistribute super."rotating-log";
|
||||
"roundRobin" = dontDistribute super."roundRobin";
|
||||
"rounding" = dontDistribute super."rounding";
|
||||
"roundtrip" = dontDistribute super."roundtrip";
|
||||
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
|
||||
@ -7663,6 +7673,7 @@ self: super: {
|
||||
"servant-postgresql" = dontDistribute super."servant-postgresql";
|
||||
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
|
||||
"servant-response" = dontDistribute super."servant-response";
|
||||
"servant-router" = dontDistribute super."servant-router";
|
||||
"servant-scotty" = dontDistribute super."servant-scotty";
|
||||
"servant-server" = dontDistribute super."servant-server";
|
||||
"servant-swagger" = dontDistribute super."servant-swagger";
|
||||
@ -8127,6 +8138,7 @@ self: super: {
|
||||
"storablevector" = dontDistribute super."storablevector";
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"store" = dontDistribute super."store";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
@ -8187,6 +8199,7 @@ self: super: {
|
||||
"subnet" = dontDistribute super."subnet";
|
||||
"subtitleParser" = dontDistribute super."subtitleParser";
|
||||
"subtitles" = dontDistribute super."subtitles";
|
||||
"subwordgraph" = dontDistribute super."subwordgraph";
|
||||
"success" = dontDistribute super."success";
|
||||
"suffixarray" = dontDistribute super."suffixarray";
|
||||
"suffixtree" = dontDistribute super."suffixtree";
|
||||
@ -8406,6 +8419,7 @@ self: super: {
|
||||
"test-shouldbe" = dontDistribute super."test-shouldbe";
|
||||
"test-simple" = dontDistribute super."test-simple";
|
||||
"testPkg" = dontDistribute super."testPkg";
|
||||
"testbench" = dontDistribute super."testbench";
|
||||
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
|
||||
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
|
||||
"testloop" = dontDistribute super."testloop";
|
||||
@ -8418,6 +8432,7 @@ self: super: {
|
||||
"text" = doDistribute super."text_1_1_1_3";
|
||||
"text-and-plots" = dontDistribute super."text-and-plots";
|
||||
"text-binary" = doDistribute super."text-binary_0_1_0";
|
||||
"text-conversions" = dontDistribute super."text-conversions";
|
||||
"text-format-simple" = dontDistribute super."text-format-simple";
|
||||
"text-icu" = doDistribute super."text-icu_0_7_0_0";
|
||||
"text-icu-translit" = dontDistribute super."text-icu-translit";
|
||||
@ -8601,6 +8616,7 @@ self: super: {
|
||||
"tracetree" = dontDistribute super."tracetree";
|
||||
"tracker" = dontDistribute super."tracker";
|
||||
"tracy" = dontDistribute super."tracy";
|
||||
"traildb" = dontDistribute super."traildb";
|
||||
"trajectory" = dontDistribute super."trajectory";
|
||||
"transactional-events" = dontDistribute super."transactional-events";
|
||||
"transf" = dontDistribute super."transf";
|
||||
@ -9106,6 +9122,7 @@ self: super: {
|
||||
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
|
||||
"web-css" = dontDistribute super."web-css";
|
||||
"web-encodings" = dontDistribute super."web-encodings";
|
||||
"web-inv-route" = dontDistribute super."web-inv-route";
|
||||
"web-mongrel2" = dontDistribute super."web-mongrel2";
|
||||
"web-page" = dontDistribute super."web-page";
|
||||
"web-plugins" = dontDistribute super."web-plugins";
|
||||
@ -9160,6 +9177,7 @@ self: super: {
|
||||
"whois" = dontDistribute super."whois";
|
||||
"why3" = dontDistribute super."why3";
|
||||
"wigner-symbols" = dontDistribute super."wigner-symbols";
|
||||
"wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
|
||||
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
|
||||
"win-hp-path" = dontDistribute super."win-hp-path";
|
||||
"windowslive" = dontDistribute super."windowslive";
|
||||
@ -9184,6 +9202,7 @@ self: super: {
|
||||
"wolf" = dontDistribute super."wolf";
|
||||
"woot" = dontDistribute super."woot";
|
||||
"word-trie" = dontDistribute super."word-trie";
|
||||
"word-vector" = dontDistribute super."word-vector";
|
||||
"word24" = dontDistribute super."word24";
|
||||
"word8" = doDistribute super."word8_0_1_1";
|
||||
"wordcloud" = dontDistribute super."wordcloud";
|
||||
@ -9308,6 +9327,7 @@ self: super: {
|
||||
"xournal-parser" = dontDistribute super."xournal-parser";
|
||||
"xournal-render" = dontDistribute super."xournal-render";
|
||||
"xournal-types" = dontDistribute super."xournal-types";
|
||||
"xpathdsv" = dontDistribute super."xpathdsv";
|
||||
"xsact" = dontDistribute super."xsact";
|
||||
"xsd" = dontDistribute super."xsd";
|
||||
"xsha1" = dontDistribute super."xsha1";
|
||||
@ -9392,6 +9412,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-ip" = dontDistribute super."yesod-ip";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
|
@ -3558,6 +3558,8 @@ self: super: {
|
||||
"getopt-simple" = dontDistribute super."getopt-simple";
|
||||
"gf" = dontDistribute super."gf";
|
||||
"ggtsTC" = dontDistribute super."ggtsTC";
|
||||
"ghc-boot" = dontDistribute super."ghc-boot";
|
||||
"ghc-boot-th" = dontDistribute super."ghc-boot-th";
|
||||
"ghc-core" = dontDistribute super."ghc-core";
|
||||
"ghc-core-html" = dontDistribute super."ghc-core-html";
|
||||
"ghc-datasize" = dontDistribute super."ghc-datasize";
|
||||
@ -3591,6 +3593,7 @@ self: super: {
|
||||
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
|
||||
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci" = dontDistribute super."ghci";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
"ghci-lib" = dontDistribute super."ghci-lib";
|
||||
@ -3637,6 +3640,7 @@ self: super: {
|
||||
"gipeda" = dontDistribute super."gipeda";
|
||||
"giphy-api" = dontDistribute super."giphy-api";
|
||||
"gist" = dontDistribute super."gist";
|
||||
"git" = dontDistribute super."git";
|
||||
"git-all" = dontDistribute super."git-all";
|
||||
"git-annex" = dontDistribute super."git-annex";
|
||||
"git-checklist" = dontDistribute super."git-checklist";
|
||||
@ -4133,6 +4137,7 @@ self: super: {
|
||||
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
|
||||
"harp" = dontDistribute super."harp";
|
||||
"harpy" = dontDistribute super."harpy";
|
||||
"harvest-api" = dontDistribute super."harvest-api";
|
||||
"has" = dontDistribute super."has";
|
||||
"has-th" = dontDistribute super."has-th";
|
||||
"hascal" = dontDistribute super."hascal";
|
||||
@ -5133,6 +5138,7 @@ self: super: {
|
||||
"instrument-chord" = dontDistribute super."instrument-chord";
|
||||
"int-cast" = dontDistribute super."int-cast";
|
||||
"integer-pure" = dontDistribute super."integer-pure";
|
||||
"integer-simple" = dontDistribute super."integer-simple";
|
||||
"integration" = doDistribute super."integration_0_2_0_1";
|
||||
"intel-aes" = dontDistribute super."intel-aes";
|
||||
"interchangeable" = dontDistribute super."interchangeable";
|
||||
@ -7060,6 +7066,7 @@ self: super: {
|
||||
"push-notify-general" = dontDistribute super."push-notify-general";
|
||||
"pusher-haskell" = dontDistribute super."pusher-haskell";
|
||||
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
|
||||
"pusher-ws" = dontDistribute super."pusher-ws";
|
||||
"pushme" = dontDistribute super."pushme";
|
||||
"putlenses" = dontDistribute super."putlenses";
|
||||
"puzzle-draw" = dontDistribute super."puzzle-draw";
|
||||
@ -7091,6 +7098,7 @@ self: super: {
|
||||
"queuelike" = dontDistribute super."queuelike";
|
||||
"quick-generator" = dontDistribute super."quick-generator";
|
||||
"quick-schema" = dontDistribute super."quick-schema";
|
||||
"quickbooks" = dontDistribute super."quickbooks";
|
||||
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
|
||||
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
|
||||
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_9";
|
||||
@ -7257,6 +7265,7 @@ self: super: {
|
||||
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
|
||||
"reflex-gloss" = dontDistribute super."reflex-gloss";
|
||||
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
|
||||
"reflex-jsx" = dontDistribute super."reflex-jsx";
|
||||
"reflex-orphans" = dontDistribute super."reflex-orphans";
|
||||
"reflex-transformers" = dontDistribute super."reflex-transformers";
|
||||
"reform" = dontDistribute super."reform";
|
||||
@ -7442,6 +7451,7 @@ self: super: {
|
||||
"rosso" = dontDistribute super."rosso";
|
||||
"rot13" = dontDistribute super."rot13";
|
||||
"rotating-log" = dontDistribute super."rotating-log";
|
||||
"roundRobin" = dontDistribute super."roundRobin";
|
||||
"rounding" = dontDistribute super."rounding";
|
||||
"roundtrip" = dontDistribute super."roundtrip";
|
||||
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
|
||||
@ -7663,6 +7673,7 @@ self: super: {
|
||||
"servant-postgresql" = dontDistribute super."servant-postgresql";
|
||||
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
|
||||
"servant-response" = dontDistribute super."servant-response";
|
||||
"servant-router" = dontDistribute super."servant-router";
|
||||
"servant-scotty" = dontDistribute super."servant-scotty";
|
||||
"servant-server" = dontDistribute super."servant-server";
|
||||
"servant-swagger" = dontDistribute super."servant-swagger";
|
||||
@ -8127,6 +8138,7 @@ self: super: {
|
||||
"storablevector" = dontDistribute super."storablevector";
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"store" = dontDistribute super."store";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
@ -8187,6 +8199,7 @@ self: super: {
|
||||
"subnet" = dontDistribute super."subnet";
|
||||
"subtitleParser" = dontDistribute super."subtitleParser";
|
||||
"subtitles" = dontDistribute super."subtitles";
|
||||
"subwordgraph" = dontDistribute super."subwordgraph";
|
||||
"success" = dontDistribute super."success";
|
||||
"suffixarray" = dontDistribute super."suffixarray";
|
||||
"suffixtree" = dontDistribute super."suffixtree";
|
||||
@ -8406,6 +8419,7 @@ self: super: {
|
||||
"test-shouldbe" = dontDistribute super."test-shouldbe";
|
||||
"test-simple" = dontDistribute super."test-simple";
|
||||
"testPkg" = dontDistribute super."testPkg";
|
||||
"testbench" = dontDistribute super."testbench";
|
||||
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
|
||||
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
|
||||
"testloop" = dontDistribute super."testloop";
|
||||
@ -8418,6 +8432,7 @@ self: super: {
|
||||
"text" = doDistribute super."text_1_1_1_3";
|
||||
"text-and-plots" = dontDistribute super."text-and-plots";
|
||||
"text-binary" = doDistribute super."text-binary_0_1_0";
|
||||
"text-conversions" = dontDistribute super."text-conversions";
|
||||
"text-format-simple" = dontDistribute super."text-format-simple";
|
||||
"text-icu" = doDistribute super."text-icu_0_7_0_0";
|
||||
"text-icu-translit" = dontDistribute super."text-icu-translit";
|
||||
@ -8601,6 +8616,7 @@ self: super: {
|
||||
"tracetree" = dontDistribute super."tracetree";
|
||||
"tracker" = dontDistribute super."tracker";
|
||||
"tracy" = dontDistribute super."tracy";
|
||||
"traildb" = dontDistribute super."traildb";
|
||||
"trajectory" = dontDistribute super."trajectory";
|
||||
"transactional-events" = dontDistribute super."transactional-events";
|
||||
"transf" = dontDistribute super."transf";
|
||||
@ -9106,6 +9122,7 @@ self: super: {
|
||||
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
|
||||
"web-css" = dontDistribute super."web-css";
|
||||
"web-encodings" = dontDistribute super."web-encodings";
|
||||
"web-inv-route" = dontDistribute super."web-inv-route";
|
||||
"web-mongrel2" = dontDistribute super."web-mongrel2";
|
||||
"web-page" = dontDistribute super."web-page";
|
||||
"web-plugins" = dontDistribute super."web-plugins";
|
||||
@ -9160,6 +9177,7 @@ self: super: {
|
||||
"whois" = dontDistribute super."whois";
|
||||
"why3" = dontDistribute super."why3";
|
||||
"wigner-symbols" = dontDistribute super."wigner-symbols";
|
||||
"wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
|
||||
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
|
||||
"win-hp-path" = dontDistribute super."win-hp-path";
|
||||
"windowslive" = dontDistribute super."windowslive";
|
||||
@ -9184,6 +9202,7 @@ self: super: {
|
||||
"wolf" = dontDistribute super."wolf";
|
||||
"woot" = dontDistribute super."woot";
|
||||
"word-trie" = dontDistribute super."word-trie";
|
||||
"word-vector" = dontDistribute super."word-vector";
|
||||
"word24" = dontDistribute super."word24";
|
||||
"word8" = doDistribute super."word8_0_1_1";
|
||||
"wordcloud" = dontDistribute super."wordcloud";
|
||||
@ -9308,6 +9327,7 @@ self: super: {
|
||||
"xournal-parser" = dontDistribute super."xournal-parser";
|
||||
"xournal-render" = dontDistribute super."xournal-render";
|
||||
"xournal-types" = dontDistribute super."xournal-types";
|
||||
"xpathdsv" = dontDistribute super."xpathdsv";
|
||||
"xsact" = dontDistribute super."xsact";
|
||||
"xsd" = dontDistribute super."xsd";
|
||||
"xsha1" = dontDistribute super."xsha1";
|
||||
@ -9392,6 +9412,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-ip" = dontDistribute super."yesod-ip";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
|
@ -3558,6 +3558,8 @@ self: super: {
|
||||
"getopt-simple" = dontDistribute super."getopt-simple";
|
||||
"gf" = dontDistribute super."gf";
|
||||
"ggtsTC" = dontDistribute super."ggtsTC";
|
||||
"ghc-boot" = dontDistribute super."ghc-boot";
|
||||
"ghc-boot-th" = dontDistribute super."ghc-boot-th";
|
||||
"ghc-core" = dontDistribute super."ghc-core";
|
||||
"ghc-core-html" = dontDistribute super."ghc-core-html";
|
||||
"ghc-datasize" = dontDistribute super."ghc-datasize";
|
||||
@ -3591,6 +3593,7 @@ self: super: {
|
||||
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
|
||||
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci" = dontDistribute super."ghci";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
"ghci-lib" = dontDistribute super."ghci-lib";
|
||||
@ -3637,6 +3640,7 @@ self: super: {
|
||||
"gipeda" = dontDistribute super."gipeda";
|
||||
"giphy-api" = dontDistribute super."giphy-api";
|
||||
"gist" = dontDistribute super."gist";
|
||||
"git" = dontDistribute super."git";
|
||||
"git-all" = dontDistribute super."git-all";
|
||||
"git-annex" = dontDistribute super."git-annex";
|
||||
"git-checklist" = dontDistribute super."git-checklist";
|
||||
@ -4133,6 +4137,7 @@ self: super: {
|
||||
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
|
||||
"harp" = dontDistribute super."harp";
|
||||
"harpy" = dontDistribute super."harpy";
|
||||
"harvest-api" = dontDistribute super."harvest-api";
|
||||
"has" = dontDistribute super."has";
|
||||
"has-th" = dontDistribute super."has-th";
|
||||
"hascal" = dontDistribute super."hascal";
|
||||
@ -5133,6 +5138,7 @@ self: super: {
|
||||
"instrument-chord" = dontDistribute super."instrument-chord";
|
||||
"int-cast" = dontDistribute super."int-cast";
|
||||
"integer-pure" = dontDistribute super."integer-pure";
|
||||
"integer-simple" = dontDistribute super."integer-simple";
|
||||
"integration" = doDistribute super."integration_0_2_0_1";
|
||||
"intel-aes" = dontDistribute super."intel-aes";
|
||||
"interchangeable" = dontDistribute super."interchangeable";
|
||||
@ -7060,6 +7066,7 @@ self: super: {
|
||||
"push-notify-general" = dontDistribute super."push-notify-general";
|
||||
"pusher-haskell" = dontDistribute super."pusher-haskell";
|
||||
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
|
||||
"pusher-ws" = dontDistribute super."pusher-ws";
|
||||
"pushme" = dontDistribute super."pushme";
|
||||
"putlenses" = dontDistribute super."putlenses";
|
||||
"puzzle-draw" = dontDistribute super."puzzle-draw";
|
||||
@ -7091,6 +7098,7 @@ self: super: {
|
||||
"queuelike" = dontDistribute super."queuelike";
|
||||
"quick-generator" = dontDistribute super."quick-generator";
|
||||
"quick-schema" = dontDistribute super."quick-schema";
|
||||
"quickbooks" = dontDistribute super."quickbooks";
|
||||
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
|
||||
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
|
||||
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_9";
|
||||
@ -7257,6 +7265,7 @@ self: super: {
|
||||
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
|
||||
"reflex-gloss" = dontDistribute super."reflex-gloss";
|
||||
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
|
||||
"reflex-jsx" = dontDistribute super."reflex-jsx";
|
||||
"reflex-orphans" = dontDistribute super."reflex-orphans";
|
||||
"reflex-transformers" = dontDistribute super."reflex-transformers";
|
||||
"reform" = dontDistribute super."reform";
|
||||
@ -7442,6 +7451,7 @@ self: super: {
|
||||
"rosso" = dontDistribute super."rosso";
|
||||
"rot13" = dontDistribute super."rot13";
|
||||
"rotating-log" = dontDistribute super."rotating-log";
|
||||
"roundRobin" = dontDistribute super."roundRobin";
|
||||
"rounding" = dontDistribute super."rounding";
|
||||
"roundtrip" = dontDistribute super."roundtrip";
|
||||
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
|
||||
@ -7663,6 +7673,7 @@ self: super: {
|
||||
"servant-postgresql" = dontDistribute super."servant-postgresql";
|
||||
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
|
||||
"servant-response" = dontDistribute super."servant-response";
|
||||
"servant-router" = dontDistribute super."servant-router";
|
||||
"servant-scotty" = dontDistribute super."servant-scotty";
|
||||
"servant-server" = dontDistribute super."servant-server";
|
||||
"servant-swagger" = dontDistribute super."servant-swagger";
|
||||
@ -8127,6 +8138,7 @@ self: super: {
|
||||
"storablevector" = dontDistribute super."storablevector";
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"store" = dontDistribute super."store";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
@ -8187,6 +8199,7 @@ self: super: {
|
||||
"subnet" = dontDistribute super."subnet";
|
||||
"subtitleParser" = dontDistribute super."subtitleParser";
|
||||
"subtitles" = dontDistribute super."subtitles";
|
||||
"subwordgraph" = dontDistribute super."subwordgraph";
|
||||
"success" = dontDistribute super."success";
|
||||
"suffixarray" = dontDistribute super."suffixarray";
|
||||
"suffixtree" = dontDistribute super."suffixtree";
|
||||
@ -8406,6 +8419,7 @@ self: super: {
|
||||
"test-shouldbe" = dontDistribute super."test-shouldbe";
|
||||
"test-simple" = dontDistribute super."test-simple";
|
||||
"testPkg" = dontDistribute super."testPkg";
|
||||
"testbench" = dontDistribute super."testbench";
|
||||
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
|
||||
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
|
||||
"testloop" = dontDistribute super."testloop";
|
||||
@ -8418,6 +8432,7 @@ self: super: {
|
||||
"text" = doDistribute super."text_1_1_1_3";
|
||||
"text-and-plots" = dontDistribute super."text-and-plots";
|
||||
"text-binary" = doDistribute super."text-binary_0_1_0";
|
||||
"text-conversions" = dontDistribute super."text-conversions";
|
||||
"text-format-simple" = dontDistribute super."text-format-simple";
|
||||
"text-icu" = doDistribute super."text-icu_0_7_0_0";
|
||||
"text-icu-translit" = dontDistribute super."text-icu-translit";
|
||||
@ -8601,6 +8616,7 @@ self: super: {
|
||||
"tracetree" = dontDistribute super."tracetree";
|
||||
"tracker" = dontDistribute super."tracker";
|
||||
"tracy" = dontDistribute super."tracy";
|
||||
"traildb" = dontDistribute super."traildb";
|
||||
"trajectory" = dontDistribute super."trajectory";
|
||||
"transactional-events" = dontDistribute super."transactional-events";
|
||||
"transf" = dontDistribute super."transf";
|
||||
@ -9106,6 +9122,7 @@ self: super: {
|
||||
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
|
||||
"web-css" = dontDistribute super."web-css";
|
||||
"web-encodings" = dontDistribute super."web-encodings";
|
||||
"web-inv-route" = dontDistribute super."web-inv-route";
|
||||
"web-mongrel2" = dontDistribute super."web-mongrel2";
|
||||
"web-page" = dontDistribute super."web-page";
|
||||
"web-plugins" = dontDistribute super."web-plugins";
|
||||
@ -9160,6 +9177,7 @@ self: super: {
|
||||
"whois" = dontDistribute super."whois";
|
||||
"why3" = dontDistribute super."why3";
|
||||
"wigner-symbols" = dontDistribute super."wigner-symbols";
|
||||
"wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
|
||||
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
|
||||
"win-hp-path" = dontDistribute super."win-hp-path";
|
||||
"windowslive" = dontDistribute super."windowslive";
|
||||
@ -9184,6 +9202,7 @@ self: super: {
|
||||
"wolf" = dontDistribute super."wolf";
|
||||
"woot" = dontDistribute super."woot";
|
||||
"word-trie" = dontDistribute super."word-trie";
|
||||
"word-vector" = dontDistribute super."word-vector";
|
||||
"word24" = dontDistribute super."word24";
|
||||
"word8" = doDistribute super."word8_0_1_1";
|
||||
"wordcloud" = dontDistribute super."wordcloud";
|
||||
@ -9308,6 +9327,7 @@ self: super: {
|
||||
"xournal-parser" = dontDistribute super."xournal-parser";
|
||||
"xournal-render" = dontDistribute super."xournal-render";
|
||||
"xournal-types" = dontDistribute super."xournal-types";
|
||||
"xpathdsv" = dontDistribute super."xpathdsv";
|
||||
"xsact" = dontDistribute super."xsact";
|
||||
"xsd" = dontDistribute super."xsd";
|
||||
"xsha1" = dontDistribute super."xsha1";
|
||||
@ -9392,6 +9412,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-ip" = dontDistribute super."yesod-ip";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
|
@ -3557,6 +3557,8 @@ self: super: {
|
||||
"getopt-simple" = dontDistribute super."getopt-simple";
|
||||
"gf" = dontDistribute super."gf";
|
||||
"ggtsTC" = dontDistribute super."ggtsTC";
|
||||
"ghc-boot" = dontDistribute super."ghc-boot";
|
||||
"ghc-boot-th" = dontDistribute super."ghc-boot-th";
|
||||
"ghc-core" = dontDistribute super."ghc-core";
|
||||
"ghc-core-html" = dontDistribute super."ghc-core-html";
|
||||
"ghc-datasize" = dontDistribute super."ghc-datasize";
|
||||
@ -3590,6 +3592,7 @@ self: super: {
|
||||
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
|
||||
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci" = dontDistribute super."ghci";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
"ghci-lib" = dontDistribute super."ghci-lib";
|
||||
@ -3636,6 +3639,7 @@ self: super: {
|
||||
"gipeda" = dontDistribute super."gipeda";
|
||||
"giphy-api" = dontDistribute super."giphy-api";
|
||||
"gist" = dontDistribute super."gist";
|
||||
"git" = dontDistribute super."git";
|
||||
"git-all" = dontDistribute super."git-all";
|
||||
"git-annex" = dontDistribute super."git-annex";
|
||||
"git-checklist" = dontDistribute super."git-checklist";
|
||||
@ -4130,6 +4134,7 @@ self: super: {
|
||||
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
|
||||
"harp" = dontDistribute super."harp";
|
||||
"harpy" = dontDistribute super."harpy";
|
||||
"harvest-api" = dontDistribute super."harvest-api";
|
||||
"has" = dontDistribute super."has";
|
||||
"has-th" = dontDistribute super."has-th";
|
||||
"hascal" = dontDistribute super."hascal";
|
||||
@ -5130,6 +5135,7 @@ self: super: {
|
||||
"instrument-chord" = dontDistribute super."instrument-chord";
|
||||
"int-cast" = dontDistribute super."int-cast";
|
||||
"integer-pure" = dontDistribute super."integer-pure";
|
||||
"integer-simple" = dontDistribute super."integer-simple";
|
||||
"integration" = doDistribute super."integration_0_2_0_1";
|
||||
"intel-aes" = dontDistribute super."intel-aes";
|
||||
"interchangeable" = dontDistribute super."interchangeable";
|
||||
@ -7057,6 +7063,7 @@ self: super: {
|
||||
"push-notify-general" = dontDistribute super."push-notify-general";
|
||||
"pusher-haskell" = dontDistribute super."pusher-haskell";
|
||||
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
|
||||
"pusher-ws" = dontDistribute super."pusher-ws";
|
||||
"pushme" = dontDistribute super."pushme";
|
||||
"putlenses" = dontDistribute super."putlenses";
|
||||
"puzzle-draw" = dontDistribute super."puzzle-draw";
|
||||
@ -7088,6 +7095,7 @@ self: super: {
|
||||
"queuelike" = dontDistribute super."queuelike";
|
||||
"quick-generator" = dontDistribute super."quick-generator";
|
||||
"quick-schema" = dontDistribute super."quick-schema";
|
||||
"quickbooks" = dontDistribute super."quickbooks";
|
||||
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
|
||||
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
|
||||
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_9";
|
||||
@ -7254,6 +7262,7 @@ self: super: {
|
||||
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
|
||||
"reflex-gloss" = dontDistribute super."reflex-gloss";
|
||||
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
|
||||
"reflex-jsx" = dontDistribute super."reflex-jsx";
|
||||
"reflex-orphans" = dontDistribute super."reflex-orphans";
|
||||
"reflex-transformers" = dontDistribute super."reflex-transformers";
|
||||
"reform" = dontDistribute super."reform";
|
||||
@ -7438,6 +7447,7 @@ self: super: {
|
||||
"rosso" = dontDistribute super."rosso";
|
||||
"rot13" = dontDistribute super."rot13";
|
||||
"rotating-log" = dontDistribute super."rotating-log";
|
||||
"roundRobin" = dontDistribute super."roundRobin";
|
||||
"rounding" = dontDistribute super."rounding";
|
||||
"roundtrip" = dontDistribute super."roundtrip";
|
||||
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
|
||||
@ -7659,6 +7669,7 @@ self: super: {
|
||||
"servant-postgresql" = dontDistribute super."servant-postgresql";
|
||||
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
|
||||
"servant-response" = dontDistribute super."servant-response";
|
||||
"servant-router" = dontDistribute super."servant-router";
|
||||
"servant-scotty" = dontDistribute super."servant-scotty";
|
||||
"servant-server" = dontDistribute super."servant-server";
|
||||
"servant-swagger" = dontDistribute super."servant-swagger";
|
||||
@ -8123,6 +8134,7 @@ self: super: {
|
||||
"storablevector" = dontDistribute super."storablevector";
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"store" = dontDistribute super."store";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
@ -8183,6 +8195,7 @@ self: super: {
|
||||
"subnet" = dontDistribute super."subnet";
|
||||
"subtitleParser" = dontDistribute super."subtitleParser";
|
||||
"subtitles" = dontDistribute super."subtitles";
|
||||
"subwordgraph" = dontDistribute super."subwordgraph";
|
||||
"success" = dontDistribute super."success";
|
||||
"suffixarray" = dontDistribute super."suffixarray";
|
||||
"suffixtree" = dontDistribute super."suffixtree";
|
||||
@ -8402,6 +8415,7 @@ self: super: {
|
||||
"test-shouldbe" = dontDistribute super."test-shouldbe";
|
||||
"test-simple" = dontDistribute super."test-simple";
|
||||
"testPkg" = dontDistribute super."testPkg";
|
||||
"testbench" = dontDistribute super."testbench";
|
||||
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
|
||||
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
|
||||
"testloop" = dontDistribute super."testloop";
|
||||
@ -8414,6 +8428,7 @@ self: super: {
|
||||
"text" = doDistribute super."text_1_1_1_3";
|
||||
"text-and-plots" = dontDistribute super."text-and-plots";
|
||||
"text-binary" = doDistribute super."text-binary_0_1_0";
|
||||
"text-conversions" = dontDistribute super."text-conversions";
|
||||
"text-format-simple" = dontDistribute super."text-format-simple";
|
||||
"text-icu" = doDistribute super."text-icu_0_7_0_0";
|
||||
"text-icu-translit" = dontDistribute super."text-icu-translit";
|
||||
@ -8597,6 +8612,7 @@ self: super: {
|
||||
"tracetree" = dontDistribute super."tracetree";
|
||||
"tracker" = dontDistribute super."tracker";
|
||||
"tracy" = dontDistribute super."tracy";
|
||||
"traildb" = dontDistribute super."traildb";
|
||||
"trajectory" = dontDistribute super."trajectory";
|
||||
"transactional-events" = dontDistribute super."transactional-events";
|
||||
"transf" = dontDistribute super."transf";
|
||||
@ -9102,6 +9118,7 @@ self: super: {
|
||||
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
|
||||
"web-css" = dontDistribute super."web-css";
|
||||
"web-encodings" = dontDistribute super."web-encodings";
|
||||
"web-inv-route" = dontDistribute super."web-inv-route";
|
||||
"web-mongrel2" = dontDistribute super."web-mongrel2";
|
||||
"web-page" = dontDistribute super."web-page";
|
||||
"web-plugins" = dontDistribute super."web-plugins";
|
||||
@ -9156,6 +9173,7 @@ self: super: {
|
||||
"whois" = dontDistribute super."whois";
|
||||
"why3" = dontDistribute super."why3";
|
||||
"wigner-symbols" = dontDistribute super."wigner-symbols";
|
||||
"wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
|
||||
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
|
||||
"win-hp-path" = dontDistribute super."win-hp-path";
|
||||
"windowslive" = dontDistribute super."windowslive";
|
||||
@ -9180,6 +9198,7 @@ self: super: {
|
||||
"wolf" = dontDistribute super."wolf";
|
||||
"woot" = dontDistribute super."woot";
|
||||
"word-trie" = dontDistribute super."word-trie";
|
||||
"word-vector" = dontDistribute super."word-vector";
|
||||
"word24" = dontDistribute super."word24";
|
||||
"word8" = doDistribute super."word8_0_1_1";
|
||||
"wordcloud" = dontDistribute super."wordcloud";
|
||||
@ -9304,6 +9323,7 @@ self: super: {
|
||||
"xournal-parser" = dontDistribute super."xournal-parser";
|
||||
"xournal-render" = dontDistribute super."xournal-render";
|
||||
"xournal-types" = dontDistribute super."xournal-types";
|
||||
"xpathdsv" = dontDistribute super."xpathdsv";
|
||||
"xsact" = dontDistribute super."xsact";
|
||||
"xsd" = dontDistribute super."xsd";
|
||||
"xsha1" = dontDistribute super."xsha1";
|
||||
@ -9388,6 +9408,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-ip" = dontDistribute super."yesod-ip";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
|
@ -3557,6 +3557,8 @@ self: super: {
|
||||
"getopt-simple" = dontDistribute super."getopt-simple";
|
||||
"gf" = dontDistribute super."gf";
|
||||
"ggtsTC" = dontDistribute super."ggtsTC";
|
||||
"ghc-boot" = dontDistribute super."ghc-boot";
|
||||
"ghc-boot-th" = dontDistribute super."ghc-boot-th";
|
||||
"ghc-core" = dontDistribute super."ghc-core";
|
||||
"ghc-core-html" = dontDistribute super."ghc-core-html";
|
||||
"ghc-datasize" = dontDistribute super."ghc-datasize";
|
||||
@ -3590,6 +3592,7 @@ self: super: {
|
||||
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
|
||||
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci" = dontDistribute super."ghci";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
"ghci-lib" = dontDistribute super."ghci-lib";
|
||||
@ -3636,6 +3639,7 @@ self: super: {
|
||||
"gipeda" = dontDistribute super."gipeda";
|
||||
"giphy-api" = dontDistribute super."giphy-api";
|
||||
"gist" = dontDistribute super."gist";
|
||||
"git" = dontDistribute super."git";
|
||||
"git-all" = dontDistribute super."git-all";
|
||||
"git-annex" = dontDistribute super."git-annex";
|
||||
"git-checklist" = dontDistribute super."git-checklist";
|
||||
@ -4130,6 +4134,7 @@ self: super: {
|
||||
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
|
||||
"harp" = dontDistribute super."harp";
|
||||
"harpy" = dontDistribute super."harpy";
|
||||
"harvest-api" = dontDistribute super."harvest-api";
|
||||
"has" = dontDistribute super."has";
|
||||
"has-th" = dontDistribute super."has-th";
|
||||
"hascal" = dontDistribute super."hascal";
|
||||
@ -5130,6 +5135,7 @@ self: super: {
|
||||
"instrument-chord" = dontDistribute super."instrument-chord";
|
||||
"int-cast" = dontDistribute super."int-cast";
|
||||
"integer-pure" = dontDistribute super."integer-pure";
|
||||
"integer-simple" = dontDistribute super."integer-simple";
|
||||
"integration" = doDistribute super."integration_0_2_0_1";
|
||||
"intel-aes" = dontDistribute super."intel-aes";
|
||||
"interchangeable" = dontDistribute super."interchangeable";
|
||||
@ -7057,6 +7063,7 @@ self: super: {
|
||||
"push-notify-general" = dontDistribute super."push-notify-general";
|
||||
"pusher-haskell" = dontDistribute super."pusher-haskell";
|
||||
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
|
||||
"pusher-ws" = dontDistribute super."pusher-ws";
|
||||
"pushme" = dontDistribute super."pushme";
|
||||
"putlenses" = dontDistribute super."putlenses";
|
||||
"puzzle-draw" = dontDistribute super."puzzle-draw";
|
||||
@ -7088,6 +7095,7 @@ self: super: {
|
||||
"queuelike" = dontDistribute super."queuelike";
|
||||
"quick-generator" = dontDistribute super."quick-generator";
|
||||
"quick-schema" = dontDistribute super."quick-schema";
|
||||
"quickbooks" = dontDistribute super."quickbooks";
|
||||
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
|
||||
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
|
||||
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_9";
|
||||
@ -7254,6 +7262,7 @@ self: super: {
|
||||
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
|
||||
"reflex-gloss" = dontDistribute super."reflex-gloss";
|
||||
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
|
||||
"reflex-jsx" = dontDistribute super."reflex-jsx";
|
||||
"reflex-orphans" = dontDistribute super."reflex-orphans";
|
||||
"reflex-transformers" = dontDistribute super."reflex-transformers";
|
||||
"reform" = dontDistribute super."reform";
|
||||
@ -7438,6 +7447,7 @@ self: super: {
|
||||
"rosso" = dontDistribute super."rosso";
|
||||
"rot13" = dontDistribute super."rot13";
|
||||
"rotating-log" = dontDistribute super."rotating-log";
|
||||
"roundRobin" = dontDistribute super."roundRobin";
|
||||
"rounding" = dontDistribute super."rounding";
|
||||
"roundtrip" = dontDistribute super."roundtrip";
|
||||
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
|
||||
@ -7659,6 +7669,7 @@ self: super: {
|
||||
"servant-postgresql" = dontDistribute super."servant-postgresql";
|
||||
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
|
||||
"servant-response" = dontDistribute super."servant-response";
|
||||
"servant-router" = dontDistribute super."servant-router";
|
||||
"servant-scotty" = dontDistribute super."servant-scotty";
|
||||
"servant-server" = dontDistribute super."servant-server";
|
||||
"servant-swagger" = dontDistribute super."servant-swagger";
|
||||
@ -8123,6 +8134,7 @@ self: super: {
|
||||
"storablevector" = dontDistribute super."storablevector";
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"store" = dontDistribute super."store";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
@ -8183,6 +8195,7 @@ self: super: {
|
||||
"subnet" = dontDistribute super."subnet";
|
||||
"subtitleParser" = dontDistribute super."subtitleParser";
|
||||
"subtitles" = dontDistribute super."subtitles";
|
||||
"subwordgraph" = dontDistribute super."subwordgraph";
|
||||
"success" = dontDistribute super."success";
|
||||
"suffixarray" = dontDistribute super."suffixarray";
|
||||
"suffixtree" = dontDistribute super."suffixtree";
|
||||
@ -8402,6 +8415,7 @@ self: super: {
|
||||
"test-shouldbe" = dontDistribute super."test-shouldbe";
|
||||
"test-simple" = dontDistribute super."test-simple";
|
||||
"testPkg" = dontDistribute super."testPkg";
|
||||
"testbench" = dontDistribute super."testbench";
|
||||
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
|
||||
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
|
||||
"testloop" = dontDistribute super."testloop";
|
||||
@ -8414,6 +8428,7 @@ self: super: {
|
||||
"text" = doDistribute super."text_1_1_1_3";
|
||||
"text-and-plots" = dontDistribute super."text-and-plots";
|
||||
"text-binary" = doDistribute super."text-binary_0_1_0";
|
||||
"text-conversions" = dontDistribute super."text-conversions";
|
||||
"text-format-simple" = dontDistribute super."text-format-simple";
|
||||
"text-icu" = doDistribute super."text-icu_0_7_0_0";
|
||||
"text-icu-translit" = dontDistribute super."text-icu-translit";
|
||||
@ -8597,6 +8612,7 @@ self: super: {
|
||||
"tracetree" = dontDistribute super."tracetree";
|
||||
"tracker" = dontDistribute super."tracker";
|
||||
"tracy" = dontDistribute super."tracy";
|
||||
"traildb" = dontDistribute super."traildb";
|
||||
"trajectory" = dontDistribute super."trajectory";
|
||||
"transactional-events" = dontDistribute super."transactional-events";
|
||||
"transf" = dontDistribute super."transf";
|
||||
@ -9102,6 +9118,7 @@ self: super: {
|
||||
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
|
||||
"web-css" = dontDistribute super."web-css";
|
||||
"web-encodings" = dontDistribute super."web-encodings";
|
||||
"web-inv-route" = dontDistribute super."web-inv-route";
|
||||
"web-mongrel2" = dontDistribute super."web-mongrel2";
|
||||
"web-page" = dontDistribute super."web-page";
|
||||
"web-plugins" = dontDistribute super."web-plugins";
|
||||
@ -9156,6 +9173,7 @@ self: super: {
|
||||
"whois" = dontDistribute super."whois";
|
||||
"why3" = dontDistribute super."why3";
|
||||
"wigner-symbols" = dontDistribute super."wigner-symbols";
|
||||
"wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
|
||||
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
|
||||
"win-hp-path" = dontDistribute super."win-hp-path";
|
||||
"windowslive" = dontDistribute super."windowslive";
|
||||
@ -9180,6 +9198,7 @@ self: super: {
|
||||
"wolf" = dontDistribute super."wolf";
|
||||
"woot" = dontDistribute super."woot";
|
||||
"word-trie" = dontDistribute super."word-trie";
|
||||
"word-vector" = dontDistribute super."word-vector";
|
||||
"word24" = dontDistribute super."word24";
|
||||
"word8" = doDistribute super."word8_0_1_1";
|
||||
"wordcloud" = dontDistribute super."wordcloud";
|
||||
@ -9304,6 +9323,7 @@ self: super: {
|
||||
"xournal-parser" = dontDistribute super."xournal-parser";
|
||||
"xournal-render" = dontDistribute super."xournal-render";
|
||||
"xournal-types" = dontDistribute super."xournal-types";
|
||||
"xpathdsv" = dontDistribute super."xpathdsv";
|
||||
"xsact" = dontDistribute super."xsact";
|
||||
"xsd" = dontDistribute super."xsd";
|
||||
"xsha1" = dontDistribute super."xsha1";
|
||||
@ -9388,6 +9408,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-ip" = dontDistribute super."yesod-ip";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
|
@ -3556,6 +3556,8 @@ self: super: {
|
||||
"getopt-simple" = dontDistribute super."getopt-simple";
|
||||
"gf" = dontDistribute super."gf";
|
||||
"ggtsTC" = dontDistribute super."ggtsTC";
|
||||
"ghc-boot" = dontDistribute super."ghc-boot";
|
||||
"ghc-boot-th" = dontDistribute super."ghc-boot-th";
|
||||
"ghc-core" = dontDistribute super."ghc-core";
|
||||
"ghc-core-html" = dontDistribute super."ghc-core-html";
|
||||
"ghc-datasize" = dontDistribute super."ghc-datasize";
|
||||
@ -3589,6 +3591,7 @@ self: super: {
|
||||
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
|
||||
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci" = dontDistribute super."ghci";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
"ghci-lib" = dontDistribute super."ghci-lib";
|
||||
@ -3635,6 +3638,7 @@ self: super: {
|
||||
"gipeda" = dontDistribute super."gipeda";
|
||||
"giphy-api" = dontDistribute super."giphy-api";
|
||||
"gist" = dontDistribute super."gist";
|
||||
"git" = dontDistribute super."git";
|
||||
"git-all" = dontDistribute super."git-all";
|
||||
"git-annex" = dontDistribute super."git-annex";
|
||||
"git-checklist" = dontDistribute super."git-checklist";
|
||||
@ -4129,6 +4133,7 @@ self: super: {
|
||||
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
|
||||
"harp" = dontDistribute super."harp";
|
||||
"harpy" = dontDistribute super."harpy";
|
||||
"harvest-api" = dontDistribute super."harvest-api";
|
||||
"has" = dontDistribute super."has";
|
||||
"has-th" = dontDistribute super."has-th";
|
||||
"hascal" = dontDistribute super."hascal";
|
||||
@ -5128,6 +5133,7 @@ self: super: {
|
||||
"instrument-chord" = dontDistribute super."instrument-chord";
|
||||
"int-cast" = dontDistribute super."int-cast";
|
||||
"integer-pure" = dontDistribute super."integer-pure";
|
||||
"integer-simple" = dontDistribute super."integer-simple";
|
||||
"integration" = doDistribute super."integration_0_2_0_1";
|
||||
"intel-aes" = dontDistribute super."intel-aes";
|
||||
"interchangeable" = dontDistribute super."interchangeable";
|
||||
@ -7055,6 +7061,7 @@ self: super: {
|
||||
"push-notify-general" = dontDistribute super."push-notify-general";
|
||||
"pusher-haskell" = dontDistribute super."pusher-haskell";
|
||||
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
|
||||
"pusher-ws" = dontDistribute super."pusher-ws";
|
||||
"pushme" = dontDistribute super."pushme";
|
||||
"putlenses" = dontDistribute super."putlenses";
|
||||
"puzzle-draw" = dontDistribute super."puzzle-draw";
|
||||
@ -7086,6 +7093,7 @@ self: super: {
|
||||
"queuelike" = dontDistribute super."queuelike";
|
||||
"quick-generator" = dontDistribute super."quick-generator";
|
||||
"quick-schema" = dontDistribute super."quick-schema";
|
||||
"quickbooks" = dontDistribute super."quickbooks";
|
||||
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
|
||||
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
|
||||
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
|
||||
@ -7252,6 +7260,7 @@ self: super: {
|
||||
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
|
||||
"reflex-gloss" = dontDistribute super."reflex-gloss";
|
||||
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
|
||||
"reflex-jsx" = dontDistribute super."reflex-jsx";
|
||||
"reflex-orphans" = dontDistribute super."reflex-orphans";
|
||||
"reflex-transformers" = dontDistribute super."reflex-transformers";
|
||||
"reform" = dontDistribute super."reform";
|
||||
@ -7435,6 +7444,7 @@ self: super: {
|
||||
"rosso" = dontDistribute super."rosso";
|
||||
"rot13" = dontDistribute super."rot13";
|
||||
"rotating-log" = dontDistribute super."rotating-log";
|
||||
"roundRobin" = dontDistribute super."roundRobin";
|
||||
"rounding" = dontDistribute super."rounding";
|
||||
"roundtrip" = dontDistribute super."roundtrip";
|
||||
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
|
||||
@ -7656,6 +7666,7 @@ self: super: {
|
||||
"servant-postgresql" = dontDistribute super."servant-postgresql";
|
||||
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
|
||||
"servant-response" = dontDistribute super."servant-response";
|
||||
"servant-router" = dontDistribute super."servant-router";
|
||||
"servant-scotty" = dontDistribute super."servant-scotty";
|
||||
"servant-server" = dontDistribute super."servant-server";
|
||||
"servant-swagger" = dontDistribute super."servant-swagger";
|
||||
@ -8120,6 +8131,7 @@ self: super: {
|
||||
"storablevector" = dontDistribute super."storablevector";
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"store" = dontDistribute super."store";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
@ -8180,6 +8192,7 @@ self: super: {
|
||||
"subnet" = dontDistribute super."subnet";
|
||||
"subtitleParser" = dontDistribute super."subtitleParser";
|
||||
"subtitles" = dontDistribute super."subtitles";
|
||||
"subwordgraph" = dontDistribute super."subwordgraph";
|
||||
"success" = dontDistribute super."success";
|
||||
"suffixarray" = dontDistribute super."suffixarray";
|
||||
"suffixtree" = dontDistribute super."suffixtree";
|
||||
@ -8399,6 +8412,7 @@ self: super: {
|
||||
"test-shouldbe" = dontDistribute super."test-shouldbe";
|
||||
"test-simple" = dontDistribute super."test-simple";
|
||||
"testPkg" = dontDistribute super."testPkg";
|
||||
"testbench" = dontDistribute super."testbench";
|
||||
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
|
||||
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
|
||||
"testloop" = dontDistribute super."testloop";
|
||||
@ -8411,6 +8425,7 @@ self: super: {
|
||||
"text" = doDistribute super."text_1_1_1_3";
|
||||
"text-and-plots" = dontDistribute super."text-and-plots";
|
||||
"text-binary" = doDistribute super."text-binary_0_1_0";
|
||||
"text-conversions" = dontDistribute super."text-conversions";
|
||||
"text-format-simple" = dontDistribute super."text-format-simple";
|
||||
"text-icu" = doDistribute super."text-icu_0_7_0_0";
|
||||
"text-icu-translit" = dontDistribute super."text-icu-translit";
|
||||
@ -8594,6 +8609,7 @@ self: super: {
|
||||
"tracetree" = dontDistribute super."tracetree";
|
||||
"tracker" = dontDistribute super."tracker";
|
||||
"tracy" = dontDistribute super."tracy";
|
||||
"traildb" = dontDistribute super."traildb";
|
||||
"trajectory" = dontDistribute super."trajectory";
|
||||
"transactional-events" = dontDistribute super."transactional-events";
|
||||
"transf" = dontDistribute super."transf";
|
||||
@ -9099,6 +9115,7 @@ self: super: {
|
||||
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
|
||||
"web-css" = dontDistribute super."web-css";
|
||||
"web-encodings" = dontDistribute super."web-encodings";
|
||||
"web-inv-route" = dontDistribute super."web-inv-route";
|
||||
"web-mongrel2" = dontDistribute super."web-mongrel2";
|
||||
"web-page" = dontDistribute super."web-page";
|
||||
"web-plugins" = dontDistribute super."web-plugins";
|
||||
@ -9153,6 +9170,7 @@ self: super: {
|
||||
"whois" = dontDistribute super."whois";
|
||||
"why3" = dontDistribute super."why3";
|
||||
"wigner-symbols" = dontDistribute super."wigner-symbols";
|
||||
"wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
|
||||
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
|
||||
"win-hp-path" = dontDistribute super."win-hp-path";
|
||||
"windowslive" = dontDistribute super."windowslive";
|
||||
@ -9177,6 +9195,7 @@ self: super: {
|
||||
"wolf" = dontDistribute super."wolf";
|
||||
"woot" = dontDistribute super."woot";
|
||||
"word-trie" = dontDistribute super."word-trie";
|
||||
"word-vector" = dontDistribute super."word-vector";
|
||||
"word24" = dontDistribute super."word24";
|
||||
"word8" = doDistribute super."word8_0_1_1";
|
||||
"wordcloud" = dontDistribute super."wordcloud";
|
||||
@ -9300,6 +9319,7 @@ self: super: {
|
||||
"xournal-parser" = dontDistribute super."xournal-parser";
|
||||
"xournal-render" = dontDistribute super."xournal-render";
|
||||
"xournal-types" = dontDistribute super."xournal-types";
|
||||
"xpathdsv" = dontDistribute super."xpathdsv";
|
||||
"xsact" = dontDistribute super."xsact";
|
||||
"xsd" = dontDistribute super."xsd";
|
||||
"xsha1" = dontDistribute super."xsha1";
|
||||
@ -9383,6 +9403,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-ip" = dontDistribute super."yesod-ip";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
|
@ -3556,6 +3556,8 @@ self: super: {
|
||||
"getopt-simple" = dontDistribute super."getopt-simple";
|
||||
"gf" = dontDistribute super."gf";
|
||||
"ggtsTC" = dontDistribute super."ggtsTC";
|
||||
"ghc-boot" = dontDistribute super."ghc-boot";
|
||||
"ghc-boot-th" = dontDistribute super."ghc-boot-th";
|
||||
"ghc-core" = dontDistribute super."ghc-core";
|
||||
"ghc-core-html" = dontDistribute super."ghc-core-html";
|
||||
"ghc-datasize" = dontDistribute super."ghc-datasize";
|
||||
@ -3589,6 +3591,7 @@ self: super: {
|
||||
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
|
||||
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci" = dontDistribute super."ghci";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
"ghci-lib" = dontDistribute super."ghci-lib";
|
||||
@ -3635,6 +3638,7 @@ self: super: {
|
||||
"gipeda" = dontDistribute super."gipeda";
|
||||
"giphy-api" = dontDistribute super."giphy-api";
|
||||
"gist" = dontDistribute super."gist";
|
||||
"git" = dontDistribute super."git";
|
||||
"git-all" = dontDistribute super."git-all";
|
||||
"git-annex" = dontDistribute super."git-annex";
|
||||
"git-checklist" = dontDistribute super."git-checklist";
|
||||
@ -4129,6 +4133,7 @@ self: super: {
|
||||
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
|
||||
"harp" = dontDistribute super."harp";
|
||||
"harpy" = dontDistribute super."harpy";
|
||||
"harvest-api" = dontDistribute super."harvest-api";
|
||||
"has" = dontDistribute super."has";
|
||||
"has-th" = dontDistribute super."has-th";
|
||||
"hascal" = dontDistribute super."hascal";
|
||||
@ -5128,6 +5133,7 @@ self: super: {
|
||||
"instrument-chord" = dontDistribute super."instrument-chord";
|
||||
"int-cast" = dontDistribute super."int-cast";
|
||||
"integer-pure" = dontDistribute super."integer-pure";
|
||||
"integer-simple" = dontDistribute super."integer-simple";
|
||||
"integration" = doDistribute super."integration_0_2_0_1";
|
||||
"intel-aes" = dontDistribute super."intel-aes";
|
||||
"interchangeable" = dontDistribute super."interchangeable";
|
||||
@ -7055,6 +7061,7 @@ self: super: {
|
||||
"push-notify-general" = dontDistribute super."push-notify-general";
|
||||
"pusher-haskell" = dontDistribute super."pusher-haskell";
|
||||
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
|
||||
"pusher-ws" = dontDistribute super."pusher-ws";
|
||||
"pushme" = dontDistribute super."pushme";
|
||||
"putlenses" = dontDistribute super."putlenses";
|
||||
"puzzle-draw" = dontDistribute super."puzzle-draw";
|
||||
@ -7086,6 +7093,7 @@ self: super: {
|
||||
"queuelike" = dontDistribute super."queuelike";
|
||||
"quick-generator" = dontDistribute super."quick-generator";
|
||||
"quick-schema" = dontDistribute super."quick-schema";
|
||||
"quickbooks" = dontDistribute super."quickbooks";
|
||||
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
|
||||
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
|
||||
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
|
||||
@ -7252,6 +7260,7 @@ self: super: {
|
||||
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
|
||||
"reflex-gloss" = dontDistribute super."reflex-gloss";
|
||||
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
|
||||
"reflex-jsx" = dontDistribute super."reflex-jsx";
|
||||
"reflex-orphans" = dontDistribute super."reflex-orphans";
|
||||
"reflex-transformers" = dontDistribute super."reflex-transformers";
|
||||
"reform" = dontDistribute super."reform";
|
||||
@ -7435,6 +7444,7 @@ self: super: {
|
||||
"rosso" = dontDistribute super."rosso";
|
||||
"rot13" = dontDistribute super."rot13";
|
||||
"rotating-log" = dontDistribute super."rotating-log";
|
||||
"roundRobin" = dontDistribute super."roundRobin";
|
||||
"rounding" = dontDistribute super."rounding";
|
||||
"roundtrip" = dontDistribute super."roundtrip";
|
||||
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
|
||||
@ -7656,6 +7666,7 @@ self: super: {
|
||||
"servant-postgresql" = dontDistribute super."servant-postgresql";
|
||||
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
|
||||
"servant-response" = dontDistribute super."servant-response";
|
||||
"servant-router" = dontDistribute super."servant-router";
|
||||
"servant-scotty" = dontDistribute super."servant-scotty";
|
||||
"servant-server" = dontDistribute super."servant-server";
|
||||
"servant-swagger" = dontDistribute super."servant-swagger";
|
||||
@ -8120,6 +8131,7 @@ self: super: {
|
||||
"storablevector" = dontDistribute super."storablevector";
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"store" = dontDistribute super."store";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
@ -8180,6 +8192,7 @@ self: super: {
|
||||
"subnet" = dontDistribute super."subnet";
|
||||
"subtitleParser" = dontDistribute super."subtitleParser";
|
||||
"subtitles" = dontDistribute super."subtitles";
|
||||
"subwordgraph" = dontDistribute super."subwordgraph";
|
||||
"success" = dontDistribute super."success";
|
||||
"suffixarray" = dontDistribute super."suffixarray";
|
||||
"suffixtree" = dontDistribute super."suffixtree";
|
||||
@ -8399,6 +8412,7 @@ self: super: {
|
||||
"test-shouldbe" = dontDistribute super."test-shouldbe";
|
||||
"test-simple" = dontDistribute super."test-simple";
|
||||
"testPkg" = dontDistribute super."testPkg";
|
||||
"testbench" = dontDistribute super."testbench";
|
||||
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
|
||||
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
|
||||
"testloop" = dontDistribute super."testloop";
|
||||
@ -8411,6 +8425,7 @@ self: super: {
|
||||
"text" = doDistribute super."text_1_1_1_3";
|
||||
"text-and-plots" = dontDistribute super."text-and-plots";
|
||||
"text-binary" = doDistribute super."text-binary_0_1_0";
|
||||
"text-conversions" = dontDistribute super."text-conversions";
|
||||
"text-format-simple" = dontDistribute super."text-format-simple";
|
||||
"text-icu" = doDistribute super."text-icu_0_7_0_0";
|
||||
"text-icu-translit" = dontDistribute super."text-icu-translit";
|
||||
@ -8594,6 +8609,7 @@ self: super: {
|
||||
"tracetree" = dontDistribute super."tracetree";
|
||||
"tracker" = dontDistribute super."tracker";
|
||||
"tracy" = dontDistribute super."tracy";
|
||||
"traildb" = dontDistribute super."traildb";
|
||||
"trajectory" = dontDistribute super."trajectory";
|
||||
"transactional-events" = dontDistribute super."transactional-events";
|
||||
"transf" = dontDistribute super."transf";
|
||||
@ -9099,6 +9115,7 @@ self: super: {
|
||||
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
|
||||
"web-css" = dontDistribute super."web-css";
|
||||
"web-encodings" = dontDistribute super."web-encodings";
|
||||
"web-inv-route" = dontDistribute super."web-inv-route";
|
||||
"web-mongrel2" = dontDistribute super."web-mongrel2";
|
||||
"web-page" = dontDistribute super."web-page";
|
||||
"web-plugins" = dontDistribute super."web-plugins";
|
||||
@ -9153,6 +9170,7 @@ self: super: {
|
||||
"whois" = dontDistribute super."whois";
|
||||
"why3" = dontDistribute super."why3";
|
||||
"wigner-symbols" = dontDistribute super."wigner-symbols";
|
||||
"wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
|
||||
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
|
||||
"win-hp-path" = dontDistribute super."win-hp-path";
|
||||
"windowslive" = dontDistribute super."windowslive";
|
||||
@ -9177,6 +9195,7 @@ self: super: {
|
||||
"wolf" = dontDistribute super."wolf";
|
||||
"woot" = dontDistribute super."woot";
|
||||
"word-trie" = dontDistribute super."word-trie";
|
||||
"word-vector" = dontDistribute super."word-vector";
|
||||
"word24" = dontDistribute super."word24";
|
||||
"word8" = doDistribute super."word8_0_1_1";
|
||||
"wordcloud" = dontDistribute super."wordcloud";
|
||||
@ -9300,6 +9319,7 @@ self: super: {
|
||||
"xournal-parser" = dontDistribute super."xournal-parser";
|
||||
"xournal-render" = dontDistribute super."xournal-render";
|
||||
"xournal-types" = dontDistribute super."xournal-types";
|
||||
"xpathdsv" = dontDistribute super."xpathdsv";
|
||||
"xsact" = dontDistribute super."xsact";
|
||||
"xsd" = dontDistribute super."xsd";
|
||||
"xsha1" = dontDistribute super."xsha1";
|
||||
@ -9383,6 +9403,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-ip" = dontDistribute super."yesod-ip";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
|
@ -3548,6 +3548,8 @@ self: super: {
|
||||
"getopt-simple" = dontDistribute super."getopt-simple";
|
||||
"gf" = dontDistribute super."gf";
|
||||
"ggtsTC" = dontDistribute super."ggtsTC";
|
||||
"ghc-boot" = dontDistribute super."ghc-boot";
|
||||
"ghc-boot-th" = dontDistribute super."ghc-boot-th";
|
||||
"ghc-core" = dontDistribute super."ghc-core";
|
||||
"ghc-core-html" = dontDistribute super."ghc-core-html";
|
||||
"ghc-datasize" = dontDistribute super."ghc-datasize";
|
||||
@ -3581,6 +3583,7 @@ self: super: {
|
||||
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
|
||||
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci" = dontDistribute super."ghci";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
"ghci-lib" = dontDistribute super."ghci-lib";
|
||||
@ -3627,6 +3630,7 @@ self: super: {
|
||||
"gipeda" = dontDistribute super."gipeda";
|
||||
"giphy-api" = dontDistribute super."giphy-api";
|
||||
"gist" = dontDistribute super."gist";
|
||||
"git" = dontDistribute super."git";
|
||||
"git-all" = dontDistribute super."git-all";
|
||||
"git-annex" = dontDistribute super."git-annex";
|
||||
"git-checklist" = dontDistribute super."git-checklist";
|
||||
@ -4121,6 +4125,7 @@ self: super: {
|
||||
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
|
||||
"harp" = dontDistribute super."harp";
|
||||
"harpy" = dontDistribute super."harpy";
|
||||
"harvest-api" = dontDistribute super."harvest-api";
|
||||
"has" = dontDistribute super."has";
|
||||
"has-th" = dontDistribute super."has-th";
|
||||
"hascal" = dontDistribute super."hascal";
|
||||
@ -5119,6 +5124,7 @@ self: super: {
|
||||
"instrument-chord" = dontDistribute super."instrument-chord";
|
||||
"int-cast" = dontDistribute super."int-cast";
|
||||
"integer-pure" = dontDistribute super."integer-pure";
|
||||
"integer-simple" = dontDistribute super."integer-simple";
|
||||
"integration" = doDistribute super."integration_0_2_0_1";
|
||||
"intel-aes" = dontDistribute super."intel-aes";
|
||||
"interchangeable" = dontDistribute super."interchangeable";
|
||||
@ -7046,6 +7052,7 @@ self: super: {
|
||||
"push-notify-general" = dontDistribute super."push-notify-general";
|
||||
"pusher-haskell" = dontDistribute super."pusher-haskell";
|
||||
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
|
||||
"pusher-ws" = dontDistribute super."pusher-ws";
|
||||
"pushme" = dontDistribute super."pushme";
|
||||
"putlenses" = dontDistribute super."putlenses";
|
||||
"puzzle-draw" = dontDistribute super."puzzle-draw";
|
||||
@ -7077,6 +7084,7 @@ self: super: {
|
||||
"queuelike" = dontDistribute super."queuelike";
|
||||
"quick-generator" = dontDistribute super."quick-generator";
|
||||
"quick-schema" = dontDistribute super."quick-schema";
|
||||
"quickbooks" = dontDistribute super."quickbooks";
|
||||
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
|
||||
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
|
||||
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
|
||||
@ -7243,6 +7251,7 @@ self: super: {
|
||||
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
|
||||
"reflex-gloss" = dontDistribute super."reflex-gloss";
|
||||
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
|
||||
"reflex-jsx" = dontDistribute super."reflex-jsx";
|
||||
"reflex-orphans" = dontDistribute super."reflex-orphans";
|
||||
"reflex-transformers" = dontDistribute super."reflex-transformers";
|
||||
"reform" = dontDistribute super."reform";
|
||||
@ -7425,6 +7434,7 @@ self: super: {
|
||||
"rosso" = dontDistribute super."rosso";
|
||||
"rot13" = dontDistribute super."rot13";
|
||||
"rotating-log" = dontDistribute super."rotating-log";
|
||||
"roundRobin" = dontDistribute super."roundRobin";
|
||||
"rounding" = dontDistribute super."rounding";
|
||||
"roundtrip" = dontDistribute super."roundtrip";
|
||||
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
|
||||
@ -7646,6 +7656,7 @@ self: super: {
|
||||
"servant-postgresql" = dontDistribute super."servant-postgresql";
|
||||
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
|
||||
"servant-response" = dontDistribute super."servant-response";
|
||||
"servant-router" = dontDistribute super."servant-router";
|
||||
"servant-scotty" = dontDistribute super."servant-scotty";
|
||||
"servant-server" = dontDistribute super."servant-server";
|
||||
"servant-swagger" = dontDistribute super."servant-swagger";
|
||||
@ -8109,6 +8120,7 @@ self: super: {
|
||||
"storablevector" = dontDistribute super."storablevector";
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"store" = dontDistribute super."store";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
@ -8169,6 +8181,7 @@ self: super: {
|
||||
"subnet" = dontDistribute super."subnet";
|
||||
"subtitleParser" = dontDistribute super."subtitleParser";
|
||||
"subtitles" = dontDistribute super."subtitles";
|
||||
"subwordgraph" = dontDistribute super."subwordgraph";
|
||||
"success" = dontDistribute super."success";
|
||||
"suffixarray" = dontDistribute super."suffixarray";
|
||||
"suffixtree" = dontDistribute super."suffixtree";
|
||||
@ -8388,6 +8401,7 @@ self: super: {
|
||||
"test-shouldbe" = dontDistribute super."test-shouldbe";
|
||||
"test-simple" = dontDistribute super."test-simple";
|
||||
"testPkg" = dontDistribute super."testPkg";
|
||||
"testbench" = dontDistribute super."testbench";
|
||||
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
|
||||
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
|
||||
"testloop" = dontDistribute super."testloop";
|
||||
@ -8400,6 +8414,7 @@ self: super: {
|
||||
"text" = doDistribute super."text_1_2_0_3";
|
||||
"text-and-plots" = dontDistribute super."text-and-plots";
|
||||
"text-binary" = doDistribute super."text-binary_0_1_0";
|
||||
"text-conversions" = dontDistribute super."text-conversions";
|
||||
"text-format-simple" = dontDistribute super."text-format-simple";
|
||||
"text-icu" = doDistribute super."text-icu_0_7_0_0";
|
||||
"text-icu-translit" = dontDistribute super."text-icu-translit";
|
||||
@ -8583,6 +8598,7 @@ self: super: {
|
||||
"tracetree" = dontDistribute super."tracetree";
|
||||
"tracker" = dontDistribute super."tracker";
|
||||
"tracy" = dontDistribute super."tracy";
|
||||
"traildb" = dontDistribute super."traildb";
|
||||
"trajectory" = dontDistribute super."trajectory";
|
||||
"transactional-events" = dontDistribute super."transactional-events";
|
||||
"transf" = dontDistribute super."transf";
|
||||
@ -9087,6 +9103,7 @@ self: super: {
|
||||
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
|
||||
"web-css" = dontDistribute super."web-css";
|
||||
"web-encodings" = dontDistribute super."web-encodings";
|
||||
"web-inv-route" = dontDistribute super."web-inv-route";
|
||||
"web-mongrel2" = dontDistribute super."web-mongrel2";
|
||||
"web-page" = dontDistribute super."web-page";
|
||||
"web-plugins" = dontDistribute super."web-plugins";
|
||||
@ -9141,6 +9158,7 @@ self: super: {
|
||||
"whois" = dontDistribute super."whois";
|
||||
"why3" = dontDistribute super."why3";
|
||||
"wigner-symbols" = dontDistribute super."wigner-symbols";
|
||||
"wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
|
||||
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
|
||||
"win-hp-path" = dontDistribute super."win-hp-path";
|
||||
"windowslive" = dontDistribute super."windowslive";
|
||||
@ -9165,6 +9183,7 @@ self: super: {
|
||||
"wolf" = dontDistribute super."wolf";
|
||||
"woot" = dontDistribute super."woot";
|
||||
"word-trie" = dontDistribute super."word-trie";
|
||||
"word-vector" = dontDistribute super."word-vector";
|
||||
"word24" = dontDistribute super."word24";
|
||||
"word8" = doDistribute super."word8_0_1_1";
|
||||
"wordcloud" = dontDistribute super."wordcloud";
|
||||
@ -9288,6 +9307,7 @@ self: super: {
|
||||
"xournal-parser" = dontDistribute super."xournal-parser";
|
||||
"xournal-render" = dontDistribute super."xournal-render";
|
||||
"xournal-types" = dontDistribute super."xournal-types";
|
||||
"xpathdsv" = dontDistribute super."xpathdsv";
|
||||
"xsact" = dontDistribute super."xsact";
|
||||
"xsd" = dontDistribute super."xsd";
|
||||
"xsha1" = dontDistribute super."xsha1";
|
||||
@ -9371,6 +9391,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-ip" = dontDistribute super."yesod-ip";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
|
@ -3545,6 +3545,8 @@ self: super: {
|
||||
"getopt-simple" = dontDistribute super."getopt-simple";
|
||||
"gf" = dontDistribute super."gf";
|
||||
"ggtsTC" = dontDistribute super."ggtsTC";
|
||||
"ghc-boot" = dontDistribute super."ghc-boot";
|
||||
"ghc-boot-th" = dontDistribute super."ghc-boot-th";
|
||||
"ghc-core" = dontDistribute super."ghc-core";
|
||||
"ghc-core-html" = dontDistribute super."ghc-core-html";
|
||||
"ghc-datasize" = dontDistribute super."ghc-datasize";
|
||||
@ -3578,6 +3580,7 @@ self: super: {
|
||||
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
|
||||
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci" = dontDistribute super."ghci";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
"ghci-lib" = dontDistribute super."ghci-lib";
|
||||
@ -3624,6 +3627,7 @@ self: super: {
|
||||
"gipeda" = dontDistribute super."gipeda";
|
||||
"giphy-api" = dontDistribute super."giphy-api";
|
||||
"gist" = dontDistribute super."gist";
|
||||
"git" = dontDistribute super."git";
|
||||
"git-all" = dontDistribute super."git-all";
|
||||
"git-annex" = dontDistribute super."git-annex";
|
||||
"git-checklist" = dontDistribute super."git-checklist";
|
||||
@ -4117,6 +4121,7 @@ self: super: {
|
||||
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
|
||||
"harp" = dontDistribute super."harp";
|
||||
"harpy" = dontDistribute super."harpy";
|
||||
"harvest-api" = dontDistribute super."harvest-api";
|
||||
"has" = dontDistribute super."has";
|
||||
"has-th" = dontDistribute super."has-th";
|
||||
"hascal" = dontDistribute super."hascal";
|
||||
@ -5113,6 +5118,7 @@ self: super: {
|
||||
"instrument-chord" = dontDistribute super."instrument-chord";
|
||||
"int-cast" = dontDistribute super."int-cast";
|
||||
"integer-pure" = dontDistribute super."integer-pure";
|
||||
"integer-simple" = dontDistribute super."integer-simple";
|
||||
"integration" = doDistribute super."integration_0_2_0_1";
|
||||
"intel-aes" = dontDistribute super."intel-aes";
|
||||
"interchangeable" = dontDistribute super."interchangeable";
|
||||
@ -7039,6 +7045,7 @@ self: super: {
|
||||
"push-notify-general" = dontDistribute super."push-notify-general";
|
||||
"pusher-haskell" = dontDistribute super."pusher-haskell";
|
||||
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
|
||||
"pusher-ws" = dontDistribute super."pusher-ws";
|
||||
"pushme" = dontDistribute super."pushme";
|
||||
"putlenses" = dontDistribute super."putlenses";
|
||||
"puzzle-draw" = dontDistribute super."puzzle-draw";
|
||||
@ -7070,6 +7077,7 @@ self: super: {
|
||||
"queuelike" = dontDistribute super."queuelike";
|
||||
"quick-generator" = dontDistribute super."quick-generator";
|
||||
"quick-schema" = dontDistribute super."quick-schema";
|
||||
"quickbooks" = dontDistribute super."quickbooks";
|
||||
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
|
||||
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
|
||||
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
|
||||
@ -7236,6 +7244,7 @@ self: super: {
|
||||
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
|
||||
"reflex-gloss" = dontDistribute super."reflex-gloss";
|
||||
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
|
||||
"reflex-jsx" = dontDistribute super."reflex-jsx";
|
||||
"reflex-orphans" = dontDistribute super."reflex-orphans";
|
||||
"reflex-transformers" = dontDistribute super."reflex-transformers";
|
||||
"reform" = dontDistribute super."reform";
|
||||
@ -7418,6 +7427,7 @@ self: super: {
|
||||
"rosso" = dontDistribute super."rosso";
|
||||
"rot13" = dontDistribute super."rot13";
|
||||
"rotating-log" = dontDistribute super."rotating-log";
|
||||
"roundRobin" = dontDistribute super."roundRobin";
|
||||
"rounding" = dontDistribute super."rounding";
|
||||
"roundtrip" = dontDistribute super."roundtrip";
|
||||
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
|
||||
@ -7639,6 +7649,7 @@ self: super: {
|
||||
"servant-postgresql" = dontDistribute super."servant-postgresql";
|
||||
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
|
||||
"servant-response" = dontDistribute super."servant-response";
|
||||
"servant-router" = dontDistribute super."servant-router";
|
||||
"servant-scotty" = dontDistribute super."servant-scotty";
|
||||
"servant-server" = dontDistribute super."servant-server";
|
||||
"servant-swagger" = dontDistribute super."servant-swagger";
|
||||
@ -8100,6 +8111,7 @@ self: super: {
|
||||
"storablevector" = dontDistribute super."storablevector";
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"store" = dontDistribute super."store";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
@ -8160,6 +8172,7 @@ self: super: {
|
||||
"subnet" = dontDistribute super."subnet";
|
||||
"subtitleParser" = dontDistribute super."subtitleParser";
|
||||
"subtitles" = dontDistribute super."subtitles";
|
||||
"subwordgraph" = dontDistribute super."subwordgraph";
|
||||
"success" = dontDistribute super."success";
|
||||
"suffixarray" = dontDistribute super."suffixarray";
|
||||
"suffixtree" = dontDistribute super."suffixtree";
|
||||
@ -8378,6 +8391,7 @@ self: super: {
|
||||
"test-shouldbe" = dontDistribute super."test-shouldbe";
|
||||
"test-simple" = dontDistribute super."test-simple";
|
||||
"testPkg" = dontDistribute super."testPkg";
|
||||
"testbench" = dontDistribute super."testbench";
|
||||
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
|
||||
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
|
||||
"testloop" = dontDistribute super."testloop";
|
||||
@ -8390,6 +8404,7 @@ self: super: {
|
||||
"text" = doDistribute super."text_1_2_0_4";
|
||||
"text-and-plots" = dontDistribute super."text-and-plots";
|
||||
"text-binary" = doDistribute super."text-binary_0_1_0";
|
||||
"text-conversions" = dontDistribute super."text-conversions";
|
||||
"text-format-simple" = dontDistribute super."text-format-simple";
|
||||
"text-icu-translit" = dontDistribute super."text-icu-translit";
|
||||
"text-json-qq" = dontDistribute super."text-json-qq";
|
||||
@ -8571,6 +8586,7 @@ self: super: {
|
||||
"tracetree" = dontDistribute super."tracetree";
|
||||
"tracker" = dontDistribute super."tracker";
|
||||
"tracy" = dontDistribute super."tracy";
|
||||
"traildb" = dontDistribute super."traildb";
|
||||
"trajectory" = dontDistribute super."trajectory";
|
||||
"transactional-events" = dontDistribute super."transactional-events";
|
||||
"transf" = dontDistribute super."transf";
|
||||
@ -9074,6 +9090,7 @@ self: super: {
|
||||
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
|
||||
"web-css" = dontDistribute super."web-css";
|
||||
"web-encodings" = dontDistribute super."web-encodings";
|
||||
"web-inv-route" = dontDistribute super."web-inv-route";
|
||||
"web-mongrel2" = dontDistribute super."web-mongrel2";
|
||||
"web-page" = dontDistribute super."web-page";
|
||||
"web-plugins" = dontDistribute super."web-plugins";
|
||||
@ -9128,6 +9145,7 @@ self: super: {
|
||||
"whois" = dontDistribute super."whois";
|
||||
"why3" = dontDistribute super."why3";
|
||||
"wigner-symbols" = dontDistribute super."wigner-symbols";
|
||||
"wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
|
||||
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
|
||||
"win-hp-path" = dontDistribute super."win-hp-path";
|
||||
"windowslive" = dontDistribute super."windowslive";
|
||||
@ -9152,6 +9170,7 @@ self: super: {
|
||||
"wolf" = dontDistribute super."wolf";
|
||||
"woot" = dontDistribute super."woot";
|
||||
"word-trie" = dontDistribute super."word-trie";
|
||||
"word-vector" = dontDistribute super."word-vector";
|
||||
"word24" = dontDistribute super."word24";
|
||||
"word8" = doDistribute super."word8_0_1_1";
|
||||
"wordcloud" = dontDistribute super."wordcloud";
|
||||
@ -9275,6 +9294,7 @@ self: super: {
|
||||
"xournal-parser" = dontDistribute super."xournal-parser";
|
||||
"xournal-render" = dontDistribute super."xournal-render";
|
||||
"xournal-types" = dontDistribute super."xournal-types";
|
||||
"xpathdsv" = dontDistribute super."xpathdsv";
|
||||
"xsact" = dontDistribute super."xsact";
|
||||
"xsd" = dontDistribute super."xsd";
|
||||
"xsha1" = dontDistribute super."xsha1";
|
||||
@ -9358,6 +9378,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-ip" = dontDistribute super."yesod-ip";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
|
@ -3537,6 +3537,8 @@ self: super: {
|
||||
"getopt-simple" = dontDistribute super."getopt-simple";
|
||||
"gf" = dontDistribute super."gf";
|
||||
"ggtsTC" = dontDistribute super."ggtsTC";
|
||||
"ghc-boot" = dontDistribute super."ghc-boot";
|
||||
"ghc-boot-th" = dontDistribute super."ghc-boot-th";
|
||||
"ghc-core" = dontDistribute super."ghc-core";
|
||||
"ghc-core-html" = dontDistribute super."ghc-core-html";
|
||||
"ghc-datasize" = dontDistribute super."ghc-datasize";
|
||||
@ -3569,6 +3571,7 @@ self: super: {
|
||||
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
|
||||
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci" = dontDistribute super."ghci";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
"ghci-lib" = dontDistribute super."ghci-lib";
|
||||
@ -3615,6 +3618,7 @@ self: super: {
|
||||
"gipeda" = dontDistribute super."gipeda";
|
||||
"giphy-api" = dontDistribute super."giphy-api";
|
||||
"gist" = dontDistribute super."gist";
|
||||
"git" = dontDistribute super."git";
|
||||
"git-all" = dontDistribute super."git-all";
|
||||
"git-annex" = dontDistribute super."git-annex";
|
||||
"git-checklist" = dontDistribute super."git-checklist";
|
||||
@ -4107,6 +4111,7 @@ self: super: {
|
||||
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
|
||||
"harp" = dontDistribute super."harp";
|
||||
"harpy" = dontDistribute super."harpy";
|
||||
"harvest-api" = dontDistribute super."harvest-api";
|
||||
"has" = dontDistribute super."has";
|
||||
"has-th" = dontDistribute super."has-th";
|
||||
"hascal" = dontDistribute super."hascal";
|
||||
@ -5097,6 +5102,7 @@ self: super: {
|
||||
"instrument-chord" = dontDistribute super."instrument-chord";
|
||||
"int-cast" = dontDistribute super."int-cast";
|
||||
"integer-pure" = dontDistribute super."integer-pure";
|
||||
"integer-simple" = dontDistribute super."integer-simple";
|
||||
"integration" = doDistribute super."integration_0_2_0_1";
|
||||
"intel-aes" = dontDistribute super."intel-aes";
|
||||
"interchangeable" = dontDistribute super."interchangeable";
|
||||
@ -7019,6 +7025,7 @@ self: super: {
|
||||
"push-notify-general" = dontDistribute super."push-notify-general";
|
||||
"pusher-haskell" = dontDistribute super."pusher-haskell";
|
||||
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
|
||||
"pusher-ws" = dontDistribute super."pusher-ws";
|
||||
"pushme" = dontDistribute super."pushme";
|
||||
"putlenses" = dontDistribute super."putlenses";
|
||||
"puzzle-draw" = dontDistribute super."puzzle-draw";
|
||||
@ -7050,6 +7057,7 @@ self: super: {
|
||||
"queuelike" = dontDistribute super."queuelike";
|
||||
"quick-generator" = dontDistribute super."quick-generator";
|
||||
"quick-schema" = dontDistribute super."quick-schema";
|
||||
"quickbooks" = dontDistribute super."quickbooks";
|
||||
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
|
||||
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
|
||||
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
|
||||
@ -7215,6 +7223,7 @@ self: super: {
|
||||
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
|
||||
"reflex-gloss" = dontDistribute super."reflex-gloss";
|
||||
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
|
||||
"reflex-jsx" = dontDistribute super."reflex-jsx";
|
||||
"reflex-orphans" = dontDistribute super."reflex-orphans";
|
||||
"reflex-transformers" = dontDistribute super."reflex-transformers";
|
||||
"reform" = dontDistribute super."reform";
|
||||
@ -7397,6 +7406,7 @@ self: super: {
|
||||
"rosso" = dontDistribute super."rosso";
|
||||
"rot13" = dontDistribute super."rot13";
|
||||
"rotating-log" = dontDistribute super."rotating-log";
|
||||
"roundRobin" = dontDistribute super."roundRobin";
|
||||
"rounding" = dontDistribute super."rounding";
|
||||
"roundtrip" = dontDistribute super."roundtrip";
|
||||
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
|
||||
@ -7617,6 +7627,7 @@ self: super: {
|
||||
"servant-postgresql" = dontDistribute super."servant-postgresql";
|
||||
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
|
||||
"servant-response" = dontDistribute super."servant-response";
|
||||
"servant-router" = dontDistribute super."servant-router";
|
||||
"servant-scotty" = dontDistribute super."servant-scotty";
|
||||
"servant-server" = dontDistribute super."servant-server";
|
||||
"servant-swagger" = dontDistribute super."servant-swagger";
|
||||
@ -8077,6 +8088,7 @@ self: super: {
|
||||
"storablevector" = dontDistribute super."storablevector";
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"store" = dontDistribute super."store";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
@ -8137,6 +8149,7 @@ self: super: {
|
||||
"subnet" = dontDistribute super."subnet";
|
||||
"subtitleParser" = dontDistribute super."subtitleParser";
|
||||
"subtitles" = dontDistribute super."subtitles";
|
||||
"subwordgraph" = dontDistribute super."subwordgraph";
|
||||
"success" = dontDistribute super."success";
|
||||
"suffixarray" = dontDistribute super."suffixarray";
|
||||
"suffixtree" = dontDistribute super."suffixtree";
|
||||
@ -8353,6 +8366,7 @@ self: super: {
|
||||
"test-shouldbe" = dontDistribute super."test-shouldbe";
|
||||
"test-simple" = dontDistribute super."test-simple";
|
||||
"testPkg" = dontDistribute super."testPkg";
|
||||
"testbench" = dontDistribute super."testbench";
|
||||
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
|
||||
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
|
||||
"testloop" = dontDistribute super."testloop";
|
||||
@ -8365,6 +8379,7 @@ self: super: {
|
||||
"text" = doDistribute super."text_1_2_0_4";
|
||||
"text-and-plots" = dontDistribute super."text-and-plots";
|
||||
"text-binary" = doDistribute super."text-binary_0_1_0";
|
||||
"text-conversions" = dontDistribute super."text-conversions";
|
||||
"text-format-simple" = dontDistribute super."text-format-simple";
|
||||
"text-icu-translit" = dontDistribute super."text-icu-translit";
|
||||
"text-json-qq" = dontDistribute super."text-json-qq";
|
||||
@ -8545,6 +8560,7 @@ self: super: {
|
||||
"tracetree" = dontDistribute super."tracetree";
|
||||
"tracker" = dontDistribute super."tracker";
|
||||
"tracy" = dontDistribute super."tracy";
|
||||
"traildb" = dontDistribute super."traildb";
|
||||
"trajectory" = dontDistribute super."trajectory";
|
||||
"transactional-events" = dontDistribute super."transactional-events";
|
||||
"transf" = dontDistribute super."transf";
|
||||
@ -9046,6 +9062,7 @@ self: super: {
|
||||
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
|
||||
"web-css" = dontDistribute super."web-css";
|
||||
"web-encodings" = dontDistribute super."web-encodings";
|
||||
"web-inv-route" = dontDistribute super."web-inv-route";
|
||||
"web-mongrel2" = dontDistribute super."web-mongrel2";
|
||||
"web-page" = dontDistribute super."web-page";
|
||||
"web-plugins" = dontDistribute super."web-plugins";
|
||||
@ -9100,6 +9117,7 @@ self: super: {
|
||||
"whois" = dontDistribute super."whois";
|
||||
"why3" = dontDistribute super."why3";
|
||||
"wigner-symbols" = dontDistribute super."wigner-symbols";
|
||||
"wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
|
||||
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
|
||||
"win-hp-path" = dontDistribute super."win-hp-path";
|
||||
"windowslive" = dontDistribute super."windowslive";
|
||||
@ -9124,6 +9142,7 @@ self: super: {
|
||||
"wolf" = dontDistribute super."wolf";
|
||||
"woot" = dontDistribute super."woot";
|
||||
"word-trie" = dontDistribute super."word-trie";
|
||||
"word-vector" = dontDistribute super."word-vector";
|
||||
"word24" = dontDistribute super."word24";
|
||||
"wordcloud" = dontDistribute super."wordcloud";
|
||||
"wordexp" = dontDistribute super."wordexp";
|
||||
@ -9245,6 +9264,7 @@ self: super: {
|
||||
"xournal-parser" = dontDistribute super."xournal-parser";
|
||||
"xournal-render" = dontDistribute super."xournal-render";
|
||||
"xournal-types" = dontDistribute super."xournal-types";
|
||||
"xpathdsv" = dontDistribute super."xpathdsv";
|
||||
"xsact" = dontDistribute super."xsact";
|
||||
"xsd" = dontDistribute super."xsd";
|
||||
"xsha1" = dontDistribute super."xsha1";
|
||||
@ -9328,6 +9348,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-ip" = dontDistribute super."yesod-ip";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
|
@ -3536,6 +3536,8 @@ self: super: {
|
||||
"getopt-simple" = dontDistribute super."getopt-simple";
|
||||
"gf" = dontDistribute super."gf";
|
||||
"ggtsTC" = dontDistribute super."ggtsTC";
|
||||
"ghc-boot" = dontDistribute super."ghc-boot";
|
||||
"ghc-boot-th" = dontDistribute super."ghc-boot-th";
|
||||
"ghc-core" = dontDistribute super."ghc-core";
|
||||
"ghc-core-html" = dontDistribute super."ghc-core-html";
|
||||
"ghc-datasize" = dontDistribute super."ghc-datasize";
|
||||
@ -3568,6 +3570,7 @@ self: super: {
|
||||
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
|
||||
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci" = dontDistribute super."ghci";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
"ghci-lib" = dontDistribute super."ghci-lib";
|
||||
@ -3614,6 +3617,7 @@ self: super: {
|
||||
"gipeda" = dontDistribute super."gipeda";
|
||||
"giphy-api" = dontDistribute super."giphy-api";
|
||||
"gist" = dontDistribute super."gist";
|
||||
"git" = dontDistribute super."git";
|
||||
"git-all" = dontDistribute super."git-all";
|
||||
"git-annex" = dontDistribute super."git-annex";
|
||||
"git-checklist" = dontDistribute super."git-checklist";
|
||||
@ -4106,6 +4110,7 @@ self: super: {
|
||||
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
|
||||
"harp" = dontDistribute super."harp";
|
||||
"harpy" = dontDistribute super."harpy";
|
||||
"harvest-api" = dontDistribute super."harvest-api";
|
||||
"has" = dontDistribute super."has";
|
||||
"has-th" = dontDistribute super."has-th";
|
||||
"hascal" = dontDistribute super."hascal";
|
||||
@ -5095,6 +5100,7 @@ self: super: {
|
||||
"instrument-chord" = dontDistribute super."instrument-chord";
|
||||
"int-cast" = dontDistribute super."int-cast";
|
||||
"integer-pure" = dontDistribute super."integer-pure";
|
||||
"integer-simple" = dontDistribute super."integer-simple";
|
||||
"intel-aes" = dontDistribute super."intel-aes";
|
||||
"interchangeable" = dontDistribute super."interchangeable";
|
||||
"interleavableGen" = dontDistribute super."interleavableGen";
|
||||
@ -7015,6 +7021,7 @@ self: super: {
|
||||
"push-notify-general" = dontDistribute super."push-notify-general";
|
||||
"pusher-haskell" = dontDistribute super."pusher-haskell";
|
||||
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
|
||||
"pusher-ws" = dontDistribute super."pusher-ws";
|
||||
"pushme" = dontDistribute super."pushme";
|
||||
"putlenses" = dontDistribute super."putlenses";
|
||||
"puzzle-draw" = dontDistribute super."puzzle-draw";
|
||||
@ -7046,6 +7053,7 @@ self: super: {
|
||||
"queuelike" = dontDistribute super."queuelike";
|
||||
"quick-generator" = dontDistribute super."quick-generator";
|
||||
"quick-schema" = dontDistribute super."quick-schema";
|
||||
"quickbooks" = dontDistribute super."quickbooks";
|
||||
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
|
||||
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
|
||||
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
|
||||
@ -7211,6 +7219,7 @@ self: super: {
|
||||
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
|
||||
"reflex-gloss" = dontDistribute super."reflex-gloss";
|
||||
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
|
||||
"reflex-jsx" = dontDistribute super."reflex-jsx";
|
||||
"reflex-orphans" = dontDistribute super."reflex-orphans";
|
||||
"reflex-transformers" = dontDistribute super."reflex-transformers";
|
||||
"reform" = dontDistribute super."reform";
|
||||
@ -7393,6 +7402,7 @@ self: super: {
|
||||
"rosso" = dontDistribute super."rosso";
|
||||
"rot13" = dontDistribute super."rot13";
|
||||
"rotating-log" = dontDistribute super."rotating-log";
|
||||
"roundRobin" = dontDistribute super."roundRobin";
|
||||
"rounding" = dontDistribute super."rounding";
|
||||
"roundtrip" = dontDistribute super."roundtrip";
|
||||
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
|
||||
@ -7613,6 +7623,7 @@ self: super: {
|
||||
"servant-postgresql" = dontDistribute super."servant-postgresql";
|
||||
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
|
||||
"servant-response" = dontDistribute super."servant-response";
|
||||
"servant-router" = dontDistribute super."servant-router";
|
||||
"servant-scotty" = dontDistribute super."servant-scotty";
|
||||
"servant-server" = dontDistribute super."servant-server";
|
||||
"servant-swagger" = dontDistribute super."servant-swagger";
|
||||
@ -8073,6 +8084,7 @@ self: super: {
|
||||
"storablevector" = dontDistribute super."storablevector";
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"store" = dontDistribute super."store";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
@ -8133,6 +8145,7 @@ self: super: {
|
||||
"subnet" = dontDistribute super."subnet";
|
||||
"subtitleParser" = dontDistribute super."subtitleParser";
|
||||
"subtitles" = dontDistribute super."subtitles";
|
||||
"subwordgraph" = dontDistribute super."subwordgraph";
|
||||
"success" = dontDistribute super."success";
|
||||
"suffixarray" = dontDistribute super."suffixarray";
|
||||
"suffixtree" = dontDistribute super."suffixtree";
|
||||
@ -8349,6 +8362,7 @@ self: super: {
|
||||
"test-shouldbe" = dontDistribute super."test-shouldbe";
|
||||
"test-simple" = dontDistribute super."test-simple";
|
||||
"testPkg" = dontDistribute super."testPkg";
|
||||
"testbench" = dontDistribute super."testbench";
|
||||
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
|
||||
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
|
||||
"testloop" = dontDistribute super."testloop";
|
||||
@ -8361,6 +8375,7 @@ self: super: {
|
||||
"text" = doDistribute super."text_1_2_0_4";
|
||||
"text-and-plots" = dontDistribute super."text-and-plots";
|
||||
"text-binary" = doDistribute super."text-binary_0_1_0";
|
||||
"text-conversions" = dontDistribute super."text-conversions";
|
||||
"text-format-simple" = dontDistribute super."text-format-simple";
|
||||
"text-icu-translit" = dontDistribute super."text-icu-translit";
|
||||
"text-json-qq" = dontDistribute super."text-json-qq";
|
||||
@ -8541,6 +8556,7 @@ self: super: {
|
||||
"tracetree" = dontDistribute super."tracetree";
|
||||
"tracker" = dontDistribute super."tracker";
|
||||
"tracy" = dontDistribute super."tracy";
|
||||
"traildb" = dontDistribute super."traildb";
|
||||
"trajectory" = dontDistribute super."trajectory";
|
||||
"transactional-events" = dontDistribute super."transactional-events";
|
||||
"transf" = dontDistribute super."transf";
|
||||
@ -9042,6 +9058,7 @@ self: super: {
|
||||
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
|
||||
"web-css" = dontDistribute super."web-css";
|
||||
"web-encodings" = dontDistribute super."web-encodings";
|
||||
"web-inv-route" = dontDistribute super."web-inv-route";
|
||||
"web-mongrel2" = dontDistribute super."web-mongrel2";
|
||||
"web-page" = dontDistribute super."web-page";
|
||||
"web-plugins" = dontDistribute super."web-plugins";
|
||||
@ -9096,6 +9113,7 @@ self: super: {
|
||||
"whois" = dontDistribute super."whois";
|
||||
"why3" = dontDistribute super."why3";
|
||||
"wigner-symbols" = dontDistribute super."wigner-symbols";
|
||||
"wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
|
||||
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
|
||||
"win-hp-path" = dontDistribute super."win-hp-path";
|
||||
"windowslive" = dontDistribute super."windowslive";
|
||||
@ -9120,6 +9138,7 @@ self: super: {
|
||||
"wolf" = dontDistribute super."wolf";
|
||||
"woot" = dontDistribute super."woot";
|
||||
"word-trie" = dontDistribute super."word-trie";
|
||||
"word-vector" = dontDistribute super."word-vector";
|
||||
"word24" = dontDistribute super."word24";
|
||||
"wordcloud" = dontDistribute super."wordcloud";
|
||||
"wordexp" = dontDistribute super."wordexp";
|
||||
@ -9241,6 +9260,7 @@ self: super: {
|
||||
"xournal-parser" = dontDistribute super."xournal-parser";
|
||||
"xournal-render" = dontDistribute super."xournal-render";
|
||||
"xournal-types" = dontDistribute super."xournal-types";
|
||||
"xpathdsv" = dontDistribute super."xpathdsv";
|
||||
"xsact" = dontDistribute super."xsact";
|
||||
"xsd" = dontDistribute super."xsd";
|
||||
"xsha1" = dontDistribute super."xsha1";
|
||||
@ -9324,6 +9344,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-ip" = dontDistribute super."yesod-ip";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
|
@ -3536,6 +3536,8 @@ self: super: {
|
||||
"getopt-simple" = dontDistribute super."getopt-simple";
|
||||
"gf" = dontDistribute super."gf";
|
||||
"ggtsTC" = dontDistribute super."ggtsTC";
|
||||
"ghc-boot" = dontDistribute super."ghc-boot";
|
||||
"ghc-boot-th" = dontDistribute super."ghc-boot-th";
|
||||
"ghc-core" = dontDistribute super."ghc-core";
|
||||
"ghc-core-html" = dontDistribute super."ghc-core-html";
|
||||
"ghc-datasize" = dontDistribute super."ghc-datasize";
|
||||
@ -3568,6 +3570,7 @@ self: super: {
|
||||
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
|
||||
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci" = dontDistribute super."ghci";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
"ghci-lib" = dontDistribute super."ghci-lib";
|
||||
@ -3614,6 +3617,7 @@ self: super: {
|
||||
"gipeda" = dontDistribute super."gipeda";
|
||||
"giphy-api" = dontDistribute super."giphy-api";
|
||||
"gist" = dontDistribute super."gist";
|
||||
"git" = dontDistribute super."git";
|
||||
"git-all" = dontDistribute super."git-all";
|
||||
"git-annex" = dontDistribute super."git-annex";
|
||||
"git-checklist" = dontDistribute super."git-checklist";
|
||||
@ -4106,6 +4110,7 @@ self: super: {
|
||||
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
|
||||
"harp" = dontDistribute super."harp";
|
||||
"harpy" = dontDistribute super."harpy";
|
||||
"harvest-api" = dontDistribute super."harvest-api";
|
||||
"has" = dontDistribute super."has";
|
||||
"has-th" = dontDistribute super."has-th";
|
||||
"hascal" = dontDistribute super."hascal";
|
||||
@ -5094,6 +5099,7 @@ self: super: {
|
||||
"instrument-chord" = dontDistribute super."instrument-chord";
|
||||
"int-cast" = dontDistribute super."int-cast";
|
||||
"integer-pure" = dontDistribute super."integer-pure";
|
||||
"integer-simple" = dontDistribute super."integer-simple";
|
||||
"intel-aes" = dontDistribute super."intel-aes";
|
||||
"interchangeable" = dontDistribute super."interchangeable";
|
||||
"interleavableGen" = dontDistribute super."interleavableGen";
|
||||
@ -7014,6 +7020,7 @@ self: super: {
|
||||
"push-notify-general" = dontDistribute super."push-notify-general";
|
||||
"pusher-haskell" = dontDistribute super."pusher-haskell";
|
||||
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
|
||||
"pusher-ws" = dontDistribute super."pusher-ws";
|
||||
"pushme" = dontDistribute super."pushme";
|
||||
"putlenses" = dontDistribute super."putlenses";
|
||||
"puzzle-draw" = dontDistribute super."puzzle-draw";
|
||||
@ -7045,6 +7052,7 @@ self: super: {
|
||||
"queuelike" = dontDistribute super."queuelike";
|
||||
"quick-generator" = dontDistribute super."quick-generator";
|
||||
"quick-schema" = dontDistribute super."quick-schema";
|
||||
"quickbooks" = dontDistribute super."quickbooks";
|
||||
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
|
||||
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
|
||||
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
|
||||
@ -7210,6 +7218,7 @@ self: super: {
|
||||
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
|
||||
"reflex-gloss" = dontDistribute super."reflex-gloss";
|
||||
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
|
||||
"reflex-jsx" = dontDistribute super."reflex-jsx";
|
||||
"reflex-orphans" = dontDistribute super."reflex-orphans";
|
||||
"reflex-transformers" = dontDistribute super."reflex-transformers";
|
||||
"reform" = dontDistribute super."reform";
|
||||
@ -7392,6 +7401,7 @@ self: super: {
|
||||
"rosso" = dontDistribute super."rosso";
|
||||
"rot13" = dontDistribute super."rot13";
|
||||
"rotating-log" = dontDistribute super."rotating-log";
|
||||
"roundRobin" = dontDistribute super."roundRobin";
|
||||
"rounding" = dontDistribute super."rounding";
|
||||
"roundtrip" = dontDistribute super."roundtrip";
|
||||
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
|
||||
@ -7612,6 +7622,7 @@ self: super: {
|
||||
"servant-postgresql" = dontDistribute super."servant-postgresql";
|
||||
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
|
||||
"servant-response" = dontDistribute super."servant-response";
|
||||
"servant-router" = dontDistribute super."servant-router";
|
||||
"servant-scotty" = dontDistribute super."servant-scotty";
|
||||
"servant-server" = dontDistribute super."servant-server";
|
||||
"servant-swagger" = dontDistribute super."servant-swagger";
|
||||
@ -8072,6 +8083,7 @@ self: super: {
|
||||
"storablevector" = dontDistribute super."storablevector";
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"store" = dontDistribute super."store";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
@ -8132,6 +8144,7 @@ self: super: {
|
||||
"subnet" = dontDistribute super."subnet";
|
||||
"subtitleParser" = dontDistribute super."subtitleParser";
|
||||
"subtitles" = dontDistribute super."subtitles";
|
||||
"subwordgraph" = dontDistribute super."subwordgraph";
|
||||
"success" = dontDistribute super."success";
|
||||
"suffixarray" = dontDistribute super."suffixarray";
|
||||
"suffixtree" = dontDistribute super."suffixtree";
|
||||
@ -8348,6 +8361,7 @@ self: super: {
|
||||
"test-shouldbe" = dontDistribute super."test-shouldbe";
|
||||
"test-simple" = dontDistribute super."test-simple";
|
||||
"testPkg" = dontDistribute super."testPkg";
|
||||
"testbench" = dontDistribute super."testbench";
|
||||
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
|
||||
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
|
||||
"testloop" = dontDistribute super."testloop";
|
||||
@ -8360,6 +8374,7 @@ self: super: {
|
||||
"text" = doDistribute super."text_1_2_0_4";
|
||||
"text-and-plots" = dontDistribute super."text-and-plots";
|
||||
"text-binary" = doDistribute super."text-binary_0_1_0";
|
||||
"text-conversions" = dontDistribute super."text-conversions";
|
||||
"text-format-simple" = dontDistribute super."text-format-simple";
|
||||
"text-icu-translit" = dontDistribute super."text-icu-translit";
|
||||
"text-json-qq" = dontDistribute super."text-json-qq";
|
||||
@ -8540,6 +8555,7 @@ self: super: {
|
||||
"tracetree" = dontDistribute super."tracetree";
|
||||
"tracker" = dontDistribute super."tracker";
|
||||
"tracy" = dontDistribute super."tracy";
|
||||
"traildb" = dontDistribute super."traildb";
|
||||
"trajectory" = dontDistribute super."trajectory";
|
||||
"transactional-events" = dontDistribute super."transactional-events";
|
||||
"transf" = dontDistribute super."transf";
|
||||
@ -9041,6 +9057,7 @@ self: super: {
|
||||
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
|
||||
"web-css" = dontDistribute super."web-css";
|
||||
"web-encodings" = dontDistribute super."web-encodings";
|
||||
"web-inv-route" = dontDistribute super."web-inv-route";
|
||||
"web-mongrel2" = dontDistribute super."web-mongrel2";
|
||||
"web-page" = dontDistribute super."web-page";
|
||||
"web-plugins" = dontDistribute super."web-plugins";
|
||||
@ -9095,6 +9112,7 @@ self: super: {
|
||||
"whois" = dontDistribute super."whois";
|
||||
"why3" = dontDistribute super."why3";
|
||||
"wigner-symbols" = dontDistribute super."wigner-symbols";
|
||||
"wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
|
||||
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
|
||||
"win-hp-path" = dontDistribute super."win-hp-path";
|
||||
"windowslive" = dontDistribute super."windowslive";
|
||||
@ -9119,6 +9137,7 @@ self: super: {
|
||||
"wolf" = dontDistribute super."wolf";
|
||||
"woot" = dontDistribute super."woot";
|
||||
"word-trie" = dontDistribute super."word-trie";
|
||||
"word-vector" = dontDistribute super."word-vector";
|
||||
"word24" = dontDistribute super."word24";
|
||||
"wordcloud" = dontDistribute super."wordcloud";
|
||||
"wordexp" = dontDistribute super."wordexp";
|
||||
@ -9240,6 +9259,7 @@ self: super: {
|
||||
"xournal-parser" = dontDistribute super."xournal-parser";
|
||||
"xournal-render" = dontDistribute super."xournal-render";
|
||||
"xournal-types" = dontDistribute super."xournal-types";
|
||||
"xpathdsv" = dontDistribute super."xpathdsv";
|
||||
"xsact" = dontDistribute super."xsact";
|
||||
"xsd" = dontDistribute super."xsd";
|
||||
"xsha1" = dontDistribute super."xsha1";
|
||||
@ -9323,6 +9343,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-ip" = dontDistribute super."yesod-ip";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
|
@ -3536,6 +3536,8 @@ self: super: {
|
||||
"getopt-simple" = dontDistribute super."getopt-simple";
|
||||
"gf" = dontDistribute super."gf";
|
||||
"ggtsTC" = dontDistribute super."ggtsTC";
|
||||
"ghc-boot" = dontDistribute super."ghc-boot";
|
||||
"ghc-boot-th" = dontDistribute super."ghc-boot-th";
|
||||
"ghc-core" = dontDistribute super."ghc-core";
|
||||
"ghc-core-html" = dontDistribute super."ghc-core-html";
|
||||
"ghc-datasize" = dontDistribute super."ghc-datasize";
|
||||
@ -3568,6 +3570,7 @@ self: super: {
|
||||
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
|
||||
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci" = dontDistribute super."ghci";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
"ghci-lib" = dontDistribute super."ghci-lib";
|
||||
@ -3614,6 +3617,7 @@ self: super: {
|
||||
"gipeda" = dontDistribute super."gipeda";
|
||||
"giphy-api" = dontDistribute super."giphy-api";
|
||||
"gist" = dontDistribute super."gist";
|
||||
"git" = dontDistribute super."git";
|
||||
"git-all" = dontDistribute super."git-all";
|
||||
"git-annex" = dontDistribute super."git-annex";
|
||||
"git-checklist" = dontDistribute super."git-checklist";
|
||||
@ -4105,6 +4109,7 @@ self: super: {
|
||||
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
|
||||
"harp" = dontDistribute super."harp";
|
||||
"harpy" = dontDistribute super."harpy";
|
||||
"harvest-api" = dontDistribute super."harvest-api";
|
||||
"has" = dontDistribute super."has";
|
||||
"has-th" = dontDistribute super."has-th";
|
||||
"hascal" = dontDistribute super."hascal";
|
||||
@ -5093,6 +5098,7 @@ self: super: {
|
||||
"instrument-chord" = dontDistribute super."instrument-chord";
|
||||
"int-cast" = dontDistribute super."int-cast";
|
||||
"integer-pure" = dontDistribute super."integer-pure";
|
||||
"integer-simple" = dontDistribute super."integer-simple";
|
||||
"intel-aes" = dontDistribute super."intel-aes";
|
||||
"interchangeable" = dontDistribute super."interchangeable";
|
||||
"interleavableGen" = dontDistribute super."interleavableGen";
|
||||
@ -7013,6 +7019,7 @@ self: super: {
|
||||
"push-notify-general" = dontDistribute super."push-notify-general";
|
||||
"pusher-haskell" = dontDistribute super."pusher-haskell";
|
||||
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
|
||||
"pusher-ws" = dontDistribute super."pusher-ws";
|
||||
"pushme" = dontDistribute super."pushme";
|
||||
"putlenses" = dontDistribute super."putlenses";
|
||||
"puzzle-draw" = dontDistribute super."puzzle-draw";
|
||||
@ -7044,6 +7051,7 @@ self: super: {
|
||||
"queuelike" = dontDistribute super."queuelike";
|
||||
"quick-generator" = dontDistribute super."quick-generator";
|
||||
"quick-schema" = dontDistribute super."quick-schema";
|
||||
"quickbooks" = dontDistribute super."quickbooks";
|
||||
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
|
||||
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
|
||||
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
|
||||
@ -7209,6 +7217,7 @@ self: super: {
|
||||
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
|
||||
"reflex-gloss" = dontDistribute super."reflex-gloss";
|
||||
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
|
||||
"reflex-jsx" = dontDistribute super."reflex-jsx";
|
||||
"reflex-orphans" = dontDistribute super."reflex-orphans";
|
||||
"reflex-transformers" = dontDistribute super."reflex-transformers";
|
||||
"reform" = dontDistribute super."reform";
|
||||
@ -7391,6 +7400,7 @@ self: super: {
|
||||
"rosso" = dontDistribute super."rosso";
|
||||
"rot13" = dontDistribute super."rot13";
|
||||
"rotating-log" = dontDistribute super."rotating-log";
|
||||
"roundRobin" = dontDistribute super."roundRobin";
|
||||
"rounding" = dontDistribute super."rounding";
|
||||
"roundtrip" = dontDistribute super."roundtrip";
|
||||
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
|
||||
@ -7611,6 +7621,7 @@ self: super: {
|
||||
"servant-postgresql" = dontDistribute super."servant-postgresql";
|
||||
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
|
||||
"servant-response" = dontDistribute super."servant-response";
|
||||
"servant-router" = dontDistribute super."servant-router";
|
||||
"servant-scotty" = dontDistribute super."servant-scotty";
|
||||
"servant-server" = dontDistribute super."servant-server";
|
||||
"servant-swagger" = dontDistribute super."servant-swagger";
|
||||
@ -8071,6 +8082,7 @@ self: super: {
|
||||
"storablevector" = dontDistribute super."storablevector";
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"store" = dontDistribute super."store";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
@ -8131,6 +8143,7 @@ self: super: {
|
||||
"subnet" = dontDistribute super."subnet";
|
||||
"subtitleParser" = dontDistribute super."subtitleParser";
|
||||
"subtitles" = dontDistribute super."subtitles";
|
||||
"subwordgraph" = dontDistribute super."subwordgraph";
|
||||
"success" = dontDistribute super."success";
|
||||
"suffixarray" = dontDistribute super."suffixarray";
|
||||
"suffixtree" = dontDistribute super."suffixtree";
|
||||
@ -8346,6 +8359,7 @@ self: super: {
|
||||
"test-shouldbe" = dontDistribute super."test-shouldbe";
|
||||
"test-simple" = dontDistribute super."test-simple";
|
||||
"testPkg" = dontDistribute super."testPkg";
|
||||
"testbench" = dontDistribute super."testbench";
|
||||
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
|
||||
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
|
||||
"testloop" = dontDistribute super."testloop";
|
||||
@ -8358,6 +8372,7 @@ self: super: {
|
||||
"text" = doDistribute super."text_1_2_0_4";
|
||||
"text-and-plots" = dontDistribute super."text-and-plots";
|
||||
"text-binary" = doDistribute super."text-binary_0_1_0";
|
||||
"text-conversions" = dontDistribute super."text-conversions";
|
||||
"text-format-simple" = dontDistribute super."text-format-simple";
|
||||
"text-icu-translit" = dontDistribute super."text-icu-translit";
|
||||
"text-json-qq" = dontDistribute super."text-json-qq";
|
||||
@ -8538,6 +8553,7 @@ self: super: {
|
||||
"tracetree" = dontDistribute super."tracetree";
|
||||
"tracker" = dontDistribute super."tracker";
|
||||
"tracy" = dontDistribute super."tracy";
|
||||
"traildb" = dontDistribute super."traildb";
|
||||
"trajectory" = dontDistribute super."trajectory";
|
||||
"transactional-events" = dontDistribute super."transactional-events";
|
||||
"transf" = dontDistribute super."transf";
|
||||
@ -9039,6 +9055,7 @@ self: super: {
|
||||
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
|
||||
"web-css" = dontDistribute super."web-css";
|
||||
"web-encodings" = dontDistribute super."web-encodings";
|
||||
"web-inv-route" = dontDistribute super."web-inv-route";
|
||||
"web-mongrel2" = dontDistribute super."web-mongrel2";
|
||||
"web-page" = dontDistribute super."web-page";
|
||||
"web-plugins" = dontDistribute super."web-plugins";
|
||||
@ -9093,6 +9110,7 @@ self: super: {
|
||||
"whois" = dontDistribute super."whois";
|
||||
"why3" = dontDistribute super."why3";
|
||||
"wigner-symbols" = dontDistribute super."wigner-symbols";
|
||||
"wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
|
||||
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
|
||||
"win-hp-path" = dontDistribute super."win-hp-path";
|
||||
"windowslive" = dontDistribute super."windowslive";
|
||||
@ -9117,6 +9135,7 @@ self: super: {
|
||||
"wolf" = dontDistribute super."wolf";
|
||||
"woot" = dontDistribute super."woot";
|
||||
"word-trie" = dontDistribute super."word-trie";
|
||||
"word-vector" = dontDistribute super."word-vector";
|
||||
"word24" = dontDistribute super."word24";
|
||||
"wordcloud" = dontDistribute super."wordcloud";
|
||||
"wordexp" = dontDistribute super."wordexp";
|
||||
@ -9238,6 +9257,7 @@ self: super: {
|
||||
"xournal-parser" = dontDistribute super."xournal-parser";
|
||||
"xournal-render" = dontDistribute super."xournal-render";
|
||||
"xournal-types" = dontDistribute super."xournal-types";
|
||||
"xpathdsv" = dontDistribute super."xpathdsv";
|
||||
"xsact" = dontDistribute super."xsact";
|
||||
"xsd" = dontDistribute super."xsd";
|
||||
"xsha1" = dontDistribute super."xsha1";
|
||||
@ -9321,6 +9341,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-ip" = dontDistribute super."yesod-ip";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
|
@ -3533,6 +3533,8 @@ self: super: {
|
||||
"getopt-simple" = dontDistribute super."getopt-simple";
|
||||
"gf" = dontDistribute super."gf";
|
||||
"ggtsTC" = dontDistribute super."ggtsTC";
|
||||
"ghc-boot" = dontDistribute super."ghc-boot";
|
||||
"ghc-boot-th" = dontDistribute super."ghc-boot-th";
|
||||
"ghc-core" = dontDistribute super."ghc-core";
|
||||
"ghc-core-html" = dontDistribute super."ghc-core-html";
|
||||
"ghc-datasize" = dontDistribute super."ghc-datasize";
|
||||
@ -3565,6 +3567,7 @@ self: super: {
|
||||
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
|
||||
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci" = dontDistribute super."ghci";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
"ghci-lib" = dontDistribute super."ghci-lib";
|
||||
@ -3611,6 +3614,7 @@ self: super: {
|
||||
"gipeda" = dontDistribute super."gipeda";
|
||||
"giphy-api" = dontDistribute super."giphy-api";
|
||||
"gist" = dontDistribute super."gist";
|
||||
"git" = dontDistribute super."git";
|
||||
"git-all" = dontDistribute super."git-all";
|
||||
"git-annex" = dontDistribute super."git-annex";
|
||||
"git-checklist" = dontDistribute super."git-checklist";
|
||||
@ -4102,6 +4106,7 @@ self: super: {
|
||||
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
|
||||
"harp" = dontDistribute super."harp";
|
||||
"harpy" = dontDistribute super."harpy";
|
||||
"harvest-api" = dontDistribute super."harvest-api";
|
||||
"has" = dontDistribute super."has";
|
||||
"has-th" = dontDistribute super."has-th";
|
||||
"hascal" = dontDistribute super."hascal";
|
||||
@ -5090,6 +5095,7 @@ self: super: {
|
||||
"instrument-chord" = dontDistribute super."instrument-chord";
|
||||
"int-cast" = dontDistribute super."int-cast";
|
||||
"integer-pure" = dontDistribute super."integer-pure";
|
||||
"integer-simple" = dontDistribute super."integer-simple";
|
||||
"intel-aes" = dontDistribute super."intel-aes";
|
||||
"interchangeable" = dontDistribute super."interchangeable";
|
||||
"interleavableGen" = dontDistribute super."interleavableGen";
|
||||
@ -7010,6 +7016,7 @@ self: super: {
|
||||
"push-notify-general" = dontDistribute super."push-notify-general";
|
||||
"pusher-haskell" = dontDistribute super."pusher-haskell";
|
||||
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
|
||||
"pusher-ws" = dontDistribute super."pusher-ws";
|
||||
"pushme" = dontDistribute super."pushme";
|
||||
"putlenses" = dontDistribute super."putlenses";
|
||||
"puzzle-draw" = dontDistribute super."puzzle-draw";
|
||||
@ -7041,6 +7048,7 @@ self: super: {
|
||||
"queuelike" = dontDistribute super."queuelike";
|
||||
"quick-generator" = dontDistribute super."quick-generator";
|
||||
"quick-schema" = dontDistribute super."quick-schema";
|
||||
"quickbooks" = dontDistribute super."quickbooks";
|
||||
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
|
||||
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
|
||||
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
|
||||
@ -7205,6 +7213,7 @@ self: super: {
|
||||
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
|
||||
"reflex-gloss" = dontDistribute super."reflex-gloss";
|
||||
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
|
||||
"reflex-jsx" = dontDistribute super."reflex-jsx";
|
||||
"reflex-orphans" = dontDistribute super."reflex-orphans";
|
||||
"reflex-transformers" = dontDistribute super."reflex-transformers";
|
||||
"reform" = dontDistribute super."reform";
|
||||
@ -7387,6 +7396,7 @@ self: super: {
|
||||
"rosso" = dontDistribute super."rosso";
|
||||
"rot13" = dontDistribute super."rot13";
|
||||
"rotating-log" = dontDistribute super."rotating-log";
|
||||
"roundRobin" = dontDistribute super."roundRobin";
|
||||
"rounding" = dontDistribute super."rounding";
|
||||
"roundtrip" = dontDistribute super."roundtrip";
|
||||
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
|
||||
@ -7607,6 +7617,7 @@ self: super: {
|
||||
"servant-postgresql" = dontDistribute super."servant-postgresql";
|
||||
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
|
||||
"servant-response" = dontDistribute super."servant-response";
|
||||
"servant-router" = dontDistribute super."servant-router";
|
||||
"servant-scotty" = dontDistribute super."servant-scotty";
|
||||
"servant-server" = dontDistribute super."servant-server";
|
||||
"servant-swagger" = dontDistribute super."servant-swagger";
|
||||
@ -8067,6 +8078,7 @@ self: super: {
|
||||
"storablevector" = dontDistribute super."storablevector";
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"store" = dontDistribute super."store";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
@ -8127,6 +8139,7 @@ self: super: {
|
||||
"subnet" = dontDistribute super."subnet";
|
||||
"subtitleParser" = dontDistribute super."subtitleParser";
|
||||
"subtitles" = dontDistribute super."subtitles";
|
||||
"subwordgraph" = dontDistribute super."subwordgraph";
|
||||
"success" = dontDistribute super."success";
|
||||
"suffixarray" = dontDistribute super."suffixarray";
|
||||
"suffixtree" = dontDistribute super."suffixtree";
|
||||
@ -8342,6 +8355,7 @@ self: super: {
|
||||
"test-shouldbe" = dontDistribute super."test-shouldbe";
|
||||
"test-simple" = dontDistribute super."test-simple";
|
||||
"testPkg" = dontDistribute super."testPkg";
|
||||
"testbench" = dontDistribute super."testbench";
|
||||
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
|
||||
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
|
||||
"testloop" = dontDistribute super."testloop";
|
||||
@ -8354,6 +8368,7 @@ self: super: {
|
||||
"text" = doDistribute super."text_1_2_0_4";
|
||||
"text-and-plots" = dontDistribute super."text-and-plots";
|
||||
"text-binary" = doDistribute super."text-binary_0_1_0";
|
||||
"text-conversions" = dontDistribute super."text-conversions";
|
||||
"text-format-simple" = dontDistribute super."text-format-simple";
|
||||
"text-icu-translit" = dontDistribute super."text-icu-translit";
|
||||
"text-json-qq" = dontDistribute super."text-json-qq";
|
||||
@ -8534,6 +8549,7 @@ self: super: {
|
||||
"tracetree" = dontDistribute super."tracetree";
|
||||
"tracker" = dontDistribute super."tracker";
|
||||
"tracy" = dontDistribute super."tracy";
|
||||
"traildb" = dontDistribute super."traildb";
|
||||
"trajectory" = dontDistribute super."trajectory";
|
||||
"transactional-events" = dontDistribute super."transactional-events";
|
||||
"transf" = dontDistribute super."transf";
|
||||
@ -9035,6 +9051,7 @@ self: super: {
|
||||
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
|
||||
"web-css" = dontDistribute super."web-css";
|
||||
"web-encodings" = dontDistribute super."web-encodings";
|
||||
"web-inv-route" = dontDistribute super."web-inv-route";
|
||||
"web-mongrel2" = dontDistribute super."web-mongrel2";
|
||||
"web-page" = dontDistribute super."web-page";
|
||||
"web-plugins" = dontDistribute super."web-plugins";
|
||||
@ -9089,6 +9106,7 @@ self: super: {
|
||||
"whois" = dontDistribute super."whois";
|
||||
"why3" = dontDistribute super."why3";
|
||||
"wigner-symbols" = dontDistribute super."wigner-symbols";
|
||||
"wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
|
||||
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
|
||||
"win-hp-path" = dontDistribute super."win-hp-path";
|
||||
"windowslive" = dontDistribute super."windowslive";
|
||||
@ -9113,6 +9131,7 @@ self: super: {
|
||||
"wolf" = dontDistribute super."wolf";
|
||||
"woot" = dontDistribute super."woot";
|
||||
"word-trie" = dontDistribute super."word-trie";
|
||||
"word-vector" = dontDistribute super."word-vector";
|
||||
"word24" = dontDistribute super."word24";
|
||||
"wordcloud" = dontDistribute super."wordcloud";
|
||||
"wordexp" = dontDistribute super."wordexp";
|
||||
@ -9234,6 +9253,7 @@ self: super: {
|
||||
"xournal-parser" = dontDistribute super."xournal-parser";
|
||||
"xournal-render" = dontDistribute super."xournal-render";
|
||||
"xournal-types" = dontDistribute super."xournal-types";
|
||||
"xpathdsv" = dontDistribute super."xpathdsv";
|
||||
"xsact" = dontDistribute super."xsact";
|
||||
"xsd" = dontDistribute super."xsd";
|
||||
"xsha1" = dontDistribute super."xsha1";
|
||||
@ -9317,6 +9337,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-ip" = dontDistribute super."yesod-ip";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
|
@ -3529,6 +3529,8 @@ self: super: {
|
||||
"getopt-simple" = dontDistribute super."getopt-simple";
|
||||
"gf" = dontDistribute super."gf";
|
||||
"ggtsTC" = dontDistribute super."ggtsTC";
|
||||
"ghc-boot" = dontDistribute super."ghc-boot";
|
||||
"ghc-boot-th" = dontDistribute super."ghc-boot-th";
|
||||
"ghc-core" = dontDistribute super."ghc-core";
|
||||
"ghc-core-html" = dontDistribute super."ghc-core-html";
|
||||
"ghc-datasize" = dontDistribute super."ghc-datasize";
|
||||
@ -3561,6 +3563,7 @@ self: super: {
|
||||
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
|
||||
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci" = dontDistribute super."ghci";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
"ghci-lib" = dontDistribute super."ghci-lib";
|
||||
@ -3607,6 +3610,7 @@ self: super: {
|
||||
"gipeda" = dontDistribute super."gipeda";
|
||||
"giphy-api" = dontDistribute super."giphy-api";
|
||||
"gist" = dontDistribute super."gist";
|
||||
"git" = dontDistribute super."git";
|
||||
"git-all" = dontDistribute super."git-all";
|
||||
"git-annex" = dontDistribute super."git-annex";
|
||||
"git-checklist" = dontDistribute super."git-checklist";
|
||||
@ -4098,6 +4102,7 @@ self: super: {
|
||||
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
|
||||
"harp" = dontDistribute super."harp";
|
||||
"harpy" = dontDistribute super."harpy";
|
||||
"harvest-api" = dontDistribute super."harvest-api";
|
||||
"has" = dontDistribute super."has";
|
||||
"has-th" = dontDistribute super."has-th";
|
||||
"hascal" = dontDistribute super."hascal";
|
||||
@ -5086,6 +5091,7 @@ self: super: {
|
||||
"instrument-chord" = dontDistribute super."instrument-chord";
|
||||
"int-cast" = dontDistribute super."int-cast";
|
||||
"integer-pure" = dontDistribute super."integer-pure";
|
||||
"integer-simple" = dontDistribute super."integer-simple";
|
||||
"intel-aes" = dontDistribute super."intel-aes";
|
||||
"interchangeable" = dontDistribute super."interchangeable";
|
||||
"interleavableGen" = dontDistribute super."interleavableGen";
|
||||
@ -7004,6 +7010,7 @@ self: super: {
|
||||
"push-notify-general" = dontDistribute super."push-notify-general";
|
||||
"pusher-haskell" = dontDistribute super."pusher-haskell";
|
||||
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
|
||||
"pusher-ws" = dontDistribute super."pusher-ws";
|
||||
"pushme" = dontDistribute super."pushme";
|
||||
"putlenses" = dontDistribute super."putlenses";
|
||||
"puzzle-draw" = dontDistribute super."puzzle-draw";
|
||||
@ -7035,6 +7042,7 @@ self: super: {
|
||||
"queuelike" = dontDistribute super."queuelike";
|
||||
"quick-generator" = dontDistribute super."quick-generator";
|
||||
"quick-schema" = dontDistribute super."quick-schema";
|
||||
"quickbooks" = dontDistribute super."quickbooks";
|
||||
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
|
||||
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
|
||||
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
|
||||
@ -7198,6 +7206,7 @@ self: super: {
|
||||
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
|
||||
"reflex-gloss" = dontDistribute super."reflex-gloss";
|
||||
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
|
||||
"reflex-jsx" = dontDistribute super."reflex-jsx";
|
||||
"reflex-orphans" = dontDistribute super."reflex-orphans";
|
||||
"reflex-transformers" = dontDistribute super."reflex-transformers";
|
||||
"reform" = dontDistribute super."reform";
|
||||
@ -7380,6 +7389,7 @@ self: super: {
|
||||
"rosso" = dontDistribute super."rosso";
|
||||
"rot13" = dontDistribute super."rot13";
|
||||
"rotating-log" = dontDistribute super."rotating-log";
|
||||
"roundRobin" = dontDistribute super."roundRobin";
|
||||
"rounding" = dontDistribute super."rounding";
|
||||
"roundtrip" = dontDistribute super."roundtrip";
|
||||
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
|
||||
@ -7600,6 +7610,7 @@ self: super: {
|
||||
"servant-postgresql" = dontDistribute super."servant-postgresql";
|
||||
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
|
||||
"servant-response" = dontDistribute super."servant-response";
|
||||
"servant-router" = dontDistribute super."servant-router";
|
||||
"servant-scotty" = dontDistribute super."servant-scotty";
|
||||
"servant-server" = dontDistribute super."servant-server";
|
||||
"servant-swagger" = dontDistribute super."servant-swagger";
|
||||
@ -8059,6 +8070,7 @@ self: super: {
|
||||
"storablevector" = dontDistribute super."storablevector";
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"store" = dontDistribute super."store";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
@ -8118,6 +8130,7 @@ self: super: {
|
||||
"subnet" = dontDistribute super."subnet";
|
||||
"subtitleParser" = dontDistribute super."subtitleParser";
|
||||
"subtitles" = dontDistribute super."subtitles";
|
||||
"subwordgraph" = dontDistribute super."subwordgraph";
|
||||
"success" = dontDistribute super."success";
|
||||
"suffixarray" = dontDistribute super."suffixarray";
|
||||
"suffixtree" = dontDistribute super."suffixtree";
|
||||
@ -8333,6 +8346,7 @@ self: super: {
|
||||
"test-shouldbe" = dontDistribute super."test-shouldbe";
|
||||
"test-simple" = dontDistribute super."test-simple";
|
||||
"testPkg" = dontDistribute super."testPkg";
|
||||
"testbench" = dontDistribute super."testbench";
|
||||
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
|
||||
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
|
||||
"testloop" = dontDistribute super."testloop";
|
||||
@ -8345,6 +8359,7 @@ self: super: {
|
||||
"text" = doDistribute super."text_1_2_0_4";
|
||||
"text-and-plots" = dontDistribute super."text-and-plots";
|
||||
"text-binary" = doDistribute super."text-binary_0_1_0";
|
||||
"text-conversions" = dontDistribute super."text-conversions";
|
||||
"text-format-simple" = dontDistribute super."text-format-simple";
|
||||
"text-icu-translit" = dontDistribute super."text-icu-translit";
|
||||
"text-json-qq" = dontDistribute super."text-json-qq";
|
||||
@ -8525,6 +8540,7 @@ self: super: {
|
||||
"tracetree" = dontDistribute super."tracetree";
|
||||
"tracker" = dontDistribute super."tracker";
|
||||
"tracy" = dontDistribute super."tracy";
|
||||
"traildb" = dontDistribute super."traildb";
|
||||
"trajectory" = dontDistribute super."trajectory";
|
||||
"transactional-events" = dontDistribute super."transactional-events";
|
||||
"transf" = dontDistribute super."transf";
|
||||
@ -9026,6 +9042,7 @@ self: super: {
|
||||
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
|
||||
"web-css" = dontDistribute super."web-css";
|
||||
"web-encodings" = dontDistribute super."web-encodings";
|
||||
"web-inv-route" = dontDistribute super."web-inv-route";
|
||||
"web-mongrel2" = dontDistribute super."web-mongrel2";
|
||||
"web-page" = dontDistribute super."web-page";
|
||||
"web-plugins" = dontDistribute super."web-plugins";
|
||||
@ -9080,6 +9097,7 @@ self: super: {
|
||||
"whois" = dontDistribute super."whois";
|
||||
"why3" = dontDistribute super."why3";
|
||||
"wigner-symbols" = dontDistribute super."wigner-symbols";
|
||||
"wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
|
||||
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
|
||||
"win-hp-path" = dontDistribute super."win-hp-path";
|
||||
"windowslive" = dontDistribute super."windowslive";
|
||||
@ -9103,6 +9121,7 @@ self: super: {
|
||||
"wolf" = dontDistribute super."wolf";
|
||||
"woot" = dontDistribute super."woot";
|
||||
"word-trie" = dontDistribute super."word-trie";
|
||||
"word-vector" = dontDistribute super."word-vector";
|
||||
"word24" = dontDistribute super."word24";
|
||||
"wordcloud" = dontDistribute super."wordcloud";
|
||||
"wordexp" = dontDistribute super."wordexp";
|
||||
@ -9224,6 +9243,7 @@ self: super: {
|
||||
"xournal-parser" = dontDistribute super."xournal-parser";
|
||||
"xournal-render" = dontDistribute super."xournal-render";
|
||||
"xournal-types" = dontDistribute super."xournal-types";
|
||||
"xpathdsv" = dontDistribute super."xpathdsv";
|
||||
"xsact" = dontDistribute super."xsact";
|
||||
"xsd" = dontDistribute super."xsd";
|
||||
"xsha1" = dontDistribute super."xsha1";
|
||||
@ -9307,6 +9327,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-ip" = dontDistribute super."yesod-ip";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
|
@ -3543,6 +3543,8 @@ self: super: {
|
||||
"getopt-simple" = dontDistribute super."getopt-simple";
|
||||
"gf" = dontDistribute super."gf";
|
||||
"ggtsTC" = dontDistribute super."ggtsTC";
|
||||
"ghc-boot" = dontDistribute super."ghc-boot";
|
||||
"ghc-boot-th" = dontDistribute super."ghc-boot-th";
|
||||
"ghc-core" = dontDistribute super."ghc-core";
|
||||
"ghc-core-html" = dontDistribute super."ghc-core-html";
|
||||
"ghc-datasize" = dontDistribute super."ghc-datasize";
|
||||
@ -3575,6 +3577,7 @@ self: super: {
|
||||
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
|
||||
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci" = dontDistribute super."ghci";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
"ghci-lib" = dontDistribute super."ghci-lib";
|
||||
@ -3621,6 +3624,7 @@ self: super: {
|
||||
"gipeda" = dontDistribute super."gipeda";
|
||||
"giphy-api" = dontDistribute super."giphy-api";
|
||||
"gist" = dontDistribute super."gist";
|
||||
"git" = dontDistribute super."git";
|
||||
"git-all" = dontDistribute super."git-all";
|
||||
"git-annex" = dontDistribute super."git-annex";
|
||||
"git-checklist" = dontDistribute super."git-checklist";
|
||||
@ -4114,6 +4118,7 @@ self: super: {
|
||||
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
|
||||
"harp" = dontDistribute super."harp";
|
||||
"harpy" = dontDistribute super."harpy";
|
||||
"harvest-api" = dontDistribute super."harvest-api";
|
||||
"has" = dontDistribute super."has";
|
||||
"has-th" = dontDistribute super."has-th";
|
||||
"hascal" = dontDistribute super."hascal";
|
||||
@ -5110,6 +5115,7 @@ self: super: {
|
||||
"instrument-chord" = dontDistribute super."instrument-chord";
|
||||
"int-cast" = dontDistribute super."int-cast";
|
||||
"integer-pure" = dontDistribute super."integer-pure";
|
||||
"integer-simple" = dontDistribute super."integer-simple";
|
||||
"integration" = doDistribute super."integration_0_2_0_1";
|
||||
"intel-aes" = dontDistribute super."intel-aes";
|
||||
"interchangeable" = dontDistribute super."interchangeable";
|
||||
@ -7035,6 +7041,7 @@ self: super: {
|
||||
"push-notify-general" = dontDistribute super."push-notify-general";
|
||||
"pusher-haskell" = dontDistribute super."pusher-haskell";
|
||||
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
|
||||
"pusher-ws" = dontDistribute super."pusher-ws";
|
||||
"pushme" = dontDistribute super."pushme";
|
||||
"putlenses" = dontDistribute super."putlenses";
|
||||
"puzzle-draw" = dontDistribute super."puzzle-draw";
|
||||
@ -7066,6 +7073,7 @@ self: super: {
|
||||
"queuelike" = dontDistribute super."queuelike";
|
||||
"quick-generator" = dontDistribute super."quick-generator";
|
||||
"quick-schema" = dontDistribute super."quick-schema";
|
||||
"quickbooks" = dontDistribute super."quickbooks";
|
||||
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
|
||||
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
|
||||
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
|
||||
@ -7231,6 +7239,7 @@ self: super: {
|
||||
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
|
||||
"reflex-gloss" = dontDistribute super."reflex-gloss";
|
||||
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
|
||||
"reflex-jsx" = dontDistribute super."reflex-jsx";
|
||||
"reflex-orphans" = dontDistribute super."reflex-orphans";
|
||||
"reflex-transformers" = dontDistribute super."reflex-transformers";
|
||||
"reform" = dontDistribute super."reform";
|
||||
@ -7413,6 +7422,7 @@ self: super: {
|
||||
"rosso" = dontDistribute super."rosso";
|
||||
"rot13" = dontDistribute super."rot13";
|
||||
"rotating-log" = dontDistribute super."rotating-log";
|
||||
"roundRobin" = dontDistribute super."roundRobin";
|
||||
"rounding" = dontDistribute super."rounding";
|
||||
"roundtrip" = dontDistribute super."roundtrip";
|
||||
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
|
||||
@ -7633,6 +7643,7 @@ self: super: {
|
||||
"servant-postgresql" = dontDistribute super."servant-postgresql";
|
||||
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
|
||||
"servant-response" = dontDistribute super."servant-response";
|
||||
"servant-router" = dontDistribute super."servant-router";
|
||||
"servant-scotty" = dontDistribute super."servant-scotty";
|
||||
"servant-server" = dontDistribute super."servant-server";
|
||||
"servant-swagger" = dontDistribute super."servant-swagger";
|
||||
@ -8094,6 +8105,7 @@ self: super: {
|
||||
"storablevector" = dontDistribute super."storablevector";
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"store" = dontDistribute super."store";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
@ -8154,6 +8166,7 @@ self: super: {
|
||||
"subnet" = dontDistribute super."subnet";
|
||||
"subtitleParser" = dontDistribute super."subtitleParser";
|
||||
"subtitles" = dontDistribute super."subtitles";
|
||||
"subwordgraph" = dontDistribute super."subwordgraph";
|
||||
"success" = dontDistribute super."success";
|
||||
"suffixarray" = dontDistribute super."suffixarray";
|
||||
"suffixtree" = dontDistribute super."suffixtree";
|
||||
@ -8372,6 +8385,7 @@ self: super: {
|
||||
"test-shouldbe" = dontDistribute super."test-shouldbe";
|
||||
"test-simple" = dontDistribute super."test-simple";
|
||||
"testPkg" = dontDistribute super."testPkg";
|
||||
"testbench" = dontDistribute super."testbench";
|
||||
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
|
||||
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
|
||||
"testloop" = dontDistribute super."testloop";
|
||||
@ -8384,6 +8398,7 @@ self: super: {
|
||||
"text" = doDistribute super."text_1_2_0_4";
|
||||
"text-and-plots" = dontDistribute super."text-and-plots";
|
||||
"text-binary" = doDistribute super."text-binary_0_1_0";
|
||||
"text-conversions" = dontDistribute super."text-conversions";
|
||||
"text-format-simple" = dontDistribute super."text-format-simple";
|
||||
"text-icu-translit" = dontDistribute super."text-icu-translit";
|
||||
"text-json-qq" = dontDistribute super."text-json-qq";
|
||||
@ -8565,6 +8580,7 @@ self: super: {
|
||||
"tracetree" = dontDistribute super."tracetree";
|
||||
"tracker" = dontDistribute super."tracker";
|
||||
"tracy" = dontDistribute super."tracy";
|
||||
"traildb" = dontDistribute super."traildb";
|
||||
"trajectory" = dontDistribute super."trajectory";
|
||||
"transactional-events" = dontDistribute super."transactional-events";
|
||||
"transf" = dontDistribute super."transf";
|
||||
@ -9068,6 +9084,7 @@ self: super: {
|
||||
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
|
||||
"web-css" = dontDistribute super."web-css";
|
||||
"web-encodings" = dontDistribute super."web-encodings";
|
||||
"web-inv-route" = dontDistribute super."web-inv-route";
|
||||
"web-mongrel2" = dontDistribute super."web-mongrel2";
|
||||
"web-page" = dontDistribute super."web-page";
|
||||
"web-plugins" = dontDistribute super."web-plugins";
|
||||
@ -9122,6 +9139,7 @@ self: super: {
|
||||
"whois" = dontDistribute super."whois";
|
||||
"why3" = dontDistribute super."why3";
|
||||
"wigner-symbols" = dontDistribute super."wigner-symbols";
|
||||
"wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
|
||||
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
|
||||
"win-hp-path" = dontDistribute super."win-hp-path";
|
||||
"windowslive" = dontDistribute super."windowslive";
|
||||
@ -9146,6 +9164,7 @@ self: super: {
|
||||
"wolf" = dontDistribute super."wolf";
|
||||
"woot" = dontDistribute super."woot";
|
||||
"word-trie" = dontDistribute super."word-trie";
|
||||
"word-vector" = dontDistribute super."word-vector";
|
||||
"word24" = dontDistribute super."word24";
|
||||
"word8" = doDistribute super."word8_0_1_1";
|
||||
"wordcloud" = dontDistribute super."wordcloud";
|
||||
@ -9269,6 +9288,7 @@ self: super: {
|
||||
"xournal-parser" = dontDistribute super."xournal-parser";
|
||||
"xournal-render" = dontDistribute super."xournal-render";
|
||||
"xournal-types" = dontDistribute super."xournal-types";
|
||||
"xpathdsv" = dontDistribute super."xpathdsv";
|
||||
"xsact" = dontDistribute super."xsact";
|
||||
"xsd" = dontDistribute super."xsd";
|
||||
"xsha1" = dontDistribute super."xsha1";
|
||||
@ -9352,6 +9372,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-ip" = dontDistribute super."yesod-ip";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
|
@ -3541,6 +3541,8 @@ self: super: {
|
||||
"getopt-simple" = dontDistribute super."getopt-simple";
|
||||
"gf" = dontDistribute super."gf";
|
||||
"ggtsTC" = dontDistribute super."ggtsTC";
|
||||
"ghc-boot" = dontDistribute super."ghc-boot";
|
||||
"ghc-boot-th" = dontDistribute super."ghc-boot-th";
|
||||
"ghc-core" = dontDistribute super."ghc-core";
|
||||
"ghc-core-html" = dontDistribute super."ghc-core-html";
|
||||
"ghc-datasize" = dontDistribute super."ghc-datasize";
|
||||
@ -3573,6 +3575,7 @@ self: super: {
|
||||
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
|
||||
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci" = dontDistribute super."ghci";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
"ghci-lib" = dontDistribute super."ghci-lib";
|
||||
@ -3619,6 +3622,7 @@ self: super: {
|
||||
"gipeda" = dontDistribute super."gipeda";
|
||||
"giphy-api" = dontDistribute super."giphy-api";
|
||||
"gist" = dontDistribute super."gist";
|
||||
"git" = dontDistribute super."git";
|
||||
"git-all" = dontDistribute super."git-all";
|
||||
"git-annex" = dontDistribute super."git-annex";
|
||||
"git-checklist" = dontDistribute super."git-checklist";
|
||||
@ -4112,6 +4116,7 @@ self: super: {
|
||||
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
|
||||
"harp" = dontDistribute super."harp";
|
||||
"harpy" = dontDistribute super."harpy";
|
||||
"harvest-api" = dontDistribute super."harvest-api";
|
||||
"has" = dontDistribute super."has";
|
||||
"has-th" = dontDistribute super."has-th";
|
||||
"hascal" = dontDistribute super."hascal";
|
||||
@ -5107,6 +5112,7 @@ self: super: {
|
||||
"instrument-chord" = dontDistribute super."instrument-chord";
|
||||
"int-cast" = dontDistribute super."int-cast";
|
||||
"integer-pure" = dontDistribute super."integer-pure";
|
||||
"integer-simple" = dontDistribute super."integer-simple";
|
||||
"integration" = doDistribute super."integration_0_2_0_1";
|
||||
"intel-aes" = dontDistribute super."intel-aes";
|
||||
"interchangeable" = dontDistribute super."interchangeable";
|
||||
@ -7031,6 +7037,7 @@ self: super: {
|
||||
"push-notify-general" = dontDistribute super."push-notify-general";
|
||||
"pusher-haskell" = dontDistribute super."pusher-haskell";
|
||||
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
|
||||
"pusher-ws" = dontDistribute super."pusher-ws";
|
||||
"pushme" = dontDistribute super."pushme";
|
||||
"putlenses" = dontDistribute super."putlenses";
|
||||
"puzzle-draw" = dontDistribute super."puzzle-draw";
|
||||
@ -7062,6 +7069,7 @@ self: super: {
|
||||
"queuelike" = dontDistribute super."queuelike";
|
||||
"quick-generator" = dontDistribute super."quick-generator";
|
||||
"quick-schema" = dontDistribute super."quick-schema";
|
||||
"quickbooks" = dontDistribute super."quickbooks";
|
||||
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
|
||||
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
|
||||
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
|
||||
@ -7227,6 +7235,7 @@ self: super: {
|
||||
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
|
||||
"reflex-gloss" = dontDistribute super."reflex-gloss";
|
||||
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
|
||||
"reflex-jsx" = dontDistribute super."reflex-jsx";
|
||||
"reflex-orphans" = dontDistribute super."reflex-orphans";
|
||||
"reflex-transformers" = dontDistribute super."reflex-transformers";
|
||||
"reform" = dontDistribute super."reform";
|
||||
@ -7409,6 +7418,7 @@ self: super: {
|
||||
"rosso" = dontDistribute super."rosso";
|
||||
"rot13" = dontDistribute super."rot13";
|
||||
"rotating-log" = dontDistribute super."rotating-log";
|
||||
"roundRobin" = dontDistribute super."roundRobin";
|
||||
"rounding" = dontDistribute super."rounding";
|
||||
"roundtrip" = dontDistribute super."roundtrip";
|
||||
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
|
||||
@ -7629,6 +7639,7 @@ self: super: {
|
||||
"servant-postgresql" = dontDistribute super."servant-postgresql";
|
||||
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
|
||||
"servant-response" = dontDistribute super."servant-response";
|
||||
"servant-router" = dontDistribute super."servant-router";
|
||||
"servant-scotty" = dontDistribute super."servant-scotty";
|
||||
"servant-server" = dontDistribute super."servant-server";
|
||||
"servant-swagger" = dontDistribute super."servant-swagger";
|
||||
@ -8090,6 +8101,7 @@ self: super: {
|
||||
"storablevector" = dontDistribute super."storablevector";
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"store" = dontDistribute super."store";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
@ -8150,6 +8162,7 @@ self: super: {
|
||||
"subnet" = dontDistribute super."subnet";
|
||||
"subtitleParser" = dontDistribute super."subtitleParser";
|
||||
"subtitles" = dontDistribute super."subtitles";
|
||||
"subwordgraph" = dontDistribute super."subwordgraph";
|
||||
"success" = dontDistribute super."success";
|
||||
"suffixarray" = dontDistribute super."suffixarray";
|
||||
"suffixtree" = dontDistribute super."suffixtree";
|
||||
@ -8367,6 +8380,7 @@ self: super: {
|
||||
"test-shouldbe" = dontDistribute super."test-shouldbe";
|
||||
"test-simple" = dontDistribute super."test-simple";
|
||||
"testPkg" = dontDistribute super."testPkg";
|
||||
"testbench" = dontDistribute super."testbench";
|
||||
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
|
||||
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
|
||||
"testloop" = dontDistribute super."testloop";
|
||||
@ -8379,6 +8393,7 @@ self: super: {
|
||||
"text" = doDistribute super."text_1_2_0_4";
|
||||
"text-and-plots" = dontDistribute super."text-and-plots";
|
||||
"text-binary" = doDistribute super."text-binary_0_1_0";
|
||||
"text-conversions" = dontDistribute super."text-conversions";
|
||||
"text-format-simple" = dontDistribute super."text-format-simple";
|
||||
"text-icu-translit" = dontDistribute super."text-icu-translit";
|
||||
"text-json-qq" = dontDistribute super."text-json-qq";
|
||||
@ -8560,6 +8575,7 @@ self: super: {
|
||||
"tracetree" = dontDistribute super."tracetree";
|
||||
"tracker" = dontDistribute super."tracker";
|
||||
"tracy" = dontDistribute super."tracy";
|
||||
"traildb" = dontDistribute super."traildb";
|
||||
"trajectory" = dontDistribute super."trajectory";
|
||||
"transactional-events" = dontDistribute super."transactional-events";
|
||||
"transf" = dontDistribute super."transf";
|
||||
@ -9063,6 +9079,7 @@ self: super: {
|
||||
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
|
||||
"web-css" = dontDistribute super."web-css";
|
||||
"web-encodings" = dontDistribute super."web-encodings";
|
||||
"web-inv-route" = dontDistribute super."web-inv-route";
|
||||
"web-mongrel2" = dontDistribute super."web-mongrel2";
|
||||
"web-page" = dontDistribute super."web-page";
|
||||
"web-plugins" = dontDistribute super."web-plugins";
|
||||
@ -9117,6 +9134,7 @@ self: super: {
|
||||
"whois" = dontDistribute super."whois";
|
||||
"why3" = dontDistribute super."why3";
|
||||
"wigner-symbols" = dontDistribute super."wigner-symbols";
|
||||
"wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
|
||||
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
|
||||
"win-hp-path" = dontDistribute super."win-hp-path";
|
||||
"windowslive" = dontDistribute super."windowslive";
|
||||
@ -9141,6 +9159,7 @@ self: super: {
|
||||
"wolf" = dontDistribute super."wolf";
|
||||
"woot" = dontDistribute super."woot";
|
||||
"word-trie" = dontDistribute super."word-trie";
|
||||
"word-vector" = dontDistribute super."word-vector";
|
||||
"word24" = dontDistribute super."word24";
|
||||
"word8" = doDistribute super."word8_0_1_1";
|
||||
"wordcloud" = dontDistribute super."wordcloud";
|
||||
@ -9264,6 +9283,7 @@ self: super: {
|
||||
"xournal-parser" = dontDistribute super."xournal-parser";
|
||||
"xournal-render" = dontDistribute super."xournal-render";
|
||||
"xournal-types" = dontDistribute super."xournal-types";
|
||||
"xpathdsv" = dontDistribute super."xpathdsv";
|
||||
"xsact" = dontDistribute super."xsact";
|
||||
"xsd" = dontDistribute super."xsd";
|
||||
"xsha1" = dontDistribute super."xsha1";
|
||||
@ -9347,6 +9367,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-ip" = dontDistribute super."yesod-ip";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
|
@ -3540,6 +3540,8 @@ self: super: {
|
||||
"getopt-simple" = dontDistribute super."getopt-simple";
|
||||
"gf" = dontDistribute super."gf";
|
||||
"ggtsTC" = dontDistribute super."ggtsTC";
|
||||
"ghc-boot" = dontDistribute super."ghc-boot";
|
||||
"ghc-boot-th" = dontDistribute super."ghc-boot-th";
|
||||
"ghc-core" = dontDistribute super."ghc-core";
|
||||
"ghc-core-html" = dontDistribute super."ghc-core-html";
|
||||
"ghc-datasize" = dontDistribute super."ghc-datasize";
|
||||
@ -3572,6 +3574,7 @@ self: super: {
|
||||
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
|
||||
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci" = dontDistribute super."ghci";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
"ghci-lib" = dontDistribute super."ghci-lib";
|
||||
@ -3618,6 +3621,7 @@ self: super: {
|
||||
"gipeda" = dontDistribute super."gipeda";
|
||||
"giphy-api" = dontDistribute super."giphy-api";
|
||||
"gist" = dontDistribute super."gist";
|
||||
"git" = dontDistribute super."git";
|
||||
"git-all" = dontDistribute super."git-all";
|
||||
"git-annex" = dontDistribute super."git-annex";
|
||||
"git-checklist" = dontDistribute super."git-checklist";
|
||||
@ -4111,6 +4115,7 @@ self: super: {
|
||||
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
|
||||
"harp" = dontDistribute super."harp";
|
||||
"harpy" = dontDistribute super."harpy";
|
||||
"harvest-api" = dontDistribute super."harvest-api";
|
||||
"has" = dontDistribute super."has";
|
||||
"has-th" = dontDistribute super."has-th";
|
||||
"hascal" = dontDistribute super."hascal";
|
||||
@ -5106,6 +5111,7 @@ self: super: {
|
||||
"instrument-chord" = dontDistribute super."instrument-chord";
|
||||
"int-cast" = dontDistribute super."int-cast";
|
||||
"integer-pure" = dontDistribute super."integer-pure";
|
||||
"integer-simple" = dontDistribute super."integer-simple";
|
||||
"integration" = doDistribute super."integration_0_2_0_1";
|
||||
"intel-aes" = dontDistribute super."intel-aes";
|
||||
"interchangeable" = dontDistribute super."interchangeable";
|
||||
@ -7030,6 +7036,7 @@ self: super: {
|
||||
"push-notify-general" = dontDistribute super."push-notify-general";
|
||||
"pusher-haskell" = dontDistribute super."pusher-haskell";
|
||||
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
|
||||
"pusher-ws" = dontDistribute super."pusher-ws";
|
||||
"pushme" = dontDistribute super."pushme";
|
||||
"putlenses" = dontDistribute super."putlenses";
|
||||
"puzzle-draw" = dontDistribute super."puzzle-draw";
|
||||
@ -7061,6 +7068,7 @@ self: super: {
|
||||
"queuelike" = dontDistribute super."queuelike";
|
||||
"quick-generator" = dontDistribute super."quick-generator";
|
||||
"quick-schema" = dontDistribute super."quick-schema";
|
||||
"quickbooks" = dontDistribute super."quickbooks";
|
||||
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
|
||||
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
|
||||
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
|
||||
@ -7226,6 +7234,7 @@ self: super: {
|
||||
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
|
||||
"reflex-gloss" = dontDistribute super."reflex-gloss";
|
||||
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
|
||||
"reflex-jsx" = dontDistribute super."reflex-jsx";
|
||||
"reflex-orphans" = dontDistribute super."reflex-orphans";
|
||||
"reflex-transformers" = dontDistribute super."reflex-transformers";
|
||||
"reform" = dontDistribute super."reform";
|
||||
@ -7408,6 +7417,7 @@ self: super: {
|
||||
"rosso" = dontDistribute super."rosso";
|
||||
"rot13" = dontDistribute super."rot13";
|
||||
"rotating-log" = dontDistribute super."rotating-log";
|
||||
"roundRobin" = dontDistribute super."roundRobin";
|
||||
"rounding" = dontDistribute super."rounding";
|
||||
"roundtrip" = dontDistribute super."roundtrip";
|
||||
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
|
||||
@ -7628,6 +7638,7 @@ self: super: {
|
||||
"servant-postgresql" = dontDistribute super."servant-postgresql";
|
||||
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
|
||||
"servant-response" = dontDistribute super."servant-response";
|
||||
"servant-router" = dontDistribute super."servant-router";
|
||||
"servant-scotty" = dontDistribute super."servant-scotty";
|
||||
"servant-server" = dontDistribute super."servant-server";
|
||||
"servant-swagger" = dontDistribute super."servant-swagger";
|
||||
@ -8089,6 +8100,7 @@ self: super: {
|
||||
"storablevector" = dontDistribute super."storablevector";
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"store" = dontDistribute super."store";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
@ -8149,6 +8161,7 @@ self: super: {
|
||||
"subnet" = dontDistribute super."subnet";
|
||||
"subtitleParser" = dontDistribute super."subtitleParser";
|
||||
"subtitles" = dontDistribute super."subtitles";
|
||||
"subwordgraph" = dontDistribute super."subwordgraph";
|
||||
"success" = dontDistribute super."success";
|
||||
"suffixarray" = dontDistribute super."suffixarray";
|
||||
"suffixtree" = dontDistribute super."suffixtree";
|
||||
@ -8366,6 +8379,7 @@ self: super: {
|
||||
"test-shouldbe" = dontDistribute super."test-shouldbe";
|
||||
"test-simple" = dontDistribute super."test-simple";
|
||||
"testPkg" = dontDistribute super."testPkg";
|
||||
"testbench" = dontDistribute super."testbench";
|
||||
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
|
||||
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
|
||||
"testloop" = dontDistribute super."testloop";
|
||||
@ -8378,6 +8392,7 @@ self: super: {
|
||||
"text" = doDistribute super."text_1_2_0_4";
|
||||
"text-and-plots" = dontDistribute super."text-and-plots";
|
||||
"text-binary" = doDistribute super."text-binary_0_1_0";
|
||||
"text-conversions" = dontDistribute super."text-conversions";
|
||||
"text-format-simple" = dontDistribute super."text-format-simple";
|
||||
"text-icu-translit" = dontDistribute super."text-icu-translit";
|
||||
"text-json-qq" = dontDistribute super."text-json-qq";
|
||||
@ -8558,6 +8573,7 @@ self: super: {
|
||||
"tracetree" = dontDistribute super."tracetree";
|
||||
"tracker" = dontDistribute super."tracker";
|
||||
"tracy" = dontDistribute super."tracy";
|
||||
"traildb" = dontDistribute super."traildb";
|
||||
"trajectory" = dontDistribute super."trajectory";
|
||||
"transactional-events" = dontDistribute super."transactional-events";
|
||||
"transf" = dontDistribute super."transf";
|
||||
@ -9060,6 +9076,7 @@ self: super: {
|
||||
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
|
||||
"web-css" = dontDistribute super."web-css";
|
||||
"web-encodings" = dontDistribute super."web-encodings";
|
||||
"web-inv-route" = dontDistribute super."web-inv-route";
|
||||
"web-mongrel2" = dontDistribute super."web-mongrel2";
|
||||
"web-page" = dontDistribute super."web-page";
|
||||
"web-plugins" = dontDistribute super."web-plugins";
|
||||
@ -9114,6 +9131,7 @@ self: super: {
|
||||
"whois" = dontDistribute super."whois";
|
||||
"why3" = dontDistribute super."why3";
|
||||
"wigner-symbols" = dontDistribute super."wigner-symbols";
|
||||
"wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
|
||||
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
|
||||
"win-hp-path" = dontDistribute super."win-hp-path";
|
||||
"windowslive" = dontDistribute super."windowslive";
|
||||
@ -9138,6 +9156,7 @@ self: super: {
|
||||
"wolf" = dontDistribute super."wolf";
|
||||
"woot" = dontDistribute super."woot";
|
||||
"word-trie" = dontDistribute super."word-trie";
|
||||
"word-vector" = dontDistribute super."word-vector";
|
||||
"word24" = dontDistribute super."word24";
|
||||
"word8" = doDistribute super."word8_0_1_1";
|
||||
"wordcloud" = dontDistribute super."wordcloud";
|
||||
@ -9261,6 +9280,7 @@ self: super: {
|
||||
"xournal-parser" = dontDistribute super."xournal-parser";
|
||||
"xournal-render" = dontDistribute super."xournal-render";
|
||||
"xournal-types" = dontDistribute super."xournal-types";
|
||||
"xpathdsv" = dontDistribute super."xpathdsv";
|
||||
"xsact" = dontDistribute super."xsact";
|
||||
"xsd" = dontDistribute super."xsd";
|
||||
"xsha1" = dontDistribute super."xsha1";
|
||||
@ -9344,6 +9364,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-ip" = dontDistribute super."yesod-ip";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
|
@ -3540,6 +3540,8 @@ self: super: {
|
||||
"getopt-simple" = dontDistribute super."getopt-simple";
|
||||
"gf" = dontDistribute super."gf";
|
||||
"ggtsTC" = dontDistribute super."ggtsTC";
|
||||
"ghc-boot" = dontDistribute super."ghc-boot";
|
||||
"ghc-boot-th" = dontDistribute super."ghc-boot-th";
|
||||
"ghc-core" = dontDistribute super."ghc-core";
|
||||
"ghc-core-html" = dontDistribute super."ghc-core-html";
|
||||
"ghc-datasize" = dontDistribute super."ghc-datasize";
|
||||
@ -3572,6 +3574,7 @@ self: super: {
|
||||
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
|
||||
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci" = dontDistribute super."ghci";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
"ghci-lib" = dontDistribute super."ghci-lib";
|
||||
@ -3618,6 +3621,7 @@ self: super: {
|
||||
"gipeda" = dontDistribute super."gipeda";
|
||||
"giphy-api" = dontDistribute super."giphy-api";
|
||||
"gist" = dontDistribute super."gist";
|
||||
"git" = dontDistribute super."git";
|
||||
"git-all" = dontDistribute super."git-all";
|
||||
"git-annex" = dontDistribute super."git-annex";
|
||||
"git-checklist" = dontDistribute super."git-checklist";
|
||||
@ -4111,6 +4115,7 @@ self: super: {
|
||||
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
|
||||
"harp" = dontDistribute super."harp";
|
||||
"harpy" = dontDistribute super."harpy";
|
||||
"harvest-api" = dontDistribute super."harvest-api";
|
||||
"has" = dontDistribute super."has";
|
||||
"has-th" = dontDistribute super."has-th";
|
||||
"hascal" = dontDistribute super."hascal";
|
||||
@ -5101,6 +5106,7 @@ self: super: {
|
||||
"instrument-chord" = dontDistribute super."instrument-chord";
|
||||
"int-cast" = dontDistribute super."int-cast";
|
||||
"integer-pure" = dontDistribute super."integer-pure";
|
||||
"integer-simple" = dontDistribute super."integer-simple";
|
||||
"integration" = doDistribute super."integration_0_2_0_1";
|
||||
"intel-aes" = dontDistribute super."intel-aes";
|
||||
"interchangeable" = dontDistribute super."interchangeable";
|
||||
@ -7025,6 +7031,7 @@ self: super: {
|
||||
"push-notify-general" = dontDistribute super."push-notify-general";
|
||||
"pusher-haskell" = dontDistribute super."pusher-haskell";
|
||||
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
|
||||
"pusher-ws" = dontDistribute super."pusher-ws";
|
||||
"pushme" = dontDistribute super."pushme";
|
||||
"putlenses" = dontDistribute super."putlenses";
|
||||
"puzzle-draw" = dontDistribute super."puzzle-draw";
|
||||
@ -7056,6 +7063,7 @@ self: super: {
|
||||
"queuelike" = dontDistribute super."queuelike";
|
||||
"quick-generator" = dontDistribute super."quick-generator";
|
||||
"quick-schema" = dontDistribute super."quick-schema";
|
||||
"quickbooks" = dontDistribute super."quickbooks";
|
||||
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
|
||||
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
|
||||
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
|
||||
@ -7221,6 +7229,7 @@ self: super: {
|
||||
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
|
||||
"reflex-gloss" = dontDistribute super."reflex-gloss";
|
||||
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
|
||||
"reflex-jsx" = dontDistribute super."reflex-jsx";
|
||||
"reflex-orphans" = dontDistribute super."reflex-orphans";
|
||||
"reflex-transformers" = dontDistribute super."reflex-transformers";
|
||||
"reform" = dontDistribute super."reform";
|
||||
@ -7403,6 +7412,7 @@ self: super: {
|
||||
"rosso" = dontDistribute super."rosso";
|
||||
"rot13" = dontDistribute super."rot13";
|
||||
"rotating-log" = dontDistribute super."rotating-log";
|
||||
"roundRobin" = dontDistribute super."roundRobin";
|
||||
"rounding" = dontDistribute super."rounding";
|
||||
"roundtrip" = dontDistribute super."roundtrip";
|
||||
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
|
||||
@ -7623,6 +7633,7 @@ self: super: {
|
||||
"servant-postgresql" = dontDistribute super."servant-postgresql";
|
||||
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
|
||||
"servant-response" = dontDistribute super."servant-response";
|
||||
"servant-router" = dontDistribute super."servant-router";
|
||||
"servant-scotty" = dontDistribute super."servant-scotty";
|
||||
"servant-server" = dontDistribute super."servant-server";
|
||||
"servant-swagger" = dontDistribute super."servant-swagger";
|
||||
@ -8084,6 +8095,7 @@ self: super: {
|
||||
"storablevector" = dontDistribute super."storablevector";
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"store" = dontDistribute super."store";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
@ -8144,6 +8156,7 @@ self: super: {
|
||||
"subnet" = dontDistribute super."subnet";
|
||||
"subtitleParser" = dontDistribute super."subtitleParser";
|
||||
"subtitles" = dontDistribute super."subtitles";
|
||||
"subwordgraph" = dontDistribute super."subwordgraph";
|
||||
"success" = dontDistribute super."success";
|
||||
"suffixarray" = dontDistribute super."suffixarray";
|
||||
"suffixtree" = dontDistribute super."suffixtree";
|
||||
@ -8361,6 +8374,7 @@ self: super: {
|
||||
"test-shouldbe" = dontDistribute super."test-shouldbe";
|
||||
"test-simple" = dontDistribute super."test-simple";
|
||||
"testPkg" = dontDistribute super."testPkg";
|
||||
"testbench" = dontDistribute super."testbench";
|
||||
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
|
||||
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
|
||||
"testloop" = dontDistribute super."testloop";
|
||||
@ -8373,6 +8387,7 @@ self: super: {
|
||||
"text" = doDistribute super."text_1_2_0_4";
|
||||
"text-and-plots" = dontDistribute super."text-and-plots";
|
||||
"text-binary" = doDistribute super."text-binary_0_1_0";
|
||||
"text-conversions" = dontDistribute super."text-conversions";
|
||||
"text-format-simple" = dontDistribute super."text-format-simple";
|
||||
"text-icu-translit" = dontDistribute super."text-icu-translit";
|
||||
"text-json-qq" = dontDistribute super."text-json-qq";
|
||||
@ -8553,6 +8568,7 @@ self: super: {
|
||||
"tracetree" = dontDistribute super."tracetree";
|
||||
"tracker" = dontDistribute super."tracker";
|
||||
"tracy" = dontDistribute super."tracy";
|
||||
"traildb" = dontDistribute super."traildb";
|
||||
"trajectory" = dontDistribute super."trajectory";
|
||||
"transactional-events" = dontDistribute super."transactional-events";
|
||||
"transf" = dontDistribute super."transf";
|
||||
@ -9055,6 +9071,7 @@ self: super: {
|
||||
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
|
||||
"web-css" = dontDistribute super."web-css";
|
||||
"web-encodings" = dontDistribute super."web-encodings";
|
||||
"web-inv-route" = dontDistribute super."web-inv-route";
|
||||
"web-mongrel2" = dontDistribute super."web-mongrel2";
|
||||
"web-page" = dontDistribute super."web-page";
|
||||
"web-plugins" = dontDistribute super."web-plugins";
|
||||
@ -9109,6 +9126,7 @@ self: super: {
|
||||
"whois" = dontDistribute super."whois";
|
||||
"why3" = dontDistribute super."why3";
|
||||
"wigner-symbols" = dontDistribute super."wigner-symbols";
|
||||
"wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
|
||||
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
|
||||
"win-hp-path" = dontDistribute super."win-hp-path";
|
||||
"windowslive" = dontDistribute super."windowslive";
|
||||
@ -9133,6 +9151,7 @@ self: super: {
|
||||
"wolf" = dontDistribute super."wolf";
|
||||
"woot" = dontDistribute super."woot";
|
||||
"word-trie" = dontDistribute super."word-trie";
|
||||
"word-vector" = dontDistribute super."word-vector";
|
||||
"word24" = dontDistribute super."word24";
|
||||
"word8" = doDistribute super."word8_0_1_1";
|
||||
"wordcloud" = dontDistribute super."wordcloud";
|
||||
@ -9256,6 +9275,7 @@ self: super: {
|
||||
"xournal-parser" = dontDistribute super."xournal-parser";
|
||||
"xournal-render" = dontDistribute super."xournal-render";
|
||||
"xournal-types" = dontDistribute super."xournal-types";
|
||||
"xpathdsv" = dontDistribute super."xpathdsv";
|
||||
"xsact" = dontDistribute super."xsact";
|
||||
"xsd" = dontDistribute super."xsd";
|
||||
"xsha1" = dontDistribute super."xsha1";
|
||||
@ -9339,6 +9359,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-ip" = dontDistribute super."yesod-ip";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
|
@ -3538,6 +3538,8 @@ self: super: {
|
||||
"getopt-simple" = dontDistribute super."getopt-simple";
|
||||
"gf" = dontDistribute super."gf";
|
||||
"ggtsTC" = dontDistribute super."ggtsTC";
|
||||
"ghc-boot" = dontDistribute super."ghc-boot";
|
||||
"ghc-boot-th" = dontDistribute super."ghc-boot-th";
|
||||
"ghc-core" = dontDistribute super."ghc-core";
|
||||
"ghc-core-html" = dontDistribute super."ghc-core-html";
|
||||
"ghc-datasize" = dontDistribute super."ghc-datasize";
|
||||
@ -3570,6 +3572,7 @@ self: super: {
|
||||
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
|
||||
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci" = dontDistribute super."ghci";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
"ghci-lib" = dontDistribute super."ghci-lib";
|
||||
@ -3616,6 +3619,7 @@ self: super: {
|
||||
"gipeda" = dontDistribute super."gipeda";
|
||||
"giphy-api" = dontDistribute super."giphy-api";
|
||||
"gist" = dontDistribute super."gist";
|
||||
"git" = dontDistribute super."git";
|
||||
"git-all" = dontDistribute super."git-all";
|
||||
"git-annex" = dontDistribute super."git-annex";
|
||||
"git-checklist" = dontDistribute super."git-checklist";
|
||||
@ -4108,6 +4112,7 @@ self: super: {
|
||||
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
|
||||
"harp" = dontDistribute super."harp";
|
||||
"harpy" = dontDistribute super."harpy";
|
||||
"harvest-api" = dontDistribute super."harvest-api";
|
||||
"has" = dontDistribute super."has";
|
||||
"has-th" = dontDistribute super."has-th";
|
||||
"hascal" = dontDistribute super."hascal";
|
||||
@ -5098,6 +5103,7 @@ self: super: {
|
||||
"instrument-chord" = dontDistribute super."instrument-chord";
|
||||
"int-cast" = dontDistribute super."int-cast";
|
||||
"integer-pure" = dontDistribute super."integer-pure";
|
||||
"integer-simple" = dontDistribute super."integer-simple";
|
||||
"integration" = doDistribute super."integration_0_2_0_1";
|
||||
"intel-aes" = dontDistribute super."intel-aes";
|
||||
"interchangeable" = dontDistribute super."interchangeable";
|
||||
@ -7021,6 +7027,7 @@ self: super: {
|
||||
"push-notify-general" = dontDistribute super."push-notify-general";
|
||||
"pusher-haskell" = dontDistribute super."pusher-haskell";
|
||||
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
|
||||
"pusher-ws" = dontDistribute super."pusher-ws";
|
||||
"pushme" = dontDistribute super."pushme";
|
||||
"putlenses" = dontDistribute super."putlenses";
|
||||
"puzzle-draw" = dontDistribute super."puzzle-draw";
|
||||
@ -7052,6 +7059,7 @@ self: super: {
|
||||
"queuelike" = dontDistribute super."queuelike";
|
||||
"quick-generator" = dontDistribute super."quick-generator";
|
||||
"quick-schema" = dontDistribute super."quick-schema";
|
||||
"quickbooks" = dontDistribute super."quickbooks";
|
||||
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
|
||||
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
|
||||
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
|
||||
@ -7217,6 +7225,7 @@ self: super: {
|
||||
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
|
||||
"reflex-gloss" = dontDistribute super."reflex-gloss";
|
||||
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
|
||||
"reflex-jsx" = dontDistribute super."reflex-jsx";
|
||||
"reflex-orphans" = dontDistribute super."reflex-orphans";
|
||||
"reflex-transformers" = dontDistribute super."reflex-transformers";
|
||||
"reform" = dontDistribute super."reform";
|
||||
@ -7399,6 +7408,7 @@ self: super: {
|
||||
"rosso" = dontDistribute super."rosso";
|
||||
"rot13" = dontDistribute super."rot13";
|
||||
"rotating-log" = dontDistribute super."rotating-log";
|
||||
"roundRobin" = dontDistribute super."roundRobin";
|
||||
"rounding" = dontDistribute super."rounding";
|
||||
"roundtrip" = dontDistribute super."roundtrip";
|
||||
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
|
||||
@ -7619,6 +7629,7 @@ self: super: {
|
||||
"servant-postgresql" = dontDistribute super."servant-postgresql";
|
||||
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
|
||||
"servant-response" = dontDistribute super."servant-response";
|
||||
"servant-router" = dontDistribute super."servant-router";
|
||||
"servant-scotty" = dontDistribute super."servant-scotty";
|
||||
"servant-server" = dontDistribute super."servant-server";
|
||||
"servant-swagger" = dontDistribute super."servant-swagger";
|
||||
@ -8080,6 +8091,7 @@ self: super: {
|
||||
"storablevector" = dontDistribute super."storablevector";
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"store" = dontDistribute super."store";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
@ -8140,6 +8152,7 @@ self: super: {
|
||||
"subnet" = dontDistribute super."subnet";
|
||||
"subtitleParser" = dontDistribute super."subtitleParser";
|
||||
"subtitles" = dontDistribute super."subtitles";
|
||||
"subwordgraph" = dontDistribute super."subwordgraph";
|
||||
"success" = dontDistribute super."success";
|
||||
"suffixarray" = dontDistribute super."suffixarray";
|
||||
"suffixtree" = dontDistribute super."suffixtree";
|
||||
@ -8357,6 +8370,7 @@ self: super: {
|
||||
"test-shouldbe" = dontDistribute super."test-shouldbe";
|
||||
"test-simple" = dontDistribute super."test-simple";
|
||||
"testPkg" = dontDistribute super."testPkg";
|
||||
"testbench" = dontDistribute super."testbench";
|
||||
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
|
||||
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
|
||||
"testloop" = dontDistribute super."testloop";
|
||||
@ -8369,6 +8383,7 @@ self: super: {
|
||||
"text" = doDistribute super."text_1_2_0_4";
|
||||
"text-and-plots" = dontDistribute super."text-and-plots";
|
||||
"text-binary" = doDistribute super."text-binary_0_1_0";
|
||||
"text-conversions" = dontDistribute super."text-conversions";
|
||||
"text-format-simple" = dontDistribute super."text-format-simple";
|
||||
"text-icu-translit" = dontDistribute super."text-icu-translit";
|
||||
"text-json-qq" = dontDistribute super."text-json-qq";
|
||||
@ -8549,6 +8564,7 @@ self: super: {
|
||||
"tracetree" = dontDistribute super."tracetree";
|
||||
"tracker" = dontDistribute super."tracker";
|
||||
"tracy" = dontDistribute super."tracy";
|
||||
"traildb" = dontDistribute super."traildb";
|
||||
"trajectory" = dontDistribute super."trajectory";
|
||||
"transactional-events" = dontDistribute super."transactional-events";
|
||||
"transf" = dontDistribute super."transf";
|
||||
@ -9050,6 +9066,7 @@ self: super: {
|
||||
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
|
||||
"web-css" = dontDistribute super."web-css";
|
||||
"web-encodings" = dontDistribute super."web-encodings";
|
||||
"web-inv-route" = dontDistribute super."web-inv-route";
|
||||
"web-mongrel2" = dontDistribute super."web-mongrel2";
|
||||
"web-page" = dontDistribute super."web-page";
|
||||
"web-plugins" = dontDistribute super."web-plugins";
|
||||
@ -9104,6 +9121,7 @@ self: super: {
|
||||
"whois" = dontDistribute super."whois";
|
||||
"why3" = dontDistribute super."why3";
|
||||
"wigner-symbols" = dontDistribute super."wigner-symbols";
|
||||
"wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
|
||||
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
|
||||
"win-hp-path" = dontDistribute super."win-hp-path";
|
||||
"windowslive" = dontDistribute super."windowslive";
|
||||
@ -9128,6 +9146,7 @@ self: super: {
|
||||
"wolf" = dontDistribute super."wolf";
|
||||
"woot" = dontDistribute super."woot";
|
||||
"word-trie" = dontDistribute super."word-trie";
|
||||
"word-vector" = dontDistribute super."word-vector";
|
||||
"word24" = dontDistribute super."word24";
|
||||
"word8" = doDistribute super."word8_0_1_1";
|
||||
"wordcloud" = dontDistribute super."wordcloud";
|
||||
@ -9251,6 +9270,7 @@ self: super: {
|
||||
"xournal-parser" = dontDistribute super."xournal-parser";
|
||||
"xournal-render" = dontDistribute super."xournal-render";
|
||||
"xournal-types" = dontDistribute super."xournal-types";
|
||||
"xpathdsv" = dontDistribute super."xpathdsv";
|
||||
"xsact" = dontDistribute super."xsact";
|
||||
"xsd" = dontDistribute super."xsd";
|
||||
"xsha1" = dontDistribute super."xsha1";
|
||||
@ -9334,6 +9354,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-ip" = dontDistribute super."yesod-ip";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
|
@ -3537,6 +3537,8 @@ self: super: {
|
||||
"getopt-simple" = dontDistribute super."getopt-simple";
|
||||
"gf" = dontDistribute super."gf";
|
||||
"ggtsTC" = dontDistribute super."ggtsTC";
|
||||
"ghc-boot" = dontDistribute super."ghc-boot";
|
||||
"ghc-boot-th" = dontDistribute super."ghc-boot-th";
|
||||
"ghc-core" = dontDistribute super."ghc-core";
|
||||
"ghc-core-html" = dontDistribute super."ghc-core-html";
|
||||
"ghc-datasize" = dontDistribute super."ghc-datasize";
|
||||
@ -3569,6 +3571,7 @@ self: super: {
|
||||
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
|
||||
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci" = dontDistribute super."ghci";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
"ghci-lib" = dontDistribute super."ghci-lib";
|
||||
@ -3615,6 +3618,7 @@ self: super: {
|
||||
"gipeda" = dontDistribute super."gipeda";
|
||||
"giphy-api" = dontDistribute super."giphy-api";
|
||||
"gist" = dontDistribute super."gist";
|
||||
"git" = dontDistribute super."git";
|
||||
"git-all" = dontDistribute super."git-all";
|
||||
"git-annex" = dontDistribute super."git-annex";
|
||||
"git-checklist" = dontDistribute super."git-checklist";
|
||||
@ -4107,6 +4111,7 @@ self: super: {
|
||||
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
|
||||
"harp" = dontDistribute super."harp";
|
||||
"harpy" = dontDistribute super."harpy";
|
||||
"harvest-api" = dontDistribute super."harvest-api";
|
||||
"has" = dontDistribute super."has";
|
||||
"has-th" = dontDistribute super."has-th";
|
||||
"hascal" = dontDistribute super."hascal";
|
||||
@ -5097,6 +5102,7 @@ self: super: {
|
||||
"instrument-chord" = dontDistribute super."instrument-chord";
|
||||
"int-cast" = dontDistribute super."int-cast";
|
||||
"integer-pure" = dontDistribute super."integer-pure";
|
||||
"integer-simple" = dontDistribute super."integer-simple";
|
||||
"integration" = doDistribute super."integration_0_2_0_1";
|
||||
"intel-aes" = dontDistribute super."intel-aes";
|
||||
"interchangeable" = dontDistribute super."interchangeable";
|
||||
@ -7020,6 +7026,7 @@ self: super: {
|
||||
"push-notify-general" = dontDistribute super."push-notify-general";
|
||||
"pusher-haskell" = dontDistribute super."pusher-haskell";
|
||||
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
|
||||
"pusher-ws" = dontDistribute super."pusher-ws";
|
||||
"pushme" = dontDistribute super."pushme";
|
||||
"putlenses" = dontDistribute super."putlenses";
|
||||
"puzzle-draw" = dontDistribute super."puzzle-draw";
|
||||
@ -7051,6 +7058,7 @@ self: super: {
|
||||
"queuelike" = dontDistribute super."queuelike";
|
||||
"quick-generator" = dontDistribute super."quick-generator";
|
||||
"quick-schema" = dontDistribute super."quick-schema";
|
||||
"quickbooks" = dontDistribute super."quickbooks";
|
||||
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
|
||||
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
|
||||
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
|
||||
@ -7216,6 +7224,7 @@ self: super: {
|
||||
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
|
||||
"reflex-gloss" = dontDistribute super."reflex-gloss";
|
||||
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
|
||||
"reflex-jsx" = dontDistribute super."reflex-jsx";
|
||||
"reflex-orphans" = dontDistribute super."reflex-orphans";
|
||||
"reflex-transformers" = dontDistribute super."reflex-transformers";
|
||||
"reform" = dontDistribute super."reform";
|
||||
@ -7398,6 +7407,7 @@ self: super: {
|
||||
"rosso" = dontDistribute super."rosso";
|
||||
"rot13" = dontDistribute super."rot13";
|
||||
"rotating-log" = dontDistribute super."rotating-log";
|
||||
"roundRobin" = dontDistribute super."roundRobin";
|
||||
"rounding" = dontDistribute super."rounding";
|
||||
"roundtrip" = dontDistribute super."roundtrip";
|
||||
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
|
||||
@ -7618,6 +7628,7 @@ self: super: {
|
||||
"servant-postgresql" = dontDistribute super."servant-postgresql";
|
||||
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
|
||||
"servant-response" = dontDistribute super."servant-response";
|
||||
"servant-router" = dontDistribute super."servant-router";
|
||||
"servant-scotty" = dontDistribute super."servant-scotty";
|
||||
"servant-server" = dontDistribute super."servant-server";
|
||||
"servant-swagger" = dontDistribute super."servant-swagger";
|
||||
@ -8079,6 +8090,7 @@ self: super: {
|
||||
"storablevector" = dontDistribute super."storablevector";
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"store" = dontDistribute super."store";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
@ -8139,6 +8151,7 @@ self: super: {
|
||||
"subnet" = dontDistribute super."subnet";
|
||||
"subtitleParser" = dontDistribute super."subtitleParser";
|
||||
"subtitles" = dontDistribute super."subtitles";
|
||||
"subwordgraph" = dontDistribute super."subwordgraph";
|
||||
"success" = dontDistribute super."success";
|
||||
"suffixarray" = dontDistribute super."suffixarray";
|
||||
"suffixtree" = dontDistribute super."suffixtree";
|
||||
@ -8356,6 +8369,7 @@ self: super: {
|
||||
"test-shouldbe" = dontDistribute super."test-shouldbe";
|
||||
"test-simple" = dontDistribute super."test-simple";
|
||||
"testPkg" = dontDistribute super."testPkg";
|
||||
"testbench" = dontDistribute super."testbench";
|
||||
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
|
||||
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
|
||||
"testloop" = dontDistribute super."testloop";
|
||||
@ -8368,6 +8382,7 @@ self: super: {
|
||||
"text" = doDistribute super."text_1_2_0_4";
|
||||
"text-and-plots" = dontDistribute super."text-and-plots";
|
||||
"text-binary" = doDistribute super."text-binary_0_1_0";
|
||||
"text-conversions" = dontDistribute super."text-conversions";
|
||||
"text-format-simple" = dontDistribute super."text-format-simple";
|
||||
"text-icu-translit" = dontDistribute super."text-icu-translit";
|
||||
"text-json-qq" = dontDistribute super."text-json-qq";
|
||||
@ -8548,6 +8563,7 @@ self: super: {
|
||||
"tracetree" = dontDistribute super."tracetree";
|
||||
"tracker" = dontDistribute super."tracker";
|
||||
"tracy" = dontDistribute super."tracy";
|
||||
"traildb" = dontDistribute super."traildb";
|
||||
"trajectory" = dontDistribute super."trajectory";
|
||||
"transactional-events" = dontDistribute super."transactional-events";
|
||||
"transf" = dontDistribute super."transf";
|
||||
@ -9049,6 +9065,7 @@ self: super: {
|
||||
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
|
||||
"web-css" = dontDistribute super."web-css";
|
||||
"web-encodings" = dontDistribute super."web-encodings";
|
||||
"web-inv-route" = dontDistribute super."web-inv-route";
|
||||
"web-mongrel2" = dontDistribute super."web-mongrel2";
|
||||
"web-page" = dontDistribute super."web-page";
|
||||
"web-plugins" = dontDistribute super."web-plugins";
|
||||
@ -9103,6 +9120,7 @@ self: super: {
|
||||
"whois" = dontDistribute super."whois";
|
||||
"why3" = dontDistribute super."why3";
|
||||
"wigner-symbols" = dontDistribute super."wigner-symbols";
|
||||
"wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
|
||||
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
|
||||
"win-hp-path" = dontDistribute super."win-hp-path";
|
||||
"windowslive" = dontDistribute super."windowslive";
|
||||
@ -9127,6 +9145,7 @@ self: super: {
|
||||
"wolf" = dontDistribute super."wolf";
|
||||
"woot" = dontDistribute super."woot";
|
||||
"word-trie" = dontDistribute super."word-trie";
|
||||
"word-vector" = dontDistribute super."word-vector";
|
||||
"word24" = dontDistribute super."word24";
|
||||
"word8" = doDistribute super."word8_0_1_1";
|
||||
"wordcloud" = dontDistribute super."wordcloud";
|
||||
@ -9250,6 +9269,7 @@ self: super: {
|
||||
"xournal-parser" = dontDistribute super."xournal-parser";
|
||||
"xournal-render" = dontDistribute super."xournal-render";
|
||||
"xournal-types" = dontDistribute super."xournal-types";
|
||||
"xpathdsv" = dontDistribute super."xpathdsv";
|
||||
"xsact" = dontDistribute super."xsact";
|
||||
"xsd" = dontDistribute super."xsd";
|
||||
"xsha1" = dontDistribute super."xsha1";
|
||||
@ -9333,6 +9353,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-ip" = dontDistribute super."yesod-ip";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
|
@ -3311,6 +3311,7 @@ self: super: {
|
||||
"fmark" = dontDistribute super."fmark";
|
||||
"fn" = dontDistribute super."fn";
|
||||
"fn-extra" = dontDistribute super."fn-extra";
|
||||
"focus" = doDistribute super."focus_0_1_4";
|
||||
"fold-debounce" = dontDistribute super."fold-debounce";
|
||||
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
|
||||
"foldl" = doDistribute super."foldl_1_0_9";
|
||||
@ -3515,6 +3516,8 @@ self: super: {
|
||||
"getopt-simple" = dontDistribute super."getopt-simple";
|
||||
"gf" = dontDistribute super."gf";
|
||||
"ggtsTC" = dontDistribute super."ggtsTC";
|
||||
"ghc-boot" = dontDistribute super."ghc-boot";
|
||||
"ghc-boot-th" = dontDistribute super."ghc-boot-th";
|
||||
"ghc-core" = dontDistribute super."ghc-core";
|
||||
"ghc-core-html" = dontDistribute super."ghc-core-html";
|
||||
"ghc-datasize" = dontDistribute super."ghc-datasize";
|
||||
@ -3547,6 +3550,7 @@ self: super: {
|
||||
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
|
||||
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci" = dontDistribute super."ghci";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
"ghci-lib" = dontDistribute super."ghci-lib";
|
||||
@ -3593,6 +3597,7 @@ self: super: {
|
||||
"gipeda" = doDistribute super."gipeda_0_1_0_2";
|
||||
"giphy-api" = dontDistribute super."giphy-api";
|
||||
"gist" = dontDistribute super."gist";
|
||||
"git" = dontDistribute super."git";
|
||||
"git-all" = dontDistribute super."git-all";
|
||||
"git-annex" = dontDistribute super."git-annex";
|
||||
"git-checklist" = dontDistribute super."git-checklist";
|
||||
@ -4082,6 +4087,7 @@ self: super: {
|
||||
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
|
||||
"harp" = dontDistribute super."harp";
|
||||
"harpy" = dontDistribute super."harpy";
|
||||
"harvest-api" = dontDistribute super."harvest-api";
|
||||
"has" = dontDistribute super."has";
|
||||
"has-th" = dontDistribute super."has-th";
|
||||
"hascal" = dontDistribute super."hascal";
|
||||
@ -5063,6 +5069,7 @@ self: super: {
|
||||
"instrument-chord" = dontDistribute super."instrument-chord";
|
||||
"int-cast" = dontDistribute super."int-cast";
|
||||
"integer-pure" = dontDistribute super."integer-pure";
|
||||
"integer-simple" = dontDistribute super."integer-simple";
|
||||
"intel-aes" = dontDistribute super."intel-aes";
|
||||
"interchangeable" = dontDistribute super."interchangeable";
|
||||
"interleavableGen" = dontDistribute super."interleavableGen";
|
||||
@ -6964,6 +6971,7 @@ self: super: {
|
||||
"push-notify-general" = dontDistribute super."push-notify-general";
|
||||
"pusher-haskell" = dontDistribute super."pusher-haskell";
|
||||
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
|
||||
"pusher-ws" = dontDistribute super."pusher-ws";
|
||||
"pushme" = dontDistribute super."pushme";
|
||||
"putlenses" = dontDistribute super."putlenses";
|
||||
"puzzle-draw" = dontDistribute super."puzzle-draw";
|
||||
@ -6995,6 +7003,7 @@ self: super: {
|
||||
"queuelike" = dontDistribute super."queuelike";
|
||||
"quick-generator" = dontDistribute super."quick-generator";
|
||||
"quick-schema" = dontDistribute super."quick-schema";
|
||||
"quickbooks" = dontDistribute super."quickbooks";
|
||||
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
|
||||
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
|
||||
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
|
||||
@ -7158,6 +7167,7 @@ self: super: {
|
||||
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
|
||||
"reflex-gloss" = dontDistribute super."reflex-gloss";
|
||||
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
|
||||
"reflex-jsx" = dontDistribute super."reflex-jsx";
|
||||
"reflex-orphans" = dontDistribute super."reflex-orphans";
|
||||
"reflex-transformers" = dontDistribute super."reflex-transformers";
|
||||
"reform" = dontDistribute super."reform";
|
||||
@ -7340,6 +7350,7 @@ self: super: {
|
||||
"rosso" = dontDistribute super."rosso";
|
||||
"rot13" = dontDistribute super."rot13";
|
||||
"rotating-log" = dontDistribute super."rotating-log";
|
||||
"roundRobin" = dontDistribute super."roundRobin";
|
||||
"rounding" = dontDistribute super."rounding";
|
||||
"roundtrip" = dontDistribute super."roundtrip";
|
||||
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
|
||||
@ -7559,6 +7570,7 @@ self: super: {
|
||||
"servant-postgresql" = dontDistribute super."servant-postgresql";
|
||||
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
|
||||
"servant-response" = dontDistribute super."servant-response";
|
||||
"servant-router" = dontDistribute super."servant-router";
|
||||
"servant-scotty" = dontDistribute super."servant-scotty";
|
||||
"servant-server" = doDistribute super."servant-server_0_2_4";
|
||||
"servant-swagger" = dontDistribute super."servant-swagger";
|
||||
@ -8014,6 +8026,7 @@ self: super: {
|
||||
"storablevector" = dontDistribute super."storablevector";
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"store" = dontDistribute super."store";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
@ -8073,6 +8086,7 @@ self: super: {
|
||||
"subnet" = dontDistribute super."subnet";
|
||||
"subtitleParser" = dontDistribute super."subtitleParser";
|
||||
"subtitles" = dontDistribute super."subtitles";
|
||||
"subwordgraph" = dontDistribute super."subwordgraph";
|
||||
"success" = dontDistribute super."success";
|
||||
"suffixarray" = dontDistribute super."suffixarray";
|
||||
"suffixtree" = dontDistribute super."suffixtree";
|
||||
@ -8286,6 +8300,7 @@ self: super: {
|
||||
"test-shouldbe" = dontDistribute super."test-shouldbe";
|
||||
"test-simple" = dontDistribute super."test-simple";
|
||||
"testPkg" = dontDistribute super."testPkg";
|
||||
"testbench" = dontDistribute super."testbench";
|
||||
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
|
||||
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
|
||||
"testloop" = dontDistribute super."testloop";
|
||||
@ -8298,6 +8313,7 @@ self: super: {
|
||||
"text" = doDistribute super."text_1_2_0_4";
|
||||
"text-and-plots" = dontDistribute super."text-and-plots";
|
||||
"text-binary" = doDistribute super."text-binary_0_1_0";
|
||||
"text-conversions" = dontDistribute super."text-conversions";
|
||||
"text-format-simple" = dontDistribute super."text-format-simple";
|
||||
"text-icu-translit" = dontDistribute super."text-icu-translit";
|
||||
"text-json-qq" = dontDistribute super."text-json-qq";
|
||||
@ -8478,6 +8494,7 @@ self: super: {
|
||||
"tracetree" = dontDistribute super."tracetree";
|
||||
"tracker" = dontDistribute super."tracker";
|
||||
"tracy" = dontDistribute super."tracy";
|
||||
"traildb" = dontDistribute super."traildb";
|
||||
"trajectory" = dontDistribute super."trajectory";
|
||||
"transactional-events" = dontDistribute super."transactional-events";
|
||||
"transf" = dontDistribute super."transf";
|
||||
@ -8976,6 +8993,7 @@ self: super: {
|
||||
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
|
||||
"web-css" = dontDistribute super."web-css";
|
||||
"web-encodings" = dontDistribute super."web-encodings";
|
||||
"web-inv-route" = dontDistribute super."web-inv-route";
|
||||
"web-mongrel2" = dontDistribute super."web-mongrel2";
|
||||
"web-page" = dontDistribute super."web-page";
|
||||
"web-plugins" = dontDistribute super."web-plugins";
|
||||
@ -9030,6 +9048,7 @@ self: super: {
|
||||
"whois" = dontDistribute super."whois";
|
||||
"why3" = dontDistribute super."why3";
|
||||
"wigner-symbols" = dontDistribute super."wigner-symbols";
|
||||
"wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
|
||||
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
|
||||
"win-hp-path" = dontDistribute super."win-hp-path";
|
||||
"windowslive" = dontDistribute super."windowslive";
|
||||
@ -9053,6 +9072,7 @@ self: super: {
|
||||
"wolf" = dontDistribute super."wolf";
|
||||
"woot" = dontDistribute super."woot";
|
||||
"word-trie" = dontDistribute super."word-trie";
|
||||
"word-vector" = dontDistribute super."word-vector";
|
||||
"word24" = dontDistribute super."word24";
|
||||
"wordcloud" = dontDistribute super."wordcloud";
|
||||
"wordexp" = dontDistribute super."wordexp";
|
||||
@ -9170,6 +9190,7 @@ self: super: {
|
||||
"xournal-parser" = dontDistribute super."xournal-parser";
|
||||
"xournal-render" = dontDistribute super."xournal-render";
|
||||
"xournal-types" = dontDistribute super."xournal-types";
|
||||
"xpathdsv" = dontDistribute super."xpathdsv";
|
||||
"xsact" = dontDistribute super."xsact";
|
||||
"xsd" = dontDistribute super."xsd";
|
||||
"xsha1" = dontDistribute super."xsha1";
|
||||
@ -9253,6 +9274,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-ip" = dontDistribute super."yesod-ip";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
|
@ -3310,6 +3310,7 @@ self: super: {
|
||||
"fmark" = dontDistribute super."fmark";
|
||||
"fn" = dontDistribute super."fn";
|
||||
"fn-extra" = dontDistribute super."fn-extra";
|
||||
"focus" = doDistribute super."focus_0_1_4";
|
||||
"fold-debounce" = dontDistribute super."fold-debounce";
|
||||
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
|
||||
"foldl" = doDistribute super."foldl_1_0_9";
|
||||
@ -3514,6 +3515,8 @@ self: super: {
|
||||
"getopt-simple" = dontDistribute super."getopt-simple";
|
||||
"gf" = dontDistribute super."gf";
|
||||
"ggtsTC" = dontDistribute super."ggtsTC";
|
||||
"ghc-boot" = dontDistribute super."ghc-boot";
|
||||
"ghc-boot-th" = dontDistribute super."ghc-boot-th";
|
||||
"ghc-core" = dontDistribute super."ghc-core";
|
||||
"ghc-core-html" = dontDistribute super."ghc-core-html";
|
||||
"ghc-datasize" = dontDistribute super."ghc-datasize";
|
||||
@ -3546,6 +3549,7 @@ self: super: {
|
||||
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
|
||||
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci" = dontDistribute super."ghci";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
"ghci-lib" = dontDistribute super."ghci-lib";
|
||||
@ -3592,6 +3596,7 @@ self: super: {
|
||||
"gipeda" = doDistribute super."gipeda_0_1_0_2";
|
||||
"giphy-api" = dontDistribute super."giphy-api";
|
||||
"gist" = dontDistribute super."gist";
|
||||
"git" = dontDistribute super."git";
|
||||
"git-all" = dontDistribute super."git-all";
|
||||
"git-annex" = dontDistribute super."git-annex";
|
||||
"git-checklist" = dontDistribute super."git-checklist";
|
||||
@ -4081,6 +4086,7 @@ self: super: {
|
||||
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
|
||||
"harp" = dontDistribute super."harp";
|
||||
"harpy" = dontDistribute super."harpy";
|
||||
"harvest-api" = dontDistribute super."harvest-api";
|
||||
"has" = dontDistribute super."has";
|
||||
"has-th" = dontDistribute super."has-th";
|
||||
"hascal" = dontDistribute super."hascal";
|
||||
@ -5062,6 +5068,7 @@ self: super: {
|
||||
"instrument-chord" = dontDistribute super."instrument-chord";
|
||||
"int-cast" = dontDistribute super."int-cast";
|
||||
"integer-pure" = dontDistribute super."integer-pure";
|
||||
"integer-simple" = dontDistribute super."integer-simple";
|
||||
"intel-aes" = dontDistribute super."intel-aes";
|
||||
"interchangeable" = dontDistribute super."interchangeable";
|
||||
"interleavableGen" = dontDistribute super."interleavableGen";
|
||||
@ -6963,6 +6970,7 @@ self: super: {
|
||||
"push-notify-general" = dontDistribute super."push-notify-general";
|
||||
"pusher-haskell" = dontDistribute super."pusher-haskell";
|
||||
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
|
||||
"pusher-ws" = dontDistribute super."pusher-ws";
|
||||
"pushme" = dontDistribute super."pushme";
|
||||
"putlenses" = dontDistribute super."putlenses";
|
||||
"puzzle-draw" = dontDistribute super."puzzle-draw";
|
||||
@ -6994,6 +7002,7 @@ self: super: {
|
||||
"queuelike" = dontDistribute super."queuelike";
|
||||
"quick-generator" = dontDistribute super."quick-generator";
|
||||
"quick-schema" = dontDistribute super."quick-schema";
|
||||
"quickbooks" = dontDistribute super."quickbooks";
|
||||
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
|
||||
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
|
||||
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
|
||||
@ -7157,6 +7166,7 @@ self: super: {
|
||||
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
|
||||
"reflex-gloss" = dontDistribute super."reflex-gloss";
|
||||
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
|
||||
"reflex-jsx" = dontDistribute super."reflex-jsx";
|
||||
"reflex-orphans" = dontDistribute super."reflex-orphans";
|
||||
"reflex-transformers" = dontDistribute super."reflex-transformers";
|
||||
"reform" = dontDistribute super."reform";
|
||||
@ -7339,6 +7349,7 @@ self: super: {
|
||||
"rosso" = dontDistribute super."rosso";
|
||||
"rot13" = dontDistribute super."rot13";
|
||||
"rotating-log" = dontDistribute super."rotating-log";
|
||||
"roundRobin" = dontDistribute super."roundRobin";
|
||||
"rounding" = dontDistribute super."rounding";
|
||||
"roundtrip" = dontDistribute super."roundtrip";
|
||||
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
|
||||
@ -7558,6 +7569,7 @@ self: super: {
|
||||
"servant-postgresql" = dontDistribute super."servant-postgresql";
|
||||
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
|
||||
"servant-response" = dontDistribute super."servant-response";
|
||||
"servant-router" = dontDistribute super."servant-router";
|
||||
"servant-scotty" = dontDistribute super."servant-scotty";
|
||||
"servant-server" = doDistribute super."servant-server_0_2_4";
|
||||
"servant-swagger" = dontDistribute super."servant-swagger";
|
||||
@ -8013,6 +8025,7 @@ self: super: {
|
||||
"storablevector" = dontDistribute super."storablevector";
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"store" = dontDistribute super."store";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
@ -8072,6 +8085,7 @@ self: super: {
|
||||
"subnet" = dontDistribute super."subnet";
|
||||
"subtitleParser" = dontDistribute super."subtitleParser";
|
||||
"subtitles" = dontDistribute super."subtitles";
|
||||
"subwordgraph" = dontDistribute super."subwordgraph";
|
||||
"success" = dontDistribute super."success";
|
||||
"suffixarray" = dontDistribute super."suffixarray";
|
||||
"suffixtree" = dontDistribute super."suffixtree";
|
||||
@ -8285,6 +8299,7 @@ self: super: {
|
||||
"test-shouldbe" = dontDistribute super."test-shouldbe";
|
||||
"test-simple" = dontDistribute super."test-simple";
|
||||
"testPkg" = dontDistribute super."testPkg";
|
||||
"testbench" = dontDistribute super."testbench";
|
||||
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
|
||||
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
|
||||
"testloop" = dontDistribute super."testloop";
|
||||
@ -8297,6 +8312,7 @@ self: super: {
|
||||
"text" = doDistribute super."text_1_2_0_4";
|
||||
"text-and-plots" = dontDistribute super."text-and-plots";
|
||||
"text-binary" = doDistribute super."text-binary_0_1_0";
|
||||
"text-conversions" = dontDistribute super."text-conversions";
|
||||
"text-format-simple" = dontDistribute super."text-format-simple";
|
||||
"text-icu-translit" = dontDistribute super."text-icu-translit";
|
||||
"text-json-qq" = dontDistribute super."text-json-qq";
|
||||
@ -8477,6 +8493,7 @@ self: super: {
|
||||
"tracetree" = dontDistribute super."tracetree";
|
||||
"tracker" = dontDistribute super."tracker";
|
||||
"tracy" = dontDistribute super."tracy";
|
||||
"traildb" = dontDistribute super."traildb";
|
||||
"trajectory" = dontDistribute super."trajectory";
|
||||
"transactional-events" = dontDistribute super."transactional-events";
|
||||
"transf" = dontDistribute super."transf";
|
||||
@ -8842,6 +8859,7 @@ self: super: {
|
||||
"vector-space" = doDistribute super."vector-space_0_9";
|
||||
"vector-space-map" = dontDistribute super."vector-space-map";
|
||||
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
|
||||
"vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
|
||||
"vector-static" = dontDistribute super."vector-static";
|
||||
"vector-strategies" = dontDistribute super."vector-strategies";
|
||||
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
|
||||
@ -8974,6 +8992,7 @@ self: super: {
|
||||
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
|
||||
"web-css" = dontDistribute super."web-css";
|
||||
"web-encodings" = dontDistribute super."web-encodings";
|
||||
"web-inv-route" = dontDistribute super."web-inv-route";
|
||||
"web-mongrel2" = dontDistribute super."web-mongrel2";
|
||||
"web-page" = dontDistribute super."web-page";
|
||||
"web-plugins" = dontDistribute super."web-plugins";
|
||||
@ -9028,6 +9047,7 @@ self: super: {
|
||||
"whois" = dontDistribute super."whois";
|
||||
"why3" = dontDistribute super."why3";
|
||||
"wigner-symbols" = dontDistribute super."wigner-symbols";
|
||||
"wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
|
||||
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
|
||||
"win-hp-path" = dontDistribute super."win-hp-path";
|
||||
"windowslive" = dontDistribute super."windowslive";
|
||||
@ -9051,6 +9071,7 @@ self: super: {
|
||||
"wolf" = dontDistribute super."wolf";
|
||||
"woot" = dontDistribute super."woot";
|
||||
"word-trie" = dontDistribute super."word-trie";
|
||||
"word-vector" = dontDistribute super."word-vector";
|
||||
"word24" = dontDistribute super."word24";
|
||||
"wordcloud" = dontDistribute super."wordcloud";
|
||||
"wordexp" = dontDistribute super."wordexp";
|
||||
@ -9168,6 +9189,7 @@ self: super: {
|
||||
"xournal-parser" = dontDistribute super."xournal-parser";
|
||||
"xournal-render" = dontDistribute super."xournal-render";
|
||||
"xournal-types" = dontDistribute super."xournal-types";
|
||||
"xpathdsv" = dontDistribute super."xpathdsv";
|
||||
"xsact" = dontDistribute super."xsact";
|
||||
"xsd" = dontDistribute super."xsd";
|
||||
"xsha1" = dontDistribute super."xsha1";
|
||||
@ -9251,6 +9273,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-ip" = dontDistribute super."yesod-ip";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
|
@ -3293,6 +3293,7 @@ self: super: {
|
||||
"fmark" = dontDistribute super."fmark";
|
||||
"fn" = dontDistribute super."fn";
|
||||
"fn-extra" = dontDistribute super."fn-extra";
|
||||
"focus" = doDistribute super."focus_0_1_4";
|
||||
"fold-debounce" = dontDistribute super."fold-debounce";
|
||||
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
|
||||
"foldl" = doDistribute super."foldl_1_0_10";
|
||||
@ -3497,6 +3498,8 @@ self: super: {
|
||||
"getopt-simple" = dontDistribute super."getopt-simple";
|
||||
"gf" = dontDistribute super."gf";
|
||||
"ggtsTC" = dontDistribute super."ggtsTC";
|
||||
"ghc-boot" = dontDistribute super."ghc-boot";
|
||||
"ghc-boot-th" = dontDistribute super."ghc-boot-th";
|
||||
"ghc-core" = dontDistribute super."ghc-core";
|
||||
"ghc-core-html" = dontDistribute super."ghc-core-html";
|
||||
"ghc-datasize" = dontDistribute super."ghc-datasize";
|
||||
@ -3529,6 +3532,7 @@ self: super: {
|
||||
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
|
||||
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci" = dontDistribute super."ghci";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
"ghci-lib" = dontDistribute super."ghci-lib";
|
||||
@ -3575,6 +3579,7 @@ self: super: {
|
||||
"gipeda" = doDistribute super."gipeda_0_1_0_2";
|
||||
"giphy-api" = dontDistribute super."giphy-api";
|
||||
"gist" = dontDistribute super."gist";
|
||||
"git" = dontDistribute super."git";
|
||||
"git-all" = dontDistribute super."git-all";
|
||||
"git-annex" = dontDistribute super."git-annex";
|
||||
"git-checklist" = dontDistribute super."git-checklist";
|
||||
@ -4062,6 +4067,7 @@ self: super: {
|
||||
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
|
||||
"harp" = dontDistribute super."harp";
|
||||
"harpy" = dontDistribute super."harpy";
|
||||
"harvest-api" = dontDistribute super."harvest-api";
|
||||
"has" = dontDistribute super."has";
|
||||
"has-th" = dontDistribute super."has-th";
|
||||
"hascal" = dontDistribute super."hascal";
|
||||
@ -5040,6 +5046,7 @@ self: super: {
|
||||
"instrument-chord" = dontDistribute super."instrument-chord";
|
||||
"int-cast" = dontDistribute super."int-cast";
|
||||
"integer-pure" = dontDistribute super."integer-pure";
|
||||
"integer-simple" = dontDistribute super."integer-simple";
|
||||
"intel-aes" = dontDistribute super."intel-aes";
|
||||
"interchangeable" = dontDistribute super."interchangeable";
|
||||
"interleavableGen" = dontDistribute super."interleavableGen";
|
||||
@ -6936,6 +6943,7 @@ self: super: {
|
||||
"push-notify-general" = dontDistribute super."push-notify-general";
|
||||
"pusher-haskell" = dontDistribute super."pusher-haskell";
|
||||
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
|
||||
"pusher-ws" = dontDistribute super."pusher-ws";
|
||||
"pushme" = dontDistribute super."pushme";
|
||||
"putlenses" = dontDistribute super."putlenses";
|
||||
"puzzle-draw" = dontDistribute super."puzzle-draw";
|
||||
@ -6966,6 +6974,7 @@ self: super: {
|
||||
"queuelike" = dontDistribute super."queuelike";
|
||||
"quick-generator" = dontDistribute super."quick-generator";
|
||||
"quick-schema" = dontDistribute super."quick-schema";
|
||||
"quickbooks" = dontDistribute super."quickbooks";
|
||||
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
|
||||
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
|
||||
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
|
||||
@ -7129,6 +7138,7 @@ self: super: {
|
||||
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
|
||||
"reflex-gloss" = dontDistribute super."reflex-gloss";
|
||||
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
|
||||
"reflex-jsx" = dontDistribute super."reflex-jsx";
|
||||
"reflex-orphans" = dontDistribute super."reflex-orphans";
|
||||
"reflex-transformers" = dontDistribute super."reflex-transformers";
|
||||
"reform" = dontDistribute super."reform";
|
||||
@ -7310,6 +7320,7 @@ self: super: {
|
||||
"rosso" = dontDistribute super."rosso";
|
||||
"rot13" = dontDistribute super."rot13";
|
||||
"rotating-log" = dontDistribute super."rotating-log";
|
||||
"roundRobin" = dontDistribute super."roundRobin";
|
||||
"rounding" = dontDistribute super."rounding";
|
||||
"roundtrip" = dontDistribute super."roundtrip";
|
||||
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
|
||||
@ -7528,6 +7539,7 @@ self: super: {
|
||||
"servant-postgresql" = dontDistribute super."servant-postgresql";
|
||||
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
|
||||
"servant-response" = dontDistribute super."servant-response";
|
||||
"servant-router" = dontDistribute super."servant-router";
|
||||
"servant-scotty" = dontDistribute super."servant-scotty";
|
||||
"servant-server" = doDistribute super."servant-server_0_2_4";
|
||||
"servant-swagger" = dontDistribute super."servant-swagger";
|
||||
@ -7977,6 +7989,7 @@ self: super: {
|
||||
"storablevector" = dontDistribute super."storablevector";
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"store" = dontDistribute super."store";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
@ -8036,6 +8049,7 @@ self: super: {
|
||||
"subnet" = dontDistribute super."subnet";
|
||||
"subtitleParser" = dontDistribute super."subtitleParser";
|
||||
"subtitles" = dontDistribute super."subtitles";
|
||||
"subwordgraph" = dontDistribute super."subwordgraph";
|
||||
"success" = dontDistribute super."success";
|
||||
"suffixarray" = dontDistribute super."suffixarray";
|
||||
"suffixtree" = dontDistribute super."suffixtree";
|
||||
@ -8247,6 +8261,7 @@ self: super: {
|
||||
"test-shouldbe" = dontDistribute super."test-shouldbe";
|
||||
"test-simple" = dontDistribute super."test-simple";
|
||||
"testPkg" = dontDistribute super."testPkg";
|
||||
"testbench" = dontDistribute super."testbench";
|
||||
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
|
||||
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
|
||||
"testloop" = dontDistribute super."testloop";
|
||||
@ -8259,6 +8274,7 @@ self: super: {
|
||||
"text" = doDistribute super."text_1_2_0_6";
|
||||
"text-and-plots" = dontDistribute super."text-and-plots";
|
||||
"text-binary" = doDistribute super."text-binary_0_1_0";
|
||||
"text-conversions" = dontDistribute super."text-conversions";
|
||||
"text-format-simple" = dontDistribute super."text-format-simple";
|
||||
"text-icu-translit" = dontDistribute super."text-icu-translit";
|
||||
"text-json-qq" = dontDistribute super."text-json-qq";
|
||||
@ -8437,6 +8453,7 @@ self: super: {
|
||||
"tracetree" = dontDistribute super."tracetree";
|
||||
"tracker" = dontDistribute super."tracker";
|
||||
"tracy" = dontDistribute super."tracy";
|
||||
"traildb" = dontDistribute super."traildb";
|
||||
"trajectory" = dontDistribute super."trajectory";
|
||||
"transactional-events" = dontDistribute super."transactional-events";
|
||||
"transf" = dontDistribute super."transf";
|
||||
@ -8802,6 +8819,7 @@ self: super: {
|
||||
"vector-space" = doDistribute super."vector-space_0_9";
|
||||
"vector-space-map" = dontDistribute super."vector-space-map";
|
||||
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
|
||||
"vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
|
||||
"vector-static" = dontDistribute super."vector-static";
|
||||
"vector-strategies" = dontDistribute super."vector-strategies";
|
||||
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
|
||||
@ -8934,6 +8952,7 @@ self: super: {
|
||||
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
|
||||
"web-css" = dontDistribute super."web-css";
|
||||
"web-encodings" = dontDistribute super."web-encodings";
|
||||
"web-inv-route" = dontDistribute super."web-inv-route";
|
||||
"web-mongrel2" = dontDistribute super."web-mongrel2";
|
||||
"web-page" = dontDistribute super."web-page";
|
||||
"web-plugins" = dontDistribute super."web-plugins";
|
||||
@ -8988,6 +9007,7 @@ self: super: {
|
||||
"whois" = dontDistribute super."whois";
|
||||
"why3" = dontDistribute super."why3";
|
||||
"wigner-symbols" = dontDistribute super."wigner-symbols";
|
||||
"wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
|
||||
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
|
||||
"win-hp-path" = dontDistribute super."win-hp-path";
|
||||
"windowslive" = dontDistribute super."windowslive";
|
||||
@ -9010,6 +9030,7 @@ self: super: {
|
||||
"wolf" = dontDistribute super."wolf";
|
||||
"woot" = dontDistribute super."woot";
|
||||
"word-trie" = dontDistribute super."word-trie";
|
||||
"word-vector" = dontDistribute super."word-vector";
|
||||
"word24" = dontDistribute super."word24";
|
||||
"wordcloud" = dontDistribute super."wordcloud";
|
||||
"wordexp" = dontDistribute super."wordexp";
|
||||
@ -9126,6 +9147,7 @@ self: super: {
|
||||
"xournal-parser" = dontDistribute super."xournal-parser";
|
||||
"xournal-render" = dontDistribute super."xournal-render";
|
||||
"xournal-types" = dontDistribute super."xournal-types";
|
||||
"xpathdsv" = dontDistribute super."xpathdsv";
|
||||
"xsact" = dontDistribute super."xsact";
|
||||
"xsd" = dontDistribute super."xsd";
|
||||
"xsha1" = dontDistribute super."xsha1";
|
||||
@ -9209,6 +9231,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-ip" = dontDistribute super."yesod-ip";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
|
@ -3292,6 +3292,7 @@ self: super: {
|
||||
"fmark" = dontDistribute super."fmark";
|
||||
"fn" = dontDistribute super."fn";
|
||||
"fn-extra" = dontDistribute super."fn-extra";
|
||||
"focus" = doDistribute super."focus_0_1_4";
|
||||
"fold-debounce" = dontDistribute super."fold-debounce";
|
||||
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
|
||||
"foldl" = doDistribute super."foldl_1_0_10";
|
||||
@ -3496,6 +3497,8 @@ self: super: {
|
||||
"getopt-simple" = dontDistribute super."getopt-simple";
|
||||
"gf" = dontDistribute super."gf";
|
||||
"ggtsTC" = dontDistribute super."ggtsTC";
|
||||
"ghc-boot" = dontDistribute super."ghc-boot";
|
||||
"ghc-boot-th" = dontDistribute super."ghc-boot-th";
|
||||
"ghc-core" = dontDistribute super."ghc-core";
|
||||
"ghc-core-html" = dontDistribute super."ghc-core-html";
|
||||
"ghc-datasize" = dontDistribute super."ghc-datasize";
|
||||
@ -3527,6 +3530,7 @@ self: super: {
|
||||
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
|
||||
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci" = dontDistribute super."ghci";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
"ghci-lib" = dontDistribute super."ghci-lib";
|
||||
@ -3573,6 +3577,7 @@ self: super: {
|
||||
"gipeda" = doDistribute super."gipeda_0_1_0_2";
|
||||
"giphy-api" = dontDistribute super."giphy-api";
|
||||
"gist" = dontDistribute super."gist";
|
||||
"git" = dontDistribute super."git";
|
||||
"git-all" = dontDistribute super."git-all";
|
||||
"git-annex" = dontDistribute super."git-annex";
|
||||
"git-checklist" = dontDistribute super."git-checklist";
|
||||
@ -4060,6 +4065,7 @@ self: super: {
|
||||
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
|
||||
"harp" = dontDistribute super."harp";
|
||||
"harpy" = dontDistribute super."harpy";
|
||||
"harvest-api" = dontDistribute super."harvest-api";
|
||||
"has" = dontDistribute super."has";
|
||||
"has-th" = dontDistribute super."has-th";
|
||||
"hascal" = dontDistribute super."hascal";
|
||||
@ -5037,6 +5043,7 @@ self: super: {
|
||||
"instrument-chord" = dontDistribute super."instrument-chord";
|
||||
"int-cast" = dontDistribute super."int-cast";
|
||||
"integer-pure" = dontDistribute super."integer-pure";
|
||||
"integer-simple" = dontDistribute super."integer-simple";
|
||||
"intel-aes" = dontDistribute super."intel-aes";
|
||||
"interchangeable" = dontDistribute super."interchangeable";
|
||||
"interleavableGen" = dontDistribute super."interleavableGen";
|
||||
@ -6931,6 +6938,7 @@ self: super: {
|
||||
"push-notify-general" = dontDistribute super."push-notify-general";
|
||||
"pusher-haskell" = dontDistribute super."pusher-haskell";
|
||||
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
|
||||
"pusher-ws" = dontDistribute super."pusher-ws";
|
||||
"pushme" = dontDistribute super."pushme";
|
||||
"putlenses" = dontDistribute super."putlenses";
|
||||
"puzzle-draw" = dontDistribute super."puzzle-draw";
|
||||
@ -6961,6 +6969,7 @@ self: super: {
|
||||
"queuelike" = dontDistribute super."queuelike";
|
||||
"quick-generator" = dontDistribute super."quick-generator";
|
||||
"quick-schema" = dontDistribute super."quick-schema";
|
||||
"quickbooks" = dontDistribute super."quickbooks";
|
||||
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
|
||||
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
|
||||
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
|
||||
@ -7124,6 +7133,7 @@ self: super: {
|
||||
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
|
||||
"reflex-gloss" = dontDistribute super."reflex-gloss";
|
||||
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
|
||||
"reflex-jsx" = dontDistribute super."reflex-jsx";
|
||||
"reflex-orphans" = dontDistribute super."reflex-orphans";
|
||||
"reflex-transformers" = dontDistribute super."reflex-transformers";
|
||||
"reform" = dontDistribute super."reform";
|
||||
@ -7304,6 +7314,7 @@ self: super: {
|
||||
"rosso" = dontDistribute super."rosso";
|
||||
"rot13" = dontDistribute super."rot13";
|
||||
"rotating-log" = dontDistribute super."rotating-log";
|
||||
"roundRobin" = dontDistribute super."roundRobin";
|
||||
"rounding" = dontDistribute super."rounding";
|
||||
"roundtrip" = dontDistribute super."roundtrip";
|
||||
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
|
||||
@ -7522,6 +7533,7 @@ self: super: {
|
||||
"servant-postgresql" = dontDistribute super."servant-postgresql";
|
||||
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
|
||||
"servant-response" = dontDistribute super."servant-response";
|
||||
"servant-router" = dontDistribute super."servant-router";
|
||||
"servant-scotty" = dontDistribute super."servant-scotty";
|
||||
"servant-server" = doDistribute super."servant-server_0_2_4";
|
||||
"servant-swagger" = dontDistribute super."servant-swagger";
|
||||
@ -7970,6 +7982,7 @@ self: super: {
|
||||
"storablevector" = dontDistribute super."storablevector";
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"store" = dontDistribute super."store";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
@ -8029,6 +8042,7 @@ self: super: {
|
||||
"subnet" = dontDistribute super."subnet";
|
||||
"subtitleParser" = dontDistribute super."subtitleParser";
|
||||
"subtitles" = dontDistribute super."subtitles";
|
||||
"subwordgraph" = dontDistribute super."subwordgraph";
|
||||
"success" = dontDistribute super."success";
|
||||
"suffixarray" = dontDistribute super."suffixarray";
|
||||
"suffixtree" = dontDistribute super."suffixtree";
|
||||
@ -8239,6 +8253,7 @@ self: super: {
|
||||
"test-shouldbe" = dontDistribute super."test-shouldbe";
|
||||
"test-simple" = dontDistribute super."test-simple";
|
||||
"testPkg" = dontDistribute super."testPkg";
|
||||
"testbench" = dontDistribute super."testbench";
|
||||
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
|
||||
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
|
||||
"testloop" = dontDistribute super."testloop";
|
||||
@ -8251,6 +8266,7 @@ self: super: {
|
||||
"text" = doDistribute super."text_1_2_0_6";
|
||||
"text-and-plots" = dontDistribute super."text-and-plots";
|
||||
"text-binary" = doDistribute super."text-binary_0_1_0";
|
||||
"text-conversions" = dontDistribute super."text-conversions";
|
||||
"text-format-simple" = dontDistribute super."text-format-simple";
|
||||
"text-icu-translit" = dontDistribute super."text-icu-translit";
|
||||
"text-json-qq" = dontDistribute super."text-json-qq";
|
||||
@ -8429,6 +8445,7 @@ self: super: {
|
||||
"tracetree" = dontDistribute super."tracetree";
|
||||
"tracker" = dontDistribute super."tracker";
|
||||
"tracy" = dontDistribute super."tracy";
|
||||
"traildb" = dontDistribute super."traildb";
|
||||
"trajectory" = dontDistribute super."trajectory";
|
||||
"transactional-events" = dontDistribute super."transactional-events";
|
||||
"transf" = dontDistribute super."transf";
|
||||
@ -8794,6 +8811,7 @@ self: super: {
|
||||
"vector-space" = doDistribute super."vector-space_0_9";
|
||||
"vector-space-map" = dontDistribute super."vector-space-map";
|
||||
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
|
||||
"vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
|
||||
"vector-static" = dontDistribute super."vector-static";
|
||||
"vector-strategies" = dontDistribute super."vector-strategies";
|
||||
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
|
||||
@ -8926,6 +8944,7 @@ self: super: {
|
||||
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
|
||||
"web-css" = dontDistribute super."web-css";
|
||||
"web-encodings" = dontDistribute super."web-encodings";
|
||||
"web-inv-route" = dontDistribute super."web-inv-route";
|
||||
"web-mongrel2" = dontDistribute super."web-mongrel2";
|
||||
"web-page" = dontDistribute super."web-page";
|
||||
"web-plugins" = dontDistribute super."web-plugins";
|
||||
@ -8980,6 +8999,7 @@ self: super: {
|
||||
"whois" = dontDistribute super."whois";
|
||||
"why3" = dontDistribute super."why3";
|
||||
"wigner-symbols" = dontDistribute super."wigner-symbols";
|
||||
"wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
|
||||
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
|
||||
"win-hp-path" = dontDistribute super."win-hp-path";
|
||||
"windowslive" = dontDistribute super."windowslive";
|
||||
@ -9002,6 +9022,7 @@ self: super: {
|
||||
"wolf" = dontDistribute super."wolf";
|
||||
"woot" = dontDistribute super."woot";
|
||||
"word-trie" = dontDistribute super."word-trie";
|
||||
"word-vector" = dontDistribute super."word-vector";
|
||||
"word24" = dontDistribute super."word24";
|
||||
"wordcloud" = dontDistribute super."wordcloud";
|
||||
"wordexp" = dontDistribute super."wordexp";
|
||||
@ -9118,6 +9139,7 @@ self: super: {
|
||||
"xournal-parser" = dontDistribute super."xournal-parser";
|
||||
"xournal-render" = dontDistribute super."xournal-render";
|
||||
"xournal-types" = dontDistribute super."xournal-types";
|
||||
"xpathdsv" = dontDistribute super."xpathdsv";
|
||||
"xsact" = dontDistribute super."xsact";
|
||||
"xsd" = dontDistribute super."xsd";
|
||||
"xsha1" = dontDistribute super."xsha1";
|
||||
@ -9201,6 +9223,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-ip" = dontDistribute super."yesod-ip";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user