Merge remote-tracking branch 'upstream/master' into staging

This commit is contained in:
Tuomas Tynkkynen 2016-07-05 13:34:36 +03:00
commit 2cf8cb7f46
248 changed files with 15277 additions and 9752 deletions

View file

@ -649,6 +649,56 @@ community to help save time. No tool is preferred at the moment.
## FAQ
### How can I install a working Python environment?
As explained in the user's guide installing individual Python packages
imperatively with `nix-env -i` or declaratively in `environment.systemPackages`
is not supported. However, it is possible to install a Python environment with packages (`python.buildEnv`).
In the following examples we create an environment with Python 3.5, `numpy` and `ipython`.
As you might imagine there is one limitation here, and that's you can install
only one environment at a time. You will notice the complaints about collisions
when you try to install a second environment.
#### Environment defined in separate `.nix` file
Create a file, e.g. `build.nix`, with the following expression
```nix
with import <nixpkgs> {};
with python35Packages;
python.withPackages (ps: with ps; [ numpy ipython ])
```
and install it in your profile with
```
nix-env -if build.nix
```
Now you can use the Python interpreter, as well as the extra packages that you added to the environment.
#### Environment defined in `~/.nixpkgs/config.nix`
If you prefer to, you could also add the environment as a package override to the Nixpkgs set.
```
packageOverrides = pkgs: with pkgs; with python35Packages; {
myEnv = python.withPackages (ps: with ps; [ numpy ipython ]);
};
```
and install it in your profile with
```
nix-env -iA nixos.blogEnv
```
Note that I'm using the attribute path here.
#### Environment defined in `/etc/nixos/configuration.nix`
For the sake of completeness, here's another example how to install the environment system-wide.
```nix
environment.systemPackages = with pkgs; [
(python35Packages.python.withPackages (ps: callPackage ../packages/common-python-packages.nix { pythonPackages = ps; }))
];
```
### How to solve circular dependencies?
Consider the packages `A` and `B` that depend on each other. When packaging `B`,

View file

@ -255,6 +255,7 @@
mornfall = "Petr Ročkai <me@mornfall.net>";
MostAwesomeDude = "Corbin Simpson <cds@corbinsimpson.com>";
MP2E = "Cray Elliott <MP2E@archlinux.us>";
mpscholten = "Marc Scholten <marc@mpscholten.de>";
msackman = "Matthew Sackman <matthew@wellquite.org>";
mschristiansen = "Mikkel Christiansen <mikkel@rheosystems.com>";
msteen = "Matthijs Steen <emailmatthijs@gmail.com>";
@ -313,6 +314,7 @@
qknight = "Joachim Schiele <js@lastlog.de>";
ragge = "Ragnar Dahlen <r.dahlen@gmail.com>";
ralith = "Benjamin Saunders <ben.e.saunders@gmail.com>";
ramkromberg = "Ram Kromberg <ramkromberg@mail.com>";
rardiol = "Ricardo Ardissone <ricardo.ardissone@gmail.com>";
rasendubi = "Alexey Shmalko <rasen.dubi@gmail.com>";
raskin = "Michael Raskin <7c6f434c@mail.ru>";
@ -358,6 +360,7 @@
skrzyp = "Jakub Skrzypnik <jot.skrzyp@gmail.com>";
sleexyz = "Sean Lee <freshdried@gmail.com>";
smironov = "Sergey Mironov <ierton@gmail.com>";
solson = "Scott Olson <scott@solson.me>";
spacefrogg = "Michael Raitza <spacefrogg-nixos@meterriblecrew.net>";
spencerjanssen = "Spencer Janssen <spencerjanssen@gmail.com>";
spinus = "Tomasz Czyż <tomasz.czyz@gmail.com>";

View file

@ -22,7 +22,7 @@
(with empty password).</para></listitem>
<listitem><para>If you downloaded the graphical ISO image, you can
run <command>start display-manager</command> to start KDE. If you
run <command>systemctl start display-manager</command> to start KDE. If you
want to continue on the terminal, you can use
<command>loadkeys</command> to switch to your preferred keyboard layout.
(We even provide neo2 via <command>loadkeys de neo</command>!)</para></listitem>

View file

@ -103,7 +103,7 @@ foreach my $g (@{$spec->{groups}}) {
if (defined $existing) {
$g->{gid} = $existing->{gid} if !defined $g->{gid};
if ($g->{gid} != $existing->{gid}) {
warn "warning: not applying GID change of group $name\n";
warn "warning: not applying GID change of group $name ($existing->{gid} -> $g->{gid})\n";
$g->{gid} = $existing->{gid};
}
$g->{password} = $existing->{password}; # do we want this?
@ -163,7 +163,7 @@ foreach my $u (@{$spec->{users}}) {
if (defined $existing) {
$u->{uid} = $existing->{uid} if !defined $u->{uid};
if ($u->{uid} != $existing->{uid}) {
warn "warning: not applying UID change of user $name\n";
warn "warning: not applying UID change of user $name ($existing->{uid} -> $u->{uid})\n";
$u->{uid} = $existing->{uid};
}
} else {

View file

@ -19,18 +19,37 @@ in
"it cannot be cross compiled";
};
# Needed by RPi firmware
nixpkgs.config.allowUnfree = true;
boot.loader.grub.enable = false;
boot.loader.generic-extlinux-compatible.enable = true;
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.kernelParams = ["console=ttyS0,115200n8" "console=ttymxc0,115200n8" "console=ttyAMA0,115200n8" "console=tty0"];
boot.kernelParams = ["console=ttyS0,115200n8" "console=ttymxc0,115200n8" "console=ttyAMA0,115200n8" "console=ttyO0,115200n8" "console=tty0"];
boot.consoleLogLevel = 7;
# FIXME: this probably should be in installation-device.nix
users.extraUsers.root.initialHashedPassword = "";
sdImage = {
populateBootCommands = ''
populateBootCommands = let
configTxt = pkgs.writeText "config.txt" ''
[pi2]
kernel=u-boot-rpi2.bin
[pi3]
kernel=u-boot-rpi3.bin
enable_uart=1
'';
in ''
for f in bootcode.bin fixup.dat start.elf; do
cp ${pkgs.raspberrypifw}/share/raspberrypi/boot/$f boot/
done
cp ${pkgs.ubootRaspberryPi2}/u-boot.bin boot/u-boot-rpi2.bin
cp ${pkgs.ubootRaspberryPi3}/u-boot.bin boot/u-boot-rpi3.bin
cp ${configTxt} boot/config.txt
${extlinux-conf-builder} -t 3 -c ${config.system.build.toplevel} -d ./boot
'';
'';
};
}

View file

@ -26,6 +26,7 @@ in
boot.loader.generic-extlinux-compatible.enable = true;
boot.kernelPackages = pkgs.linuxPackages_rpi;
boot.consoleLogLevel = 7;
# FIXME: this probably should be in installation-device.nix
users.extraUsers.root.initialHashedPassword = "";

View file

@ -370,7 +370,7 @@
quassel = 89;
amule = 90;
minidlna = 91;
#elasticsearch = 92; # unused
elasticsearch = 92;
#tcpcryptd = 93; # unused
connman = 94;
firebird = 95;

View file

@ -76,6 +76,7 @@
./programs/screen.nix
./programs/shadow.nix
./programs/shell.nix
./programs/spacefm.nix
./programs/ssh.nix
./programs/ssmtp.nix
./programs/tmux.nix
@ -164,6 +165,7 @@
./services/desktops/profile-sync-daemon.nix
./services/desktops/telepathy.nix
./services/development/hoogle.nix
./services/editors/emacs.nix
./services/games/factorio.nix
./services/games/ghost-one.nix
./services/games/minecraft-server.nix

View file

@ -42,7 +42,7 @@ with lib;
The "root" account has an empty password. ${
optionalString config.services.xserver.enable
"Type `start display-manager' to\nstart the graphical user interface."}
"Type `systemctl start display-manager' to\nstart the graphical user interface."}
'';
# Allow sshd to be started manually through "start sshd".

View file

@ -0,0 +1,55 @@
# Global configuration for spacefm.
{ config, lib, pkgs, ... }:
with lib;
let cfg = config.programs.spacefm;
in
{
###### interface
options = {
programs.spacefm = {
enable = mkOption {
type = types.bool;
default = false;
description = ''
Whether to install SpaceFM and create <filename>/etc/spacefm/spacefm.conf<filename>.
'';
};
settings = mkOption {
type = types.attrs;
default = {
tmp_dir = "/tmp";
terminal_su = "${pkgs.sudo}/bin/sudo";
graphical_su = "${pkgs.gksu}/bin/gksu";
};
example = literalExample ''{
tmp_dir = "/tmp";
terminal_su = "''${pkgs.sudo}/bin/sudo";
graphical_su = "''${pkgs.gksu}/bin/gksu";
}'';
description = ''
The system-wide spacefm configuration.
Parameters to be written to <filename>/etc/spacefm/spacefm.conf</filename>.
Refer to the <link xlink:href="https://ignorantguru.github.io/spacefm/spacefm-manual-en.html#programfiles-etc">relevant entry</link> in the SpaceFM manual.
'';
};
};
};
###### implementation
config = mkIf cfg.enable {
environment.systemPackages = [ pkgs.spaceFM ];
environment.etc."spacefm/spacefm.conf".text =
concatStrings (mapAttrsToList (n: v: "${n}=${toString v}\n") cfg.settings);
};
}

View file

@ -0,0 +1,86 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.emacs;
editorScript = pkgs.writeScriptBin "emacseditor" ''
#!${pkgs.stdenv.shell}
if [ -z "$1" ]; then
exec ${cfg.package}/bin/emacsclient --create-frame --alternate-editor ${cfg.package}/bin/emacs
else
exec ${cfg.package}/bin/emacsclient --alternate-editor ${cfg.package}/bin/emacs "$@"
fi
'';
in {
options.services.emacs = {
enable = mkOption {
type = types.bool;
default = false;
example = true;
description = ''
Whether to enable a user service for the Emacs daemon. Use <literal>emacsclient</literal> to connect to the
daemon. If <literal>true</literal>, <varname>services.emacs.install</varname> is
considered <literal>true</literal>, whatever its value.
'';
};
install = mkOption {
type = types.bool;
default = false;
example = true;
description = ''
Whether to install a user service for the Emacs daemon. Once
the service is started, use emacsclient to connect to the
daemon.
The service must be manually started for each user with
"systemctl --user start emacs" or globally through
<varname>services.emacs.enable</varname>.
'';
};
package = mkOption {
type = types.package;
default = pkgs.emacs;
defaultText = "pkgs.emacs";
description = ''
emacs derivation to use.
'';
};
defaultEditor = mkOption {
type = types.bool;
default = false;
example = true;
description = ''
When enabled, configures emacsclient to be the default editor
using the EDITOR environment variable.
'';
};
};
config = mkIf (cfg.enable || cfg.install) {
systemd.user.services.emacs = {
description = "Emacs: the extensible, self-documenting text editor";
serviceConfig = {
Type = "forking";
ExecStart = "${pkgs.bash}/bin/bash -c 'source ${config.system.build.setEnvironment}; exec ${cfg.package}/bin/emacs --daemon'";
ExecStop = "${cfg.package}/bin/emacsclient --eval (kill-emacs)";
Restart = "always";
};
} // optionalAttrs cfg.enable { wantedBy = [ "default.target" ]; };
environment.systemPackages = [ cfg.package editorScript ];
environment.variables = if cfg.defaultEditor then {
EDITOR = mkOverride 900 "${editorScript}/bin/emacseditor";
} else {};
};
}

View file

@ -54,6 +54,9 @@ in
config = mkIf cfg.enable {
powerManagement.scsiLinkPolicy = null;
powerManagement.cpuFreqGovernor = null;
systemd.services = {
tlp = {
description = "TLP system startup/shutdown";
@ -61,6 +64,7 @@ in
after = [ "multi-user.target" ];
wantedBy = [ "multi-user.target" ];
before = [ "shutdown.target" ];
restartTriggers = [ confFile ];
serviceConfig = {
Type = "oneshot";

View file

@ -157,11 +157,14 @@ in {
environment.systemPackages = [ cfg.package ];
users.extraUsers = singleton {
name = "elasticsearch";
uid = config.ids.uids.elasticsearch;
description = "Elasticsearch daemon user";
home = cfg.dataDir;
users = {
groups.elasticsearch.gid = config.ids.gids.elasticsearch;
users.elasticsearch = {
uid = config.ids.uids.elasticsearch;
description = "Elasticsearch daemon user";
home = cfg.dataDir;
group = "elasticsearch";
};
};
};
}

View file

@ -12,7 +12,9 @@ let
httpdConf = mainCfg.configFile;
php = pkgs.php.override { apacheHttpd = httpd.dev; /* otherwise it only gets .out */ };
php = mainCfg.phpPackage.override { apacheHttpd = httpd.dev; /* otherwise it only gets .out */ };
phpMajorVersion = head (splitString "." php.version);
getPort = cfg: if cfg.port != 0 then cfg.port else if cfg.enableSSL then 443 else 80;
@ -338,7 +340,7 @@ let
concatMap (svc: svc.extraModulesPre) allSubservices
++ map (name: {inherit name; path = "${httpd}/modules/mod_${name}.so";}) apacheModules
++ optional mainCfg.enableMellon { name = "auth_mellon"; path = "${pkgs.apacheHttpdPackages.mod_auth_mellon}/modules/mod_auth_mellon.so"; }
++ optional enablePHP { name = "php5"; path = "${php}/modules/libphp5.so"; }
++ optional enablePHP { name = "php${phpMajorVersion}"; path = "${php}/modules/libphp${phpMajorVersion}.so"; }
++ concatMap (svc: svc.extraModules) allSubservices
++ extraForeignModules;
in concatMapStrings load allModules
@ -554,6 +556,15 @@ in
description = "Whether to enable the PHP module.";
};
phpPackage = mkOption {
type = types.package;
default = pkgs.php;
defaultText = "pkgs.php";
description = ''
Overridable attribute of the PHP package to use.
'';
};
phpOptions = mkOption {
type = types.lines;
default = "";

View file

@ -261,7 +261,7 @@ while (my ($unit, $state) = each %{$activePrev}) {
sub pathToUnitName {
my ($path) = @_;
open my $cmd, "-|", "systemd-escape", "--suffix=mount", "-p", $path
open my $cmd, "-|", "@systemd@/bin/systemd-escape", "--suffix=mount", "-p", $path
or die "Unable to escape $path!\n";
my $escaped = join "", <$cmd>;
chomp $escaped;

View file

@ -794,6 +794,8 @@ in
systemd.services.systemd-remount-fs.restartIfChanged = false;
systemd.services.systemd-update-utmp.restartIfChanged = false;
systemd.services.systemd-user-sessions.restartIfChanged = false; # Restart kills all active sessions.
systemd.services.systemd-logind.restartTriggers = [ config.environment.etc."systemd/logind.conf".source ];
systemd.services.systemd-logind.stopIfChanged = false;
systemd.targets.local-fs.unitConfig.X-StopOnReconfiguration = true;
systemd.targets.remote-fs.unitConfig.X-StopOnReconfiguration = true;
systemd.services.systemd-binfmt.wants = [ "proc-sys-fs-binfmt_misc.automount" ];

View file

@ -135,7 +135,7 @@ in {
''; # */
serviceConfig = {
ExecStart = ''@${pkgs.libvirt}/sbin/libvirtd libvirtd --config "${configFile}" --daemon ${concatStringsSep " " cfg.extraOptions}'';
ExecStart = ''@${pkgs.libvirt}/sbin/libvirtd libvirtd --config "${configFile}" ${concatStringsSep " " cfg.extraOptions}'';
Type = "notify";
KillMode = "process"; # when stopping, leave the VMs alone
Restart = "on-failure";

View file

@ -0,0 +1,45 @@
import ./make-test.nix ({ pkgs, ...} : {
name = "emacs-daemon";
meta = with pkgs.stdenv.lib.maintainers; {
maintainers = [ DamienCassou ];
};
enableOCR = true;
machine =
{ config, pkgs, ... }:
{ imports = [ ./common/x11.nix ];
services.emacs = {
enable = true;
defaultEditor = true;
};
# Important to get the systemd service running for root
environment.variables.XDG_RUNTIME_DIR = "/run/user/0";
environment.variables.TEST_SYSTEM_VARIABLE = "system variable";
};
testScript =
''
$machine->waitForUnit("multi-user.target");
# checks that the EDITOR environment variable is set
$machine->succeed("test \$(basename \"\$EDITOR\") = emacseditor");
# waits for the emacs service to be ready
$machine->waitUntilSucceeds("systemctl --user status emacs.service | grep 'Active: active'");
# connects to the daemon
$machine->succeed("emacsclient --create-frame \$EDITOR &");
# checks that Emacs shows the edited filename
$machine->waitForText("emacseditor");
# makes sure environment variables are accessible from Emacs
$machine->succeed("emacsclient --eval '(getenv \"TEST_SYSTEM_VARIABLE\")'") =~ /system variable/ or die;
$machine->screenshot("emacsclient");
'';
})

View file

@ -312,7 +312,7 @@ rec {
};
eclipse_sdk_451 = eclipse-sdk-451; # backward compatibility, added 2016-01-30
eclipse-platform = eclipse-platform-452;
eclipse-platform = eclipse-platform-46;
eclipse-platform-45 = buildEclipse {
name = "eclipse-platform-4.5";
@ -359,6 +359,21 @@ rec {
};
};
eclipse-platform-46 = buildEclipse {
name = "eclipse-platform-4.6";
description = "Eclipse platform";
sources = {
"x86_64-linux" = fetchurl {
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops4/R-4.6-201606061100/eclipse-SDK-4.6-linux-gtk-x86_64.tar.gz;
sha256 = "02lfa0f4j53q4ks3nal4jxnm1vc6xck2k9zng58izfh49v73jyjd";
};
"i686-linux" = fetchurl {
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops4/R-4.6-201606061100/eclipse-SDK-4.6-linux-gtk.tar.gz;
sha256 = "053hsy87jmr9phn934a4qny959d6inxjx8nlcmxa2165ra8d7qfr";
};
};
};
eclipseWithPlugins = { eclipse, plugins ? [], jvmArgs ? [] }:
let
# Gather up the desired plugins.

View file

@ -1,13 +1,17 @@
{ stdenv, fetchurl, spidermonkey_24, unzip, curl, pcre, readline, openssl }:
{ stdenv, fetchurl, spidermonkey_24, unzip, curl, pcre, readline, openssl, perl, html-tidy }:
stdenv.mkDerivation rec {
name = "edbrowse-${version}";
version = "3.5.4.1";
version = "3.6.1";
nativeBuildInputs = [ unzip ];
buildInputs = [ curl pcre readline openssl spidermonkey_24 ];
buildInputs = [ curl pcre readline openssl spidermonkey_24 perl html-tidy ];
patchPhase = ''
substituteInPlace src/ebjs.c --replace \"edbrowse-js\" \"$out/bin/edbrowse-js\"
for i in ./tools/*.pl
do
substituteInPlace $i --replace "/usr/bin/perl" "${perl}/bin/perl"
done
'';
NIX_CFLAGS_COMPILE = "-I${spidermonkey_24.dev}/include/mozjs-24";
@ -15,9 +19,9 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "http://edbrowse.org/${name}.zip";
sha256 = "0fpzaalwvgwbns7yxq4a4i6hpdljmcjfyvx19r1dlb3vdfw0vx5l";
sha256 = "1grkn09r31nmvcnm76jkd8aclmd9n5141mpqvb86wndp9pa7gz7q";
};
meta = {
meta = with stdenv.lib; {
description = "Command Line Editor Browser";
longDescription = ''
Edbrowse is a combination editor, browser, and mail client that is 100% text based.
@ -26,8 +30,8 @@ stdenv.mkDerivation rec {
A batch job, or cron job, can access web pages on the internet, submit forms, and send email, with no human intervention whatsoever.
edbrowse can also tap into databases through odbc. It was primarily written by Karl Dahlke.
'';
license = stdenv.lib.licenses.gpl1Plus;
license = licenses.gpl1Plus;
homepage = http://edbrowse.org/;
maintainers = [ stdenv.lib.maintainers.schmitthenner ];
maintainers = [ maintainers.schmitthenner maintainers.vrthra ];
};
}

View file

@ -0,0 +1,39 @@
{ stdenv, fetchgit, unzip, pkgconfig, ncurses, libX11, libXft, cwebbin }:
stdenv.mkDerivation rec {
name = "edit-nightly-${version}";
version = "20160425";
src = fetchgit {
url = git://c9x.me/ed.git;
rev = "323d49b68c5e804ed3b8cada0e2274f1589b3484";
sha256 = "0wv8i3ii7cd9bqhjpahwp2g5fcmyk365nc7ncmvl79cxbz3f7y8v";
};
buildInputs = [
unzip
pkgconfig
ncurses
libX11
libXft
cwebbin
];
buildPhase = ''
ctangle *.w
make
'';
installPhase = ''
mkdir -p $out/bin/
cp obj/edit $out/bin/edit
'';
meta = with stdenv.lib; {
description = "A relaxing mix of Vi and ACME";
homepage = http://c9x.me/edit;
license = licenses.publicDomain;
maintainers = [ maintainers.vrthra ];
};
}

File diff suppressed because it is too large Load diff

View file

@ -36,10 +36,6 @@ self:
});
overrides = {
ac-php = super.ac-php.override {
inherit (self.melpaPackages) popup;
};
# upstream issue: mismatched filename
ack-menu = markBroken super.ack-menu;

View file

@ -12,10 +12,10 @@ with stdenv.lib;
stdenv.mkDerivation rec {
name = "nano-${version}";
version = "2.5.3";
version = "2.6.1";
src = fetchurl {
url = "mirror://gnu/nano/${name}.tar.gz";
sha256 = "1vhjrcydcfxqq1719vcsvqqnbjbq2523m00dhzag5vwzkc961c5j";
url = "https://nano-editor.org/dist/v2.6/${name}.tar.gz";
sha256 = "56f2ba1c532647bee36abd5f87a714400af0be084cf857a65bc8f41a0dc28fe5";
};
nativeBuildInputs = [ texinfo ] ++ optional enableNls gettext;
buildInputs = [ ncurses ];

View file

@ -0,0 +1,26 @@
{ stdenv, fetchurl, libX11, libXt } :
stdenv.mkDerivation rec {
version = "0.13.42";
name = "wily-${version}";
src = fetchurl {
url = "mirror://sourceforge/wily/${name}.tar.gz";
sha256 = "1jy4czk39sh365b0mjpj4d5wmymj98x163vmwzyx3j183jqrhm2z";
};
buildInputs = [ libX11 libXt ];
configureFlags = [ "--prefix=$(out)" ];
preInstall = ''
mkdir -p $out/bin
'';
meta = with stdenv.lib; {
description = "An emulation of ACME";
homepage = http://wily.sourceforge.net;
license = licenses.artistic1;
maintainers = [ maintainers.vrthra ];
};
}

View file

@ -0,0 +1,39 @@
{ stdenv, fetchurl, fetchpatch, pkgconfig, SDL, SDL_image, libjpeg, libpng, libtiff }:
stdenv.mkDerivation rec {
name = "zgv-${version}";
version = "5.9";
src = fetchurl {
url = "http://www.svgalib.org/rus/zgv/${name}.tar.gz";
sha256 = "1fk4i9x0cpnpn3llam0zy2pkmhlr2hy3iaxhxg07v9sizd4dircj";
};
buildInputs = [ SDL SDL_image pkgconfig libjpeg libpng libtiff ];
makeFlags = [
"BACKEND=SDL"
];
patches = [
(fetchpatch {
url = https://foss.aueb.gr/mirrors/linux/gentoo/media-gfx/zgv/files/zgv-5.9-libpng15.patch;
sha256 = "1blw9n04c28bnwcmcn64si4f5zpg42s8yn345js88fyzi9zm19xw";
})
./switch.patch
];
patchFlags = "-p0";
installPhase = ''
mkdir -p $out/bin
cp src/zgv $out/bin
'';
meta = with stdenv.lib; {
homepage = http://www.svgalib.org/rus/zgv/;
description = "Picture viewer with a thumbnail-based selector";
license = licenses.gpl2;
maintainers = [ maintainers.vrthra ];
platforms = platforms.linux;
};
}

View file

@ -0,0 +1,14 @@
GCC complains
diff -ur src/zgv_io.c src/zgv_io.c
--- src/zgv_io.c 2005-01-20 15:07:46.000000000 -0800
+++ src/zgv_io.c 2016-06-29 10:19:40.169897611 -0700
@@ -645,7 +645,7 @@
case SDLK_INSERT: return(RK_INSERT);
case SDLK_DELETE: return(RK_DELETE);
case SDLK_RETURN: return(RK_ENTER);
- default:
+ default: ;
/* stop complaints */
}

View file

@ -1,13 +1,13 @@
{ stdenv, pythonPackages, fetchurl }:
pythonPackages.buildPythonApplication rec {
name = "bleachbit-${version}";
version = "1.8";
version = "1.12";
namePrefix = "";
src = fetchurl {
url = "mirror://sourceforge/bleachbit/bleachbit-1.8.tar.bz2";
sha256 = "dbf50fcbf24b8b3dd1c4325cd62352628d089f88a76eab804df5d90c872ee592";
url = "mirror://sourceforge/bleachbit/${name}.tar.bz2";
sha256 = "1x58n429q1c77nfpf2g3vyh6yq8wha69zfzmxf1rvjvcvvmqs62m";
};
buildInputs = [ pythonPackages.wrapPython ];

View file

@ -1,11 +1,11 @@
{ stdenv, fetchurl, jre, coreutils, makeWrapper }:
stdenv.mkDerivation {
name = "dbvisualizer-9.2.5";
name = "dbvisualizer-9.5";
src = fetchurl {
url = https://www.dbvis.com/product_download/dbvis-9.2.5/media/dbvis_unix_9_2_5.tar.gz;
sha256 = "e9d3374e96cf63903ebd9dae498c6b69403813eb8723187ed70f285dd7119327";
url = https://www.dbvis.com/product_download/dbvis-9.5/media/dbvis_unix_9_5.tar.gz;
sha256 = "1bdc03039b50807206fd72ecf8ba0b940f5bb0386f483e10b7c0b2fa75cac021";
};
buildInputs = [ makeWrapper ];

View file

@ -3,12 +3,12 @@
}:
stdenv.mkDerivation rec {
version = "2.1.4";
version = "2.1.5";
name = "lyx-${version}";
src = fetchurl {
url = "ftp://ftp.lyx.org/pub/lyx/stable/2.1.x/${name}.tar.xz";
sha256 = "0apkir1rw3msdpps0y0c8skr293h6c4l48c1vx0w4brz337lhdfi";
sha256 = "1wrcxsvr5kx8cfdabshzmcjrb3rmy5bh74njnzpq9m5xms8parrf";
};
configureFlags = [

View file

@ -1,6 +1,7 @@
{ stdenv, fetchurl, pkgconfig, libpng, openssl, curl, gtk2, check
{ stdenv, fetchurl, pkgconfig, libpng, openssl, curl, gtk2, check, SDL
, libxml2, libidn, perl, nettools, perlPackages
, libXcursor, libXrandr, makeWrapper
, uilib ? "framebuffer"
, buildsystem
, nsgenbind
, libnsfb
@ -20,11 +21,7 @@ stdenv.mkDerivation rec {
name = "netsurf-${version}";
version = "3.5";
# UIS incldue Framebuffer, and gtk, but
# Framebuffer is buggy. To enable, make sure
# to also build netsurf-libnsfb with ui=framebuffer
# and switch the ui here to framebuffer
ui = "gtk";
# UI libs incldue Framebuffer, and gtk
src = fetchurl {
url = "http://download.netsurf-browser.org/netsurf/releases/source/netsurf-${version}-src.tar.gz";
@ -32,7 +29,7 @@ stdenv.mkDerivation rec {
};
buildInputs = [ pkgconfig libpng openssl curl gtk2 check libxml2 libidn perl
nettools perlPackages.HTMLParser libXcursor libXrandr makeWrapper
nettools perlPackages.HTMLParser libXcursor libXrandr makeWrapper SDL
buildsystem
nsgenbind
libnsfb
@ -49,7 +46,7 @@ stdenv.mkDerivation rec {
preConfigure = ''
cat <<EOF > Makefile.conf
override NETSURF_GTK_RESOURCES := $out/share/Netsurf/${ui}/res
override NETSURF_GTK_RESOURCES := $out/share/Netsurf/${uilib}/res
override NETSURF_USE_GRESOURCE := YES
EOF
'';
@ -57,15 +54,15 @@ stdenv.mkDerivation rec {
makeFlags = [
"PREFIX=$(out)"
"NSSHARED=${buildsystem}/share/netsurf-buildsystem"
"TARGET=${ui}"
"TARGET=${uilib}"
];
installPhase = ''
mkdir -p $out/bin $out/share/Netsurf/${ui}
cmd=$(case "${ui}" in framebuffer) echo nsfb;; gtk) echo nsgtk;; esac)
mkdir -p $out/bin $out/share/Netsurf/${uilib}
cmd=$(case "${uilib}" in framebuffer) echo nsfb;; gtk) echo nsgtk;; esac)
cp $cmd $out/bin/netsurf
wrapProgram $out/bin/netsurf --set NETSURFRES $out/share/Netsurf/${ui}/res
tar -hcf - ${ui}/res | (cd $out/share/Netsurf/ && tar -xvpf -)
wrapProgram $out/bin/netsurf --set NETSURFRES $out/share/Netsurf/${uilib}/res
tar -hcf - ${uilib}/res | (cd $out/share/Netsurf/ && tar -xvpf -)
'';
meta = with stdenv.lib; {

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, ui? "gtk"
{ stdenv, fetchurl, pkgconfig, uilib? "framebuffer", SDL
, buildsystem
}:
@ -13,12 +13,12 @@ stdenv.mkDerivation rec {
sha256 = "176f8why9gzbaca9nnxjqasl02qzc6g507z5w3dzkcjifnkz4mzl";
};
buildInputs = [ pkgconfig buildsystem ];
buildInputs = [ pkgconfig buildsystem SDL ];
makeFlags = [
"PREFIX=$(out)"
"NSSHARED=${buildsystem}/share/netsurf-buildsystem"
"TARGET=${ui}"
"TARGET=${uilib}"
];
meta = with stdenv.lib; {

View file

@ -1,6 +1,6 @@
{ pkgs, fetchFromGitHub, stdenv, gtk3, udev, desktop_file_utils, shared_mime_info
, intltool, pkgconfig, wrapGAppsHook, ffmpegthumbnailer, jmtpfs, ifuse, lsof, udisks
, hicolor_icon_theme, adwaita-icon-theme }:
{ pkgs, fetchFromGitHub, stdenv, gtk3, udev, desktop_file_utils
, shared_mime_info, intltool, pkgconfig, wrapGAppsHook, ffmpegthumbnailer
, jmtpfs, ifuse, lsof, udisks, hicolor_icon_theme, adwaita-icon-theme }:
stdenv.mkDerivation rec {
name = "spacefm-${version}";
@ -15,14 +15,21 @@ stdenv.mkDerivation rec {
configureFlags = [
"--with-bash-path=${pkgs.bash}/bin/bash"
"--with-preferable-sudo=${pkgs.sudo}/bin/sudo"
];
preConfigure = ''
configureFlags="$configureFlags --sysconfdir=$out/etc"
'';
buildInputs = [ gtk3 udev desktop_file_utils shared_mime_info intltool pkgconfig wrapGAppsHook ffmpegthumbnailer jmtpfs ifuse lsof udisks ];
postInstall = ''
rm -f $out/etc/spacefm/spacefm.conf
ln -s /etc/spacefm/spacefm.conf $out/etc/spacefm/spacefm.conf
'';
buildInputs = [
gtk3 udev desktop_file_utils shared_mime_info intltool pkgconfig
wrapGAppsHook ffmpegthumbnailer jmtpfs ifuse lsof udisks
];
meta = with stdenv.lib; {
description = "A multi-panel tabbed file manager";
@ -33,7 +40,7 @@ stdenv.mkDerivation rec {
'';
homepage = http://ignorantguru.github.io/spacefm/;
platforms = platforms.linux;
license = licenses.gpl3;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ jagajaga obadz ];
};
}

View file

@ -0,0 +1,32 @@
{ stdenv, fetchFromGitHub, lib, autoreconfHook }:
stdenv.mkDerivation rec {
version = "1.4.12";
name = "tnef-${version}";
src = fetchFromGitHub {
owner = "verdammelt";
repo = "tnef";
rev = "${version}";
sha256 = "02hwdaaa3yk0lbzb40fgxlkyhc1wicl6ncajpvfcz888z6yxps2c";
};
doCheck = true;
nativeBuildInputs = [ autoreconfHook ];
meta = with lib; {
description = "Unpacks MIME attachments of type application/ms-tnef";
longDescription = ''
TNEF is a program for unpacking MIME attachments of type "application/ms-tnef". This is a Microsoft only attachment.
Due to the proliferation of Microsoft Outlook and Exchange mail servers, more and more mail is encapsulated into this format.
The TNEF program allows one to unpack the attachments which were encapsulated into the TNEF attachment. Thus alleviating the need to use Microsoft Outlook to view the attachment.
'';
homepage = https://github.com/verdammelt/tnef;
license = licenses.gpl2;
maintainers = [ maintainers.DamienCassou ];
platforms = platforms.all;
};
}

View file

@ -0,0 +1,30 @@
{ fetchurl, lib }:
stdenv.mkDerivation rec {
version = "1.4.12";
name = "tnef-${version}";
src = fetchFromGitHub {
owner = "verdammelt";
repo = "tnef";
rev = "${version}";
sha256 = "0ssi2wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i";
};
doCheck = true;
meta = with lib; {
description = "Unpacks MIME attachments of type application/ms-tnef";
longDescription = ''
TNEF is a program for unpacking MIME attachments of type "application/ms-tnef". This is a Microsoft only attachment.
Due to the proliferation of Microsoft Outlook and Exchange mail servers, more and more mail is encapsulated into this format.
The TNEF program allows one to unpack the attachments which were encapsulated into the TNEF attachment. Thus alleviating the need to use Microsoft Outlook to view the attachment.
'';
homepage = https://github.com/verdammelt/tnef;
license = licenses.gpl2;
maintainers = [ maintainers.DamienCassou ];
platforms = platforms.all;
};
}

View file

@ -0,0 +1,27 @@
{ stdenv, fetchFromGitHub, autoconf, automake, SDL, SDL_image }:
stdenv.mkDerivation rec {
name = "vp-${version}";
version = "1.8";
src = fetchFromGitHub {
owner = "erikg";
repo = "vp";
rev = "v${version}";
sha256 = "08q6xrxsyj6vj0sz59nix9isqz84gw3x9hym63lz6v8fpacvykdq";
};
buildInputs = [ SDL autoconf automake SDL_image ];
preConfigure = ''
autoreconf -i
'';
meta = with stdenv.lib; {
homepage = http://brlcad.org/~erik/;
description = "SDL based picture viewer/slideshow";
platforms = platforms.unix;
license = licenses.gpl3;
maintainers = [ maintainers.vrthra ];
};
}

View file

@ -0,0 +1,28 @@
{ stdenv, fetchFromGitHub, pkgconfig, autoconf, automake, SDL, SDL_image, SDL_ttf, SDL_gfx, flex, bison }:
stdenv.mkDerivation rec {
name = "xsw-${version}";
version = "0.1.2";
src = fetchFromGitHub {
owner = "andrenho";
repo = "xsw";
rev = version;
sha256 = "092vp61ngd2vscsvyisi7dv6qrk5m1i81gg19hyfl5qvjq5p0p8g";
};
buildInputs = [ pkgconfig autoconf automake SDL SDL_image SDL_ttf SDL_gfx flex bison ];
patches = [
./parse.patch # Fixes compilation error by avoiding redundant definitions.
];
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "A slide show presentation tool";
platforms = platforms.unix;
license = licenses.gpl3;
maintainers = [ maintainers.vrthra ];
};
}

View file

@ -0,0 +1,21 @@
The `%code` causes Color definition to be added in both parser.h and parser.c
causing duplicate definitions error. This ensures that once it has been included
as part of parser.h, it wont be redefined in parser.c
--- xsw-0.1.2-src/src/parser.y 1969-12-31 16:00:01.000000000 -0800
+++ xsw-0.1.2-src/src/parser.y 2016-06-28 13:21:35.707027770 -0700
@@ -38,7 +38,13 @@
%}
-%code requires { typedef struct { unsigned char c; } Color; }
+%code requires
+{
+#ifndef COLORDEF
+#define COLORDEF
+typedef struct { unsigned char c; } Color;
+#endif
+}
%token SLIDE COLON HIFEN TEXT X Y W H IMAGE SIZE SCALE TEMPLATE BACKGROUND FONT
%token STYLE ALIGN EXPAND PLUS IMAGE_PATH

View file

@ -27,6 +27,7 @@ stdenv.mkDerivation rec {
"--enable-doublechars"
"--enable-luit"
"--enable-mini-luit"
"--enable-dec-locator"
"--with-tty-group=tty"
];

View file

@ -4,189 +4,189 @@
# ruby generate_sources.rb 46.0.1 > sources.nix
{
version = "47.0";
version = "47.0.1";
sources = [
{ locale = "ach"; arch = "linux-i686"; sha512 = "92a2932972df78069004443cfc09333fe61cbd2d26cdd364591d9351a38d4174bca93060dbc8622a22babf3e84a8981dc03913f5196dbe8073b3e879fd1d4228"; }
{ locale = "ach"; arch = "linux-x86_64"; sha512 = "84d86ebf8df0734b83ef8ecc1c3571b9543a6a13a39539fdc73b2f1f12dcd0ae77cdd322f887babd4e4370d40e493f86c424d94785c9ef94ccf28e9acfffeafd"; }
{ locale = "af"; arch = "linux-i686"; sha512 = "d36fc79b5c26d8eaca7b24ad88808d63c18a6b8a77e8406461cdf31f992f123137c38acc5946fa810f427d7ceb3db492fbea0e2a6bbaa7c92d98eee84a33209e"; }
{ locale = "af"; arch = "linux-x86_64"; sha512 = "3bfed126d572730d2a454380030ce3ebd8caf6e0363eb67324a29ac643af7a62ff23f076df2830072a54535b9b6e37a6856aa8676d08ca652f98247b710cd2ed"; }
{ locale = "an"; arch = "linux-i686"; sha512 = "7a65b66e0fb5903d78d619bbf457df82365b833f22b47823c0f2c894053ea2f2c034eca15fffaa8cd9d3f5e5b07a8cbce888bc7b5857925fbbf6a29ce2b089da"; }
{ locale = "an"; arch = "linux-x86_64"; sha512 = "5b1efef3e7890f8bf58408bf27247bbe6fd92e3f6b170cd1963b6df08bc7ee1a145a8213f0cd950bd4b65c8a7d5671cfa71eb121a7dffece2ee038c654c0b95e"; }
{ locale = "ar"; arch = "linux-i686"; sha512 = "ea79296637247369c781cebecb6f779a7b7f106a664171e5cab4c33de14a1c5ab0a46f728bd8f5d45c81b6e4655cdf91cd9488035c8fce9b340e31ea97666aa3"; }
{ locale = "ar"; arch = "linux-x86_64"; sha512 = "7419e5db20d2a733ad499d161be71804bf42e059787e32a1c87e976f168591b7c379c8f5c22a39350c6fbc04a62436de141448b2c2567e8dcc360e76a8a02624"; }
{ locale = "as"; arch = "linux-i686"; sha512 = "b23ab0f326a2a30da54989e4fababbd39b49d64df3d49bad049ad44d68209354d0bf79380916b80c9441d87826a8cce4e644965427f3b4803f443d61b6f12dab"; }
{ locale = "as"; arch = "linux-x86_64"; sha512 = "05026ebfa2a478c5641822ceb37395360699e9dd03114a60e8af5fa0ef50a94e0dc582a8a5ca1e7f4dff035e049cee15959b4ff3b312b53ea3129ba752ab01c1"; }
{ locale = "ast"; arch = "linux-i686"; sha512 = "3b3096e551400d8daaeeffe04f1fb75657257b3cd30fa6a689683474382de4f669b67f39106f2b3858ca08c2aec5f3d7b67cd27f24c706ad5412623fe7c7c9b8"; }
{ locale = "ast"; arch = "linux-x86_64"; sha512 = "7639a47e56d9f07d2e6a64dc580e1df0282246d8f6f92b9620bc9ba1d8de14aca7889902e898adecbe16a4eae882710e6bfef807831351c0d003a75f5021ac5b"; }
{ locale = "az"; arch = "linux-i686"; sha512 = "bc9ddf38b3fc883e24e0a78b50209e3d790a7cfd5e2c466a4625faf45923bd7c0c6ed31d877a0bf74d8f99fe08068dca4879bc895b685c93b4783f6da6641533"; }
{ locale = "az"; arch = "linux-x86_64"; sha512 = "eca5c5c1fdc9d45669821a10491d4cacbcddf1336d3efa33c95bbfd9242e5484afe468dd7c69173bb33ee7ce154bd504ac66b53c5b03f8370b5de33c99d516d4"; }
{ locale = "be"; arch = "linux-i686"; sha512 = "23a6d5384d01bc91ef4241953ca901ca0bc49bce070c8dd1b9fc2423e6713209368b2fffdc3253c24cb99f626ea30491468a50e200dcbd975e6a35b4312a92db"; }
{ locale = "be"; arch = "linux-x86_64"; sha512 = "eb3dd4fdaef8bed4abe363b99e3bf2d989bd5df4a919d863c92bb4bbbc1aa65feb9271d25c21b6330ea94d0ef8b40c1720bc562655fc7b7dd3e7d214a6362569"; }
{ locale = "bg"; arch = "linux-i686"; sha512 = "00c8bf5cbcb3d03e6cb80cbc011d04170c826a144d12c197a362a0f64df68a5e42ebe7305fde503c0ccf1c36265599ae0a63cdef45490ede7bbe41beb99320aa"; }
{ locale = "bg"; arch = "linux-x86_64"; sha512 = "4f378f3ae84c7ef5a6a70a97a8dec0911fe88838433e83dae36a3ec40446ae23f400145e684dcf3a4ab1f9fd8c5ea88e1526d478934de4a916fa67cc3be5d032"; }
{ locale = "bn-BD"; arch = "linux-i686"; sha512 = "075d87f42ce552381d2132cf92391eead6cb79b8c2068706e4e63fdefd2964cd0f26153bd9c0cf0702491d0f1d96f1eb35d6fba1b6e670d7280507a7a6f5e2d2"; }
{ locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "30911670c47f75fc73d295d63d3531c30f61be17356f13adf69457016a77041667b84ce978b7d3fa0743fd5bf9576d0cd64b9c2cddc7413c38b149191330dd88"; }
{ locale = "bn-IN"; arch = "linux-i686"; sha512 = "646bf28020d7532c100d8323529dd8410ea3e5d918f66fc2d9b5daf7217a8f105d9498ddec302afdef5971f2c9caa54fe491b8c677f375590a55ef0e764b2160"; }
{ locale = "bn-IN"; arch = "linux-x86_64"; sha512 = "9c9ef3e941dcdfc1dd1e6a8ab81b3735b71907c0e3c45e2ed0369d541f850fc7f200170ae2adeb0068e375417e7fb5ff28af9b43d53b6245fea7b7c2c83c5088"; }
{ locale = "br"; arch = "linux-i686"; sha512 = "8bc59c85a617fa0a07968597ffb72654fc714c78165318032cd229cec60310bc6e9a31ffa7c4d96c57b9b09e5623f324dcb753f127f11f68b70b9eef2e920c32"; }
{ locale = "br"; arch = "linux-x86_64"; sha512 = "725c98dbe60e48e24ba41c36930f67788eabb0bff3fdb93f9a794b36426147dc5a0e8250b1a81913a31beacf13541a06e53f626626c9e2fb94a46e8bf9346cec"; }
{ locale = "bs"; arch = "linux-i686"; sha512 = "370b497ead2e133d90d0a5ebfb76bddd806134c2bba4ced17e817a46c04bf39e366b646d58a59f7163ef9916072032e6657af68489645ba8e48559eed4596f28"; }
{ locale = "bs"; arch = "linux-x86_64"; sha512 = "2f3ebfd18e9dfed7170180e3560d3fffc7169da6c0159d4abac01d9efa5974c1b2eb027a6cb8ea48ecd1f300dbd0b65943eab5b703d4bc2a605e35c87c791fd7"; }
{ locale = "ca"; arch = "linux-i686"; sha512 = "ec9f844e8c2ed13afd2d123e88de8a83ab3b166cab1aaed841b5c5910e816148e6085bd4b3eae5027cb5071ff8b90cdc9807c563f77138ffa48978fed264adcb"; }
{ locale = "ca"; arch = "linux-x86_64"; sha512 = "f4cb217879e96a094f87f58c6b46a992d106c4587e58331799d5ac5c5cf21b8b438477d56b9f9428aa4540b8d2eeb4fd4f79bf527d5826877f1b8813c55051f3"; }
{ locale = "cak"; arch = "linux-i686"; sha512 = "f7d0c195394221a256ac9eb6de074bf317f5c4fd08d8a93ce551ed2062761e0e13f3d61f9c7ff3f64b5f4cd26dc80c2c09b05301d56138e5db56796eca78ab0d"; }
{ locale = "cak"; arch = "linux-x86_64"; sha512 = "7148d683c950041db3eee355a978f86325a1849bd082c6c33c32fa76ce4bbe2e26e2aef48032cbf42867c90c994383e59d2c34728371007a6b0072ae6e8d225b"; }
{ locale = "cs"; arch = "linux-i686"; sha512 = "f22232a3f5177d6538ab43130dbb0601f3fcb329d77b25ee3929a698c1104d7c966aa3652e33bb47307ced861a709031993e2e0e91c2c80902cd607db8473595"; }
{ locale = "cs"; arch = "linux-x86_64"; sha512 = "00eac002d4c2629b7f0e379b3d6266a791392d7587d39b28bfb155d9b2d2add4332deb4a6d587deb274e087cd0d21553eb3133cbbc423a102e831cbe7d329306"; }
{ locale = "cy"; arch = "linux-i686"; sha512 = "641048f0cc8f80d2af907ed9ce4c35ee3ca5bc587df6b5240dcbcb9a2831f412855d5c68daf8c295a3e10c212c1282eb1f25a860a9330ab30f3b14e7537a23e9"; }
{ locale = "cy"; arch = "linux-x86_64"; sha512 = "b9a0f3316f1498991b2f9a721812221052832eaf3861a3bd818c3780f7a0ba93d424d8614f8eb3cace9158a954747d56958dbf482dc3661f19bc2df1d2b1dd12"; }
{ locale = "da"; arch = "linux-i686"; sha512 = "01492735fa343c20eb58af892c93016affc608af2f09f3ac239c29540d7b6c9d886dbf12aae00b60a97a1a53c0a55db4b62fc271e41241710226a25c791b40c9"; }
{ locale = "da"; arch = "linux-x86_64"; sha512 = "e2386a3b7edcdb082502506d166938216b9138870e93786fbb2c2331f1a8782ee7cfc9ad5f7c4d7a6147701d34a451069f677ad56d64cbcb05a9c963f3a7d8e3"; }
{ locale = "de"; arch = "linux-i686"; sha512 = "f287674bd825c0c829a19b7e3a6d54f0a12a882cb9b9fa95cdd5c032fd8a859b0d387115d8b9636592328c4508ca445133a08db3b6fde896cf6ba146e490d851"; }
{ locale = "de"; arch = "linux-x86_64"; sha512 = "2b1ac26be4020d8ec989eb6678a10d293569f53d0a20fba1210cb788792a4b545eb6ee6d6979635ed55d78d493946f3aeb254bb73cc23549062e92f924dd25f5"; }
{ locale = "dsb"; arch = "linux-i686"; sha512 = "e4ba2166cdccb6d13bee503021e26b240cdeae94db2536892e8171b2d07ca7744dcf8d428ce70d04c9d1d4938793301a8bf67d8549d25c9b464be64c0d0a2b81"; }
{ locale = "dsb"; arch = "linux-x86_64"; sha512 = "f778140b07658aa55ee4646f3362300b4967dc4a6a96188915af9dc67899b0587f500dec646614f829bdd3d713f17b0286984919bd6a1b25c6d7028990d2b6d3"; }
{ locale = "el"; arch = "linux-i686"; sha512 = "0c387507189de21329cebb7959cae4c5ee29339d3dccd9a4c5b216425e19a12f4fa05a73369d66fda4f02239f4a36722cf6ec7ebba9ffaaad2344346b1004aee"; }
{ locale = "el"; arch = "linux-x86_64"; sha512 = "8035059db6fd46153e11335b5feeb782b54ee9bad07ac0ff5e605b00a1af9948a0348b927dceab740ba74905e592cace164c0c08786afef210bbf3c5f3d0169b"; }
{ locale = "en-GB"; arch = "linux-i686"; sha512 = "0f31c9b6011ff83e0df95f0478b2eb3c58a1b2ca6a2120658543b73a61d2e88440bfa4bc3f3167c4580b597fdcfcc3434934f86774486458b860568f5cd6e5e6"; }
{ locale = "en-GB"; arch = "linux-x86_64"; sha512 = "d1c3f5695dd32c899b2ae9cbc386724d80738b12d525be4e0119bcf4909863991f96c384b26599e30d503ab4ee6252b2df6fb49ff8e7b9fc5c4e655e2d5dfec7"; }
{ locale = "en-US"; arch = "linux-i686"; sha512 = "ddc441efc3f8892cc4473a4398fb30e616ea09fa1f1ca3a53a5cb4e645a4501a1625e2381569414422c1754710531a4c4e3f49c755d3b42245dbe5e852e61bfc"; }
{ locale = "en-US"; arch = "linux-x86_64"; sha512 = "42b8e0c557319a51316c96c85d5cdbe68b8c54c01720ea3b2f65d484706bc82de10313dd6d158baf47112282193c475c5cdedc9429c365ec49f0f9534ab341b1"; }
{ locale = "en-ZA"; arch = "linux-i686"; sha512 = "4f01137b3511db5c99d3dd9f9e6ebcb36109c808bb23400e628b19234d6b8d57a24d5442c30db70e4afe64424a635422bb433f63e3e5c565eb8a4ecfc0730adf"; }
{ locale = "en-ZA"; arch = "linux-x86_64"; sha512 = "eca31919b9742b9f0ce8e0be04db3a71c52a5956966343012ce5d334409b3dc5612d417eabf2f06dca89e148a481f170cfba1e43c7cff231f12be1cf0dec5a2f"; }
{ locale = "eo"; arch = "linux-i686"; sha512 = "14ad428fbdfec786d7e12fc9b8c60a3d539e48f8eb4161014759345139d7b1662ea210ae2ab3c0ce1bbbf2d1ccd34c384228294f52cfb5895bd6bf0b0741f4a8"; }
{ locale = "eo"; arch = "linux-x86_64"; sha512 = "ebec08ec12ab13150f677bb53441dc1fd1ed320ca53531a59548f22b68a0af8463d69ddfc222b8d3f7817299c2e825eb3b9ef12177f545add9a54ee8f74d0be9"; }
{ locale = "es-AR"; arch = "linux-i686"; sha512 = "07d86bbbd1ce48268eee9e7cde42b31c426441012b3afcdd56e479278e3a94165aed3577a27f102114516bea2e79f9c1ca74d87b0e3e65dfb94413bff86337a9"; }
{ locale = "es-AR"; arch = "linux-x86_64"; sha512 = "35c91fde1523b22a5cad3ef975912b49a3713b3f7845b0f99e317f6226687e2ca4fc74f39b53f45f1a65b53c85364d03c9549889dbb3f4ecc921e354640e36a9"; }
{ locale = "es-CL"; arch = "linux-i686"; sha512 = "9098c0da3ccbedf8257fd35171aaac912e071ec9f71c0f88b869599e479552c58733f5b2b911a83efa2bdff39801c61b8652be4dad45f339b7a1a5206235d1e9"; }
{ locale = "es-CL"; arch = "linux-x86_64"; sha512 = "176eb04bb057b775d9826a00fe2862c2f529397d11f19d5f74ef8d39773e4da1fa6ef0463803630f2720235febf2ede8b48af3e9fa11cc8e22e93fda5a817feb"; }
{ locale = "es-ES"; arch = "linux-i686"; sha512 = "673f824cdc235ef8e80b1671ef7915bd151a11d9a2923d1541caafe0e3cab87fa3935259289a369a3ab4242cc248552e2353e964c09251c6b3bea6696c00788b"; }
{ locale = "es-ES"; arch = "linux-x86_64"; sha512 = "31646e64273b98fb8cdbb104be8bc16d4e643f2b2ab0f837ffa581400e3aa252b4327ae4eb22f8128427410f73710a58d877bb0a6c6942e627be59f90eda2c2f"; }
{ locale = "es-MX"; arch = "linux-i686"; sha512 = "90e763b7d0ffbc6392fe7797a1d2346aea6786d299f5dc202436a839617c974d3f362f4b971d8b89316da47ff1c68a898ef17efadd4582556cb35fe395888bc4"; }
{ locale = "es-MX"; arch = "linux-x86_64"; sha512 = "cf1a92b03a5e761c7d32558a1b022a7d02f404fdc40342482d5c20cf529cfebd4fbce1bb2ca0ae25c0ec9cadd467acef8df8f2b8013bbd8ce8f0cb7bc1bb7cd2"; }
{ locale = "et"; arch = "linux-i686"; sha512 = "1a7cff9b68f910d612eabd03c55e766f3cdd159a6f81e422144565bf93f267780249bd26f347667e5cb746810cfe5b54e0ffdd860fa0b285b1218919fc89da11"; }
{ locale = "et"; arch = "linux-x86_64"; sha512 = "fac08053004c7db0f18195846f8fa2f272dc66a3091f51e54764255b2abb34649482bbcc1cb6d3dafc3fd5f1bd352504e7edfa06260cf4604c7870fbbc14282d"; }
{ locale = "eu"; arch = "linux-i686"; sha512 = "fe3f9f749735e7b80db6909ef6fbb0074a6773d1835c1e41c9ae652b89722b3ce800462380bfdf07806042a195df496642e6e61277038bfa15e18f8495228ef9"; }
{ locale = "eu"; arch = "linux-x86_64"; sha512 = "3a2da4ab5d1e453e0fec7aae68fc89e43618743a9ff492214f2ae2ccde6d427a2d5d7f7dba3d5e9a2cec2a129a207da53fb7681bea4705ba0752aae27d069914"; }
{ locale = "fa"; arch = "linux-i686"; sha512 = "3440957701b88cc09320bdd2f142f416ba0a1d87290ca5b46e025cc1fe314bb4ce148f510b8bf517276389d995588d1acc818469466967c777a285ce03810610"; }
{ locale = "fa"; arch = "linux-x86_64"; sha512 = "a9a7932c9fa3b5ea200ed848f310690de265fb19e691e41c4eda71e8611bd5973b85e6d6856408311861c8f06ea25b09dece55e5f220df6734488c20c6bf28c5"; }
{ locale = "ff"; arch = "linux-i686"; sha512 = "f38ddf40a6682a03f1230a3295dc426790442694f55dae23e0be1b6a4cd844d54efb13f84abfd27fc3d798aad9921bd01167afb55244f9ebd24606246a8875c0"; }
{ locale = "ff"; arch = "linux-x86_64"; sha512 = "8d321bc31fae8eb41f48841cf26cacc5ec43042e43609a085cebc8dab05da909def1e26f5fdaead33bc5964dbe6580167e0d518e2fdba558da41fdd1f8badf05"; }
{ locale = "fi"; arch = "linux-i686"; sha512 = "94795ea0110d479e9da0b7adaab6513f01d53ce131f78b8092b1e1d9964736eea9be8430f409d511c10da89d09bcb09b728499ac097310d326778c8f9ad17f8a"; }
{ locale = "fi"; arch = "linux-x86_64"; sha512 = "19eee17211938da6fec59b2b665eb3bd27bfddbc21f7b5e86d63e96902234255c72365ad1299542caa0d59400c96e307f4bed7b87aeeefeaf717d24e39372234"; }
{ locale = "fr"; arch = "linux-i686"; sha512 = "8ec0ef5d8273bcacc9f02393eb4376dd2ac441789fd269912bd06b153dc8f93a0472c86d1d5c2978408ddee218ee471fa4ea7d48a99274d4f1d88372a3ae5df3"; }
{ locale = "fr"; arch = "linux-x86_64"; sha512 = "6104bbbe8570685e071d51f6cef1ed20309b7a79390e97a9af54db5c745082ac742a5d3018925d338503ee0bf2f22aea6b530eee4ab3f9ae8067f473ffc9485a"; }
{ locale = "fy-NL"; arch = "linux-i686"; sha512 = "b0eff69223d7f2fe3bf023a72156083333dcabbd27d02d62f04088c51b987c360953649bf9d82a886925c07df66663f41ef0c27270ff75c2fc7146f824eb68a8"; }
{ locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "b486989c8c3d19864db6ecf99c49af8385a0b61ae4e354593a0dd967a01a14db9fdb496e9cdb914b760a6efe0801469c903c0eb74b924bd143cceb5efe57cbce"; }
{ locale = "ga-IE"; arch = "linux-i686"; sha512 = "7a160052680f7a9c2950cb505b9705d8b71d997ac22adae105e1bebced242d7808ce0f10c8bdb2f7b35be4bb0d0b486d24469919d45b9c946284966024ea0924"; }
{ locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "6c1806c6ae06ab138259a6c2b5d19c7e6c94fc1f96f82646ba03aca9b4ba8a35333777add20b9fd3949056c151f24da33068a135fe2c234e3e59a6f264245ddb"; }
{ locale = "gd"; arch = "linux-i686"; sha512 = "c516e888ffef6549b6fab1b1795185c296c22f4b5a39219f98b6e0de6df2ab8480a9386f47267ba97a6683f52011b8deecc2ffb24dcf00d63e420a1e8deeb395"; }
{ locale = "gd"; arch = "linux-x86_64"; sha512 = "8379b6210a6fc65b6809ae7fa17ddd913e124742709681f3d7cd35a2e978ddd779f7482f83640f766db91c007530535f6ba4136212454314e66d904ef5d1ef0c"; }
{ locale = "gl"; arch = "linux-i686"; sha512 = "b94883d5676116941a08f0df42f0fde4adc5346165eec2d13998e99950ebb895f83050947ab4a5aaaad9c08040402923042f3d555f15b754241cf09148339092"; }
{ locale = "gl"; arch = "linux-x86_64"; sha512 = "272b2f8361cfcb22ef8365954b0ce4a4fe7146b94785f283558262df95674d4c43df4f3cf4527c54112588bfdfa69f88f14b4bbca653d72bb1e4e9425a7523d8"; }
{ locale = "gn"; arch = "linux-i686"; sha512 = "2f4513301c628bb209ab086ac1a956934cff334dc9905c1bdf1360695c391f67c5adee2fbfc41f80f19691acb9943bebb8b343fd540d428226e8314ef91ff983"; }
{ locale = "gn"; arch = "linux-x86_64"; sha512 = "abce4d14340909c1e08f76d66f32b2833029c3a02a0815ac0091946361495ca5c30f6d7270426e9fe69286404294af6575af83b1078c7b226822eddcdde0957f"; }
{ locale = "gu-IN"; arch = "linux-i686"; sha512 = "9d60dfa7b114c4a65da19f1cf153e178ea99097ba7f3af6db0b62651a5e71d2bc7e7cf499bc37e78c6cd6e58774364e4a628f43a47b70f54dce8f14df8be6b43"; }
{ locale = "gu-IN"; arch = "linux-x86_64"; sha512 = "747161f8fff06b3a7bc18842fdbf7b5e2c9744d379ac4d0c0162797c0a09a155a62eea2c8e8dbec45776a16a7f99ec8bd770d5f8e6248a45b85074045afcac39"; }
{ locale = "he"; arch = "linux-i686"; sha512 = "cfbc9521be480014bec73b69dd7c605d65a96c7ed881b384501c70280655c4c0661ad764195d289b422dc19da370492762ab40269fd5a0ce5377781f9d6be18f"; }
{ locale = "he"; arch = "linux-x86_64"; sha512 = "7ef7f3633a54e9b5daab32e410df1b9d9abdbf753585dcbfc92aae8f4b15fc6695fb745ce552e7a62b74ad83b9b3ab729b8d74b159c9103a057a168457d25c4d"; }
{ locale = "hi-IN"; arch = "linux-i686"; sha512 = "95eda3ea3b56384800639d1c7071d2684d4cacfdf6d1639e311f5ffa215fc08952e12a33cab60c44092b7a7756388390afa3d41a41c27e1e0d0c5a713ae54c2d"; }
{ locale = "hi-IN"; arch = "linux-x86_64"; sha512 = "af60392fe55b23cb8763a18ebea264cf8867388eab59ea1707f7b27056ce4b9ef5ab68406ec5ea2b50d27787fb3dfe3d18bdf925ee0c27c09d3429a6eb011a39"; }
{ locale = "hr"; arch = "linux-i686"; sha512 = "d4c9152e1c69d61cbb77343c7b1f0678ba5698a5c9c367f7dadce3c4218d073f5cf7daf606e140298ab862c33bf2bca051f9dbb3fba0938562ad07afe57bbb9e"; }
{ locale = "hr"; arch = "linux-x86_64"; sha512 = "4ff85cb022ebd2433971abf54a32fbf4c8ce0ca21171e7f3a398e50d18ba4f43f7ab3be305ff2c4cef5dd08ef7577202003182347b46d461b7d4828f51e5e100"; }
{ locale = "hsb"; arch = "linux-i686"; sha512 = "50648eac33c88a4d408a15c077c8b2b09c5250628c1cda4007756e437c578438193777ebd465bf81a76a10dd27a49d1887b69d5ed3bbefe0ba196ef5f144323b"; }
{ locale = "hsb"; arch = "linux-x86_64"; sha512 = "631fe11f0764c3d039c18c4154b0099a43ee432b294466fc43e7f842cf63ea8ac5a4e15f44a57ab28e7250c03787b9ef18bbc36abbec21a6cfe9de58367f9a4f"; }
{ locale = "hu"; arch = "linux-i686"; sha512 = "5deee7e35c7bb3988eb44f3c7882e587beea64e075b2dee824d0e7bc4555d5086302afa97a845f7f0980046e3798f2e2425782e51b26e7f805b907b0512539c8"; }
{ locale = "hu"; arch = "linux-x86_64"; sha512 = "1745e3daf78707c85e59fa404f2acee9899d84e9dd757a7fc0ed7e523a2f0cfedc6a48d8b65723a89e4e956135d67b8d7a8448b03e5f9ab8f2480a552713e93c"; }
{ locale = "hy-AM"; arch = "linux-i686"; sha512 = "0b9ef751c0c1881195e453521478c48d01adb303ea04758d450c48a6895dc6b8ddd5cd3502fe86cf1a3dbabb2ada9c5684a3330e8a7ce47a7b902c9b00651666"; }
{ locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "048e01c8981064c5f692c0f3a76fc0c67d01155b503813599787b8d17c44133ff554ae84ab82612c00cfcbda631e3c01d22ea93e51842594d67ddcfa2d650e18"; }
{ locale = "id"; arch = "linux-i686"; sha512 = "057464e35bdd3159f538646f822137623d4b0b461ec9c1b0121321d4eb25db09ed74dd3959bbd0435d42e74eaefe2cf384d3510e2ecae53aeeaeb8bc728e3c31"; }
{ locale = "id"; arch = "linux-x86_64"; sha512 = "ff29884dfd0a0bbb962b9c3767c3144998a3c6f09913d1939f511686cdb388d1bbf3cecfb7d93d2803553f188574a1fd3818532a1e4bf80a3f4d6f1768547aa4"; }
{ locale = "is"; arch = "linux-i686"; sha512 = "f5fe21d04987e660374616cdfab43aeb4a4d314adb27443b0d0c8e8ae5764101b14de6e9e1e88bc8fa6b94e229e0f72d6ab12c3557a6085d2e6e3626e85885a7"; }
{ locale = "is"; arch = "linux-x86_64"; sha512 = "e9bd6410603adf1bd56a47685b6ccceca48e929b0b869ef5bf4459c926e9b4230ec8fbf2324a0a52b0dce6c88baf2199e367265e89692c452e954833e403831e"; }
{ locale = "it"; arch = "linux-i686"; sha512 = "049a94c20d5c66ef0209b281e150191dcae6ac34464ecb6c30a1d7c72638fd66992cf4f334b5e0e8c4317cdd84383368b31ee77e3280be8293b4d6d648cc0e8a"; }
{ locale = "it"; arch = "linux-x86_64"; sha512 = "ec76515cb83c61f09c5499c78a94d83780ce4cff537fadb1a49c3a432d0ba808bde0a8f27b3709c68d57603e4fdfc8d9ad2e0a5d37dcd9522765b509aa279388"; }
{ locale = "ja"; arch = "linux-i686"; sha512 = "397cc357287a48df4749d3ac2850b7a1fe840790da58808c381c34fe20403084b514e818b49edd09a151305b9828f368821d9c258722ae979f7078946c4c2643"; }
{ locale = "ja"; arch = "linux-x86_64"; sha512 = "d04e8d136e46a764e77fbac6dcad2eda23b60b07dfcc7d1faedf10b079b6ff0d64af4b50dc459657315880dabf1a1cf6cc19a628c4e1118c36683e2f91fc8eca"; }
{ locale = "kk"; arch = "linux-i686"; sha512 = "bce4da2456d92b97bd48a94802b6c8269c22b7e5643380c5429fb080de00a2dfae7408a125795d48d53c7580a4dc9bde0b5c050ddbeb62378fe8693cd4e3dfc9"; }
{ locale = "kk"; arch = "linux-x86_64"; sha512 = "2fc1f92a38176b27775779bda30bb9e3373b0a811bceb9b0347b7a8dba2665252d7dce65765375c7bc4302268b017883a32725ece8170263754ed274b754d02e"; }
{ locale = "km"; arch = "linux-i686"; sha512 = "c2886cf296a78990f015f63dfbb2e3ce465cc30cecf7ce9458ecb6e0a125a534464c5a9f78a488ce709f352a7fbce1ac0bab0017f46c3c6763b7dedb4a1058c9"; }
{ locale = "km"; arch = "linux-x86_64"; sha512 = "28d366c21242bdbbbb202fe46472f5666868dda7dcd5caf2aaeb474fd1f214a6ac2e95c3772e34b00b7f074d02c540e894a58327b2813cbbc312b136d381cacc"; }
{ locale = "kn"; arch = "linux-i686"; sha512 = "2d55511ab838a8af5ef8f8c30ba4a3526cdc13565b3ae149164fd5b1e1c5f2c4be393c6ec7806a7f805e8d09bb72a1b174cc3cc4f160d4ab2b0a3f9ef04ce36e"; }
{ locale = "kn"; arch = "linux-x86_64"; sha512 = "49a0f082c1a619fef966333dd85abaa2a48042fe15759e7ee72c054c43e27bf5d9e68c6ea44f98a443cf5faeadecf1078d23dfde581ff5669ba572ee246d0c0b"; }
{ locale = "ko"; arch = "linux-i686"; sha512 = "23922095cd3729e35b40a83c2ada94784927b52258b7f010e970b6f965081645ecb2ba585801a09e833d0cca8449c92a273810bc815677eb786a88e77e32b42a"; }
{ locale = "ko"; arch = "linux-x86_64"; sha512 = "10faafeaa59606617e807fd8ff0e9040a4de97f213f8c94c2a84ccababca5425c8365b60c80cb12fcfa5b4d80721b3b6d5351fcfccfc90f3c04096e69c818259"; }
{ locale = "lij"; arch = "linux-i686"; sha512 = "f00aa4352607ec8c7fba3d66ed141a1f75a324bd63e827957aa07b55800ce4a621125c9900e186ebe30aafb230ef7db7048a63b8218d77e39139c49f82edd5ca"; }
{ locale = "lij"; arch = "linux-x86_64"; sha512 = "b3f8916360f8188b8448f83421bcfb438003c1f989d97a804f28750e107679407df73cad69cd9496eb7a6a9fb71a12e93fc1e20c5a4ff602c671e1cd09cc13ca"; }
{ locale = "lt"; arch = "linux-i686"; sha512 = "6525f0bfaa3ed910dd7d49d4b24476c99662b3034287fc33cea58690afa070f113123c3932dbc59d414d8227e60aa63075c141e4b1ebd26376fcee3d49f14a4c"; }
{ locale = "lt"; arch = "linux-x86_64"; sha512 = "537f1726b7c8701a1ce513931c8bd6b0bacd11c5e91eaf2f9064ab87b001558a31f7ed71147c4a77a40f9ef6fb97d98a9f9927eb6a394478107b4abea78d39d4"; }
{ locale = "lv"; arch = "linux-i686"; sha512 = "0f2b5709083138d676196155afd2f53ad92a3660b2dd3c36b7e5f780d011bc08c17334753fa2b9a4f8a85a3c2c528fbfdc450e32db796d1752745560635ec58c"; }
{ locale = "lv"; arch = "linux-x86_64"; sha512 = "430b453951c20af4268a7586ec619ad095da12c5e8b8f854fa80d21b797814301edb69cdc5c510de18e6a1d35f7f646ab4a67dd28ec46f9624079686d5f1f3f2"; }
{ locale = "mai"; arch = "linux-i686"; sha512 = "96685525b23d8f28abc351d661c3b7d43f96d508b514dc804640bbbcd6aa30285e893cb2dc12f8cd6da42e931aa9cf35fb487fede896eb55a1817e5091d99aea"; }
{ locale = "mai"; arch = "linux-x86_64"; sha512 = "3a5d892471366c9bc6b82589fb2c8659b228823f76507468bc9c7be8bc3af425ff397a6409e78a5b0662a0257c27a4b62fed0b1d66201ade162fe952aeead813"; }
{ locale = "mk"; arch = "linux-i686"; sha512 = "ba686c0bb59ecfb7632f86c92b99bb7f6a4ea0f15e52fe78886831ef744332d770543e30f11a1bee904b40230b174eae5db86e2e694b678b0d1a25b750bda94e"; }
{ locale = "mk"; arch = "linux-x86_64"; sha512 = "8bfa03a196396d209a5d6e335cbfbcfffb2fd6aaa3c61eb4f1abefa4cfeb0d6f58fa41b89b093a2f84b65a0f3536ac0efe227625290d03457f36ec35727740c8"; }
{ locale = "ml"; arch = "linux-i686"; sha512 = "20f877c059f0f893bb60a5429c663920c9e12e112ac39359437148ffbbc06612b868e891a4c03e922a293e59b23cf6b96ec89ca474462fb6d9f3e82485e7b982"; }
{ locale = "ml"; arch = "linux-x86_64"; sha512 = "5e3b656ca1045cb07ab1db320ca35228de86d5bcd3da0ceae24c005a7d6e7a74d2b3b812d24da89b0d2967bd499f17aaef85545eebece4317c4ae0855feb6eff"; }
{ locale = "mr"; arch = "linux-i686"; sha512 = "09a65ffe81eb7c9ab1a6984b93391e2a1e0da895178fe606d69d91ccc95be14f3259c5b1fb7ea8cbe89e20a81ec6178f43be492693857b1f9cc34670ec4f0c69"; }
{ locale = "mr"; arch = "linux-x86_64"; sha512 = "638df1d240389d5507ed91f8a47075d8f77f81f178ae840f24cf7e19b037b76f3fa36755189724d76e739e9ac5edfe06d86fe7a5bfe559a8c14852f5ede1a173"; }
{ locale = "ms"; arch = "linux-i686"; sha512 = "68c89341714b165a4ca0008d4e934ad9b04d0b5ad219faad6d3e4827fcffd7e302510e1a73f628851f6d4c2e48e47f27e6b130f88e94d36e5c882ffb7da37c50"; }
{ locale = "ms"; arch = "linux-x86_64"; sha512 = "83acc1a93aa8d6de14c87eff4c3321cf8aec4927b049b5d6bc56fc22ba74b0894242a69676098d7f66bd054dc98eeb73521fd7dfaea3ef04a1f7a6c4d43895fc"; }
{ locale = "nb-NO"; arch = "linux-i686"; sha512 = "81016f0fb40fae025fb77295f1aed42d0bad74fe4421a8e10e7164945af46edde0c2a7a82b6e048dc52c60bc378577b9fc151e81cd32d131bf93f7b56ffe1fac"; }
{ locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "dc646ea14b0d8812ae064dea4eadaa33701754a293d919bdd640ea266a16ad8af64f9fb06c6aaf227a5824b5a43179d59183a5d0435ba2ef8fc7452f4b53c6c2"; }
{ locale = "nl"; arch = "linux-i686"; sha512 = "4dbb3144b5c4c83fd4ea4332e970b54628f7b81f23e77d0dbf4420e24357e79492be7e8ee1d9699d4fdaad126276dd0b5be94f80d44b3610dff0f914227bb79b"; }
{ locale = "nl"; arch = "linux-x86_64"; sha512 = "83391cd1d6ba8aaca3b87e77156978884cb80a3a5e99780299b3d294d6956ab0f90af6dc365fb918e04d02d4813386967e81eeab2ac87acfb39fd1915a341327"; }
{ locale = "nn-NO"; arch = "linux-i686"; sha512 = "a9e6f6131f8f7f05a7237b15d1eaef8c87ff537a918d908e3c826903d68f5e21908a38d96372034ec538ee4f99aedd5e7b5e3d12016d0dc47e6b5e33fa59c57c"; }
{ locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "b967378d6e1eba4aeca4bb1273395c06d272fca7b5ed652c773bc3676989ecd620055ce5813046747e3b76c0846688367a7e6f2c2523ad20f8d3d1e43822ed3e"; }
{ locale = "or"; arch = "linux-i686"; sha512 = "44d2a4b5567749a546c414f2eba1f71e0976c6992755faf7b0268f579030ff26d31da9b252c0abc5f1906910ecb27b21c551390739945d0bee3e785d909e4de8"; }
{ locale = "or"; arch = "linux-x86_64"; sha512 = "0458ded3dfd45c998afce1b7c9c202e948451f372d55cf7698917db1c5321283b62068eb20d4a6e79555a2e987150c8acd650c9146a5a2fa7fa61f625d2cf62a"; }
{ locale = "pa-IN"; arch = "linux-i686"; sha512 = "dc5471efea10dd5d3bdf476140b79de4acaa243f3052f36e94d9f61cb6a6bb6dcb36912f7ddd387fb1b340a2efc90c5ea382f8bb6dcea02dd6c9f31f7796e642"; }
{ locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "65497656d473c0e8c9f78c245145815529f4a15aa851fd2864447cf1e740c76c088256f34acd6ed6bdd437ea029eb4b1f04c3b8980dfca916df6d99b2d68b5dd"; }
{ locale = "pl"; arch = "linux-i686"; sha512 = "998d9ba179347d5aa87832eef4b283be1bb09edc16da3d2e59227db6687e062fd194e442ca35a94705b08b32f26ea0cf4d6baf0923df62fa37bc9beb35fc1f15"; }
{ locale = "pl"; arch = "linux-x86_64"; sha512 = "629a9c4d5f8c11973e517bfaf9b5b7f5dbc4e107cb23b40ef5d554a3203451517ab79fa94128a29b77a11624c8f251fc566234b9419b63ec0cf6420ad54dd272"; }
{ locale = "pt-BR"; arch = "linux-i686"; sha512 = "e28c3b29cd98a86e95803c7bd94aab5e75b2e503238d07eb52b896fd10bce36323dcd5647955f1d0eaf6e412388c182dcc3e0d343df3bc9e5b5aa8b796ff4c10"; }
{ locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "bb07881bb3887eca2fc9f02f779fd8833dcc42a0b3a194e7e9354e39cf01ac28a9e5d9456eeb0e1f538912845b38253a08642a9f092d0dd805ce16d06f3b2d8e"; }
{ locale = "pt-PT"; arch = "linux-i686"; sha512 = "b80271f97cc1633be71fdaa45e30fda429aecda8c0fdce27beef058809c10fbe0619f3221c615605b7c9d50ddbc56dd5cb11b0d498fef1f0fc1c6c9a3178988d"; }
{ locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "2e3dd084f584f3a9515e927bf698c1e315e75d3ecd2b2d819dcfee15e1eed55b6c7255ce1040cc382aaada293ab40936366b9720620cbcab1eaff3e6490d9619"; }
{ locale = "rm"; arch = "linux-i686"; sha512 = "24a88a708e13798bd4fe4bb1ca6622b1b22e586a6839157bd48fa5d32428bcc7cc1e2c415b24aed388228d8544f64b06c4c5bfb85865795e2a2bd4518a9fc7c5"; }
{ locale = "rm"; arch = "linux-x86_64"; sha512 = "5a3ad81e9b469129ccf38658e393f3ba76ac4af0c98dcadb2d3d82dc23bcb917890d776be3259d5b513d5f5a6fda17bd2bf83838d7522bdc16a0f3a174ffeecd"; }
{ locale = "ro"; arch = "linux-i686"; sha512 = "504874d47e06b15025c58368057ae5de7aa70fdd7f60a332534acbb9bf78bea759887cb9d5ff9abead788191eead1ac4263043c52d9ee46a171739fdd2cdcb68"; }
{ locale = "ro"; arch = "linux-x86_64"; sha512 = "950962813b5ee0c7b5ab4fe5948a57cb72d4c8393181c943deb6629a4106fcf02b10f68127423d892bf97c0ed657eb2ae4536d7064a056367a562d0a24214d21"; }
{ locale = "ru"; arch = "linux-i686"; sha512 = "277a422c76af287213da3dba4ce5d39f482dc2c5d3d0bec437acb970de10f68905fbff18c2cc2f73a68bdf770e3ae3de7c4809175683b08f0c3c964fcf568031"; }
{ locale = "ru"; arch = "linux-x86_64"; sha512 = "98996dd94bead64b843c076f27cc79f9ccf43c41789299d4a7b71c5b7f5dc66c53fc1d5bb40bb74e50ee0b601bd8250223701125079fe04265b120841a6c07bf"; }
{ locale = "si"; arch = "linux-i686"; sha512 = "45bd3b23a6387aa6dc0919c763885a58c11e292ce6c492008cb41a89da654b36b43638a9af9dde9f66c6fc6dd7bf58e5f4e1a7224d52b22100c98d777f4ade1f"; }
{ locale = "si"; arch = "linux-x86_64"; sha512 = "f19242ad61048febbce7db34b5be4a018f90afefad79f17708987f17894ba363f11cff21bdc5b25dd133f0392374e5439f88de9706ea629badac6932f689c8a8"; }
{ locale = "sk"; arch = "linux-i686"; sha512 = "c5ad7b7a0380d18680446887e1345ae73ed831a194096f99994b5b0d9b2bca636d92979a110505898130d1a5f40d8cbf1317b869294f4ba18f1a20daed2646f0"; }
{ locale = "sk"; arch = "linux-x86_64"; sha512 = "30ec8e2d2d02f8d90f63fea5e1bd40ee0b6ec63bca2b903c227de461b9cce2c505e7197ade37513a9a417b0f4c2e6411db36e6d029b8a69dada4e7f43f426b83"; }
{ locale = "sl"; arch = "linux-i686"; sha512 = "6bc12807f07a9614041860a0d0dd811ee91c18ebf22302baf62c9d9efed70a17681c88b2843fe43fb40c69afa39d794743e6be344268bcab848f10ad93535a03"; }
{ locale = "sl"; arch = "linux-x86_64"; sha512 = "e269decbe5f1809f334999fd20f6a42c355edef0dfe94d205f48681ec713be9d9443d2bec4336eb899e6ec7613525dce10866105b629188ba18e38df18aa5e3c"; }
{ locale = "son"; arch = "linux-i686"; sha512 = "abcf9a5636d607c7ecab13b880283a44b9b22fde95705ed3125d83ccca5962df885b8b9c6563c983a99239a64db48115eaf070506feae0f5098a1fb5988a9cbe"; }
{ locale = "son"; arch = "linux-x86_64"; sha512 = "d35d7b7e3adf6be52b0a0df9aeceb1e2c7f11debd71bb0774aa3d049b12000a6c06df82500ef1c267f5db9a8bd29f3a6f937ab4fd020cfd68087f7ff1c3e6638"; }
{ locale = "sq"; arch = "linux-i686"; sha512 = "64061510d35d2c935d1644b2211b938aae9bb8908e0bbfad96706e82a1d18f2b7008c9eaf9538188de9c6ed4b19a32d50722c8df030f2eeb4470d90f682202a8"; }
{ locale = "sq"; arch = "linux-x86_64"; sha512 = "0d4a3cda3ee9691a5b60924c07eabd3a14f1679f83ca974ef294ebe347a078a95e29cd86a74e39b71a8c81ba2261a7aa694cef959068759b66b82622fe84035c"; }
{ locale = "sr"; arch = "linux-i686"; sha512 = "a3b51cb022a5944afa77a77916150bfd13b803d75389a5d459cc104a55418c709d846997886dc8d4e7b8a56d2e980b772048a23b0b790d28868db24eb30ba71a"; }
{ locale = "sr"; arch = "linux-x86_64"; sha512 = "dfde37d5efd379d7ef103792de62ad4f1974124357ddff85a7efad1f4aab82ce5e91746562bbce4a4a0c8ea291014b0a9d7ece17cf8bc77b0ce4a13b9b310161"; }
{ locale = "sv-SE"; arch = "linux-i686"; sha512 = "5b8b27d0bdf9bf755e1925aa709d2627aa4a40beca6a330b22345517b93cc7b27f83218111e9344505882b1f1e38c7de874147dbc9f8b378bf6dc328620e9a53"; }
{ locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "4a3461ada07583650f9b3a7ac159b190640e7f30274068d2c9c448aec2cffc4c41d3280c1598d8db2f114315e46b391f5b4f0307882400c1795db63eb5fb716f"; }
{ locale = "ta"; arch = "linux-i686"; sha512 = "8a57312955afdf8bbe1502ec669623abddf6b8252281d96009aecc86e9c0538d72c9f8469ed1206abee77f7ec3db58486523cbb6590844516af92ab596d74c1b"; }
{ locale = "ta"; arch = "linux-x86_64"; sha512 = "cd3910562d3bc34c83e6d0f896073077e49c1be696e5fb5357533726f9fc9f8ca002ad04aa118c9ab88fb09d73c6b9a8d537f00a6c1fb6c5534d2b39b8e923e8"; }
{ locale = "te"; arch = "linux-i686"; sha512 = "3c3baff91af1ad7f73e6f51994bd70b5499dfea53318318eb6cffc41e465b839980414a5d13a25652e2cf1a47c19f98c2866603911f135f2de1da44c376a2d76"; }
{ locale = "te"; arch = "linux-x86_64"; sha512 = "9e42cfc73b09e8508cf490095973fb46dbeb31dc245fe3c678418aca285adca83ed42622b33645fdada11354ed8388c11572cd34ccfe7b3ee8c4b4184f3c217e"; }
{ locale = "th"; arch = "linux-i686"; sha512 = "16b0c10f00bd326a3bb175979c58f4903e9e3167fa603cd13ee2294c44503acff2ab5a3aa13d9d9ecbbb529816c80a78df4a12ae114297082959cf3a33af39b8"; }
{ locale = "th"; arch = "linux-x86_64"; sha512 = "fdfdb7622a8e856b3c2f398f20caf1bbcd723fb874585d9c3a767d13b3f21d226f65dbe54960d3ea9c44cbe5cb92e7ab7e57fecc6182317825d7d3788700dcbc"; }
{ locale = "tr"; arch = "linux-i686"; sha512 = "2a847c3f882652c925a8421b3af7761400d1f94444b70ad7fd0f5645b769a9adaad7ae594bb8ddad30e1f39c0230db02c94097f1e86e6ba1913d0c6f104f4b38"; }
{ locale = "tr"; arch = "linux-x86_64"; sha512 = "86087814f8eb3fd2f534dedcd78b0aa34cf44b8820e640ff96df23f4170145ce122faa0fb00607bbefb515a5d64cdd025388a607d01b40a3c369a2b543568e29"; }
{ locale = "uk"; arch = "linux-i686"; sha512 = "12a27ca604205bff7914910ed4354b80422dcbcbccb07fc50b0ec34aabacac42cc105bd5fa049422a3dbaf549aba8c58c7b13bbf884a59fe62af04f47e747743"; }
{ locale = "uk"; arch = "linux-x86_64"; sha512 = "bde5e9a5f6ca31eabb71e8985c91b9e8dd75a3b053907d3b3dcc5f40b657208d867f49053fc89b19b6d8da889da97eece87c8d48fcf84434b3a878802ba4fd7b"; }
{ locale = "uz"; arch = "linux-i686"; sha512 = "4006a6fe98e5aa3ae4602be834bee3dff63fadf83f40469a077e60122469a177df78f5d172d9ee13c59070cbc19ab38ca3d2c4d332dc8a322af3950fe607de14"; }
{ locale = "uz"; arch = "linux-x86_64"; sha512 = "fdce9f14896de72ab7d56db328414096e57a40a27a161335f3655d3f492e3c654f3140d786b64a74622987171d7383ce32a3e739e292f5666eb9c39c54abc040"; }
{ locale = "vi"; arch = "linux-i686"; sha512 = "63a108ac72d82e42d088be0c732393c776d108881e6d33bbc3d561e3491f878c8d9850f34cec4db2e25f3a1346db3bda19d09bcde49a16a37c56af610ec1be95"; }
{ locale = "vi"; arch = "linux-x86_64"; sha512 = "85f3dade252822685486e4697f63b33423e2b45eeb3afdf48bb3ce32ce50f59f7d51d058595a2319049e6dc10fdf9dd95921508b4b6c1833951542d479c1dc39"; }
{ locale = "xh"; arch = "linux-i686"; sha512 = "42627ed1ce5fbf15c325083c472bcb6c96a4de163909ba1fbea1f9e55fdcdcefd44f9ccfa83988c9fc741fb23651cde7abd119cf6badf42bcbf7aade693a59a4"; }
{ locale = "xh"; arch = "linux-x86_64"; sha512 = "c615d0713b8e6e5bbec38617941d5ebe23d41e03cc68866387ca676c042432907b2f7a32845c4f32d4c198ef5f4eaae69b6fccbbc62e6970b5fc88223d70f998"; }
{ locale = "zh-CN"; arch = "linux-i686"; sha512 = "345f931bd3d0848296d08106b820858be8e747c0b88ce7246c9e64a4d80091c21b6c9471af56ddaf653c93895611def817b616a46222276f9c82159f9e5f52ad"; }
{ locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "8a47c1adefd06b85b8834b84159790fdc97cb077ff7990bd39843de99527713bae8d0f16e23c683f075aa55d27037d888aaab54010fffb83f3368e4e15be9358"; }
{ locale = "zh-TW"; arch = "linux-i686"; sha512 = "b46b59699fe729be3114306bbc9b4a884b1f6f763dd3010e569e0233509b58a06ff38657a0b364e2665ee477cac70417fefc991f6a127801f17b04e9062f63df"; }
{ locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "6df4202e93541bec3bf2c701b48720109baeb7ae3833f62eabf56b7e934a560151bf101d1ed1293f945a919e3d1bf6e7495ee00d6aa7a22ce8064aca4f0b3778"; }
{ locale = "ach"; arch = "linux-i686"; sha512 = "a5391e45d1e59a7c14d8d421286033e3e760bf2b4afddfec3d1767b2ebc957b053c39f17f8185a6c9ca2542c76f6c9612d95d474c01bd5ecc62e5d4f4e43e8df"; }
{ locale = "ach"; arch = "linux-x86_64"; sha512 = "48681328033b694adfc6149bd965a3dff90ef014db6f65641ddd3d79ba7901604623735555bad024dc2425f226c65e332a0875d6b18fe1c06b18a1e407b70294"; }
{ locale = "af"; arch = "linux-i686"; sha512 = "7757ba99ce9991f67a45d9a19615a93c0a1bf0e35d35c5fe653f04d47c068054c8d91327641a48cd20fb9531cd1e842066c0e6f2dd8b23bff216a9fc727ec84d"; }
{ locale = "af"; arch = "linux-x86_64"; sha512 = "7e3d70da29aeb5fc81f5e6dc52a4b8f831813f8c025b1a105df631cc5b675905c82dae842459ad30c5257b74bd5654e9aec5dcfcdee93eb42443c45cda81138e"; }
{ locale = "an"; arch = "linux-i686"; sha512 = "1051e1e3a6c25ba6b3aa4ce5adfdc60bcb3c612f3facd5edb702385ea8c0837cc53e95b064a424e0c055a56a11f3a54a7ba37e2ef35045c8cbb834aaec0f6327"; }
{ locale = "an"; arch = "linux-x86_64"; sha512 = "27fb75ce402c0d47f8542d3d6d6992587e6ea0caaba2249e763f0f9c4f1d233b37a4b87ebb7e730d16704c7d2abab690660e409e721850875fc09deb0c433252"; }
{ locale = "ar"; arch = "linux-i686"; sha512 = "296e23fff265bcc08ec0f81608d50428181163d216fd896c80a1a8c31e95f243112aeedf3bbd96b1efbaa1d6d576a9bfc75e5fe8df434cbb74bb9576f7d90a83"; }
{ locale = "ar"; arch = "linux-x86_64"; sha512 = "15f0e7cbf5a98ffa9d2d7befcb11938b76194dff29b1d93ddcbb8f5c655ef33659534874a72aea18f98af06e5fa4392aee5412582ef43292d70603dff2c42c60"; }
{ locale = "as"; arch = "linux-i686"; sha512 = "67883c8cb7ffb6c05288b316b2aa5bc3274372dd82ab4c771fcf1e5a968e550d12c89027440704d8479a906beeef24a18ca72ad243628a5ece45918ed990c793"; }
{ locale = "as"; arch = "linux-x86_64"; sha512 = "f7718b0dc9bcbfd109591f87263d7791dcd7612b0312d0bf93e68b1f2014d3732dc6740c57a8e64dfc1af7946da14dde617945e38842eb19cfe39376cb12ad44"; }
{ locale = "ast"; arch = "linux-i686"; sha512 = "f29b883932752bfa947c48f7c1ff6084b1cf215ea84cf63beaea808702b0b90f50e85aa4cefa4d2c1234b0d366c8f6e3d8fdf7a0f92d432cba790adab6d24174"; }
{ locale = "ast"; arch = "linux-x86_64"; sha512 = "8b656c6b08640c125b94f90e1dc8259c90af2e764cee73b02b9dc3c0246b3195906d9208bc2a6b3ca31091d8cdfca8338fa6c489b7caa5685a23133e98847a39"; }
{ locale = "az"; arch = "linux-i686"; sha512 = "5ee1247e37964274bbea8021c8e4e5116fedca95712fbd91d709c5c580bd1618c6319cae73278b2f0ba82031e94bd3fb382d2b4dcfc9a5d7ad47ecd80f4fca43"; }
{ locale = "az"; arch = "linux-x86_64"; sha512 = "c369046c29dd0dfcf40e69e1f5b5a63423833a376d2b143d3fbf2ee1e23dedb3baf24843ba1178bda94b86f357724898a147d4adfac1e469cbf44166d7ffd16c"; }
{ locale = "be"; arch = "linux-i686"; sha512 = "f8a1ab05b8d25a7a30e755a551f0851a308ba0720180685f6946a510363988717f8274ac2c8ef826c60232a62c394b86829d289e7d74e24b7656b55238129b15"; }
{ locale = "be"; arch = "linux-x86_64"; sha512 = "df05271371de5fa25ec11164eaac0b253bc892749d421a6ca730dfeceb4ef89492c42ce83a87eccbe91cb03ab001bf0a1d9a20a7296b69841cab8c6b5d2acc36"; }
{ locale = "bg"; arch = "linux-i686"; sha512 = "80644b86f9296b708e74843a51f81d368e3508f0f2f74de1a998d30a15f6e3af08ffd70dcc5c79adb76c03be9ff4713fc8403b8433cbc33ca3493941c4fb2fe0"; }
{ locale = "bg"; arch = "linux-x86_64"; sha512 = "0e6cdc5b3cc706031c95a550b0c800c9e8e2d7bf241010c22f0872eca4bab018a5f0d4a94abb4f8291c279476700f2101a69ac0c57ae79994fba38b88b00fddb"; }
{ locale = "bn-BD"; arch = "linux-i686"; sha512 = "4c697f1dcd68634e2ab712d4f2415e57cf8be0017fff3602223d8af19a1f3a5c973489d13951baaab95924fad42212a485fdff622d2b559be36e246c8a847b67"; }
{ locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "1931035a9d92dd9246a00b32443e282dc405096407a4feff7856125b7ee156840114c9be0dd58a020c250fa54c4ccb22052d2be291eeec9b5f76303fdf6c4cc5"; }
{ locale = "bn-IN"; arch = "linux-i686"; sha512 = "fbab6f7e4205c803a50990624d58aa80cfd3aa76fed02cbf9ea390f4ecdcc1a97bda9b51791cec49f2a7e1010109d5f81a1c9b6ac224f1f70df49407df5f7386"; }
{ locale = "bn-IN"; arch = "linux-x86_64"; sha512 = "c705ec8356796060c6782261086011bc0bf3ac9f08bc821ce2305c9aac11c522abb802a9d9ab7dcb53b0d38468bb6e667d45b187355d769acb43a8b252c4f400"; }
{ locale = "br"; arch = "linux-i686"; sha512 = "c58cd77139a0ae7f3bb8f6f25c40856aca18a831c8f5d6f5d59a45ec615420bd55205093fb66a77591835b0d9493f774b1801a168b9c071086d510a1446cc914"; }
{ locale = "br"; arch = "linux-x86_64"; sha512 = "b6bde26d478eac081007ef43a6d588f70dc4d54afc423b019468dc91bfcb117d3b4989c4cbb4cf77a1a11847a58ec74fbf822b6e6f0ef86fdb0065c301294850"; }
{ locale = "bs"; arch = "linux-i686"; sha512 = "16ee40d079996f42be77167b73645d389045648c9d36b76e34d0398c7b5b6dee54712d109f93d054236ac7076fc3edb06ee82acae40ad22825a23d92d0e2c636"; }
{ locale = "bs"; arch = "linux-x86_64"; sha512 = "ef674f409df5c32fe4584f9de65cc6558d6b3ec78d8a83f5cec829bc1ae09f30399567915e32584334704d12264c2592fecc9e4952beabc8b0d4eb49a7186854"; }
{ locale = "ca"; arch = "linux-i686"; sha512 = "fe522bd836c82cb68bb21ad1c7f36bd9a7af1642abf7c035e2d0999b4cc07c58124e4d8de81344598036159102ee12f22c12e44a8a087e54d6c661c3f453b63e"; }
{ locale = "ca"; arch = "linux-x86_64"; sha512 = "b618da984d35fbde3819d101c103d8d9a5a4de98f0e254c67e894656019ebb6adc56e14a57410a61430d9aa9c1e0a01339b39a5272164af372544f27329a1644"; }
{ locale = "cak"; arch = "linux-i686"; sha512 = "82659aa2fbd091224aef6800b3df1d2e5141b6a295918e4fc4ea09b671184f62c670e3dedd7040b2f167581b0c8a0e8799d861256b273b01b2455d0937722273"; }
{ locale = "cak"; arch = "linux-x86_64"; sha512 = "a507cff511c6337f805a27c0f73548342d2fb2cffa683874d66b054b844b17c354cc6da5c3d15618006c2279099b0cd9172b17d9d4b21a3863b5e395db686b22"; }
{ locale = "cs"; arch = "linux-i686"; sha512 = "9af91acffc2beeb53280a6cbd21656a91a686c03342fad90dd91314c49535acef1a8abac8fe54bcfc250ca8b8f07e3550c890094f3bcee6baece983cec68bd8a"; }
{ locale = "cs"; arch = "linux-x86_64"; sha512 = "c8bea48dc11c021fff9df5ee1a67a6b6e9193ffb2a07e17014d7448254d8a8f4d1512f862ea73bf84dc15b40edbba3fd94cd3d2d18872255bbfc7fa9a7b8ec29"; }
{ locale = "cy"; arch = "linux-i686"; sha512 = "7cc062c3b9b4bbfd0b1f7247f06505ae99458514b607d4d9062836085798bab7ade6c4d1c8903b1b961243c6fb6adb4c4f94780f1194f745cf62d786e2c4f5c6"; }
{ locale = "cy"; arch = "linux-x86_64"; sha512 = "abafa600b941e17f8aea0e778a937f5fb34cbc8803c93e59febc5d9fde6ad3347ba0bc7aa07ab57a61f6b9d6b11d582b987100364aa8401bca539dc6e14584e3"; }
{ locale = "da"; arch = "linux-i686"; sha512 = "d4a9141779f52b78a51b9682b6b44e5ccffdecf5582358ab8a02efe133d9a52023e03c238e106a79e41a8aeaabcc58e0757c1af66837768e7bf4732f26182915"; }
{ locale = "da"; arch = "linux-x86_64"; sha512 = "48f0c48aa273cec9830bf806330c7a630185262838007628acad904a45b3186450a8973938c36db636bdef9042c78ce94a4a456e1682ef561abaabab6ac20863"; }
{ locale = "de"; arch = "linux-i686"; sha512 = "01675b3a8ecfa10da1d101cba36295b226b130e1cdb2c760541cd76c9b21436ae84ca7228e063402b1ca2eb59acadcac7720c9dd47db8b406675fb273af206c6"; }
{ locale = "de"; arch = "linux-x86_64"; sha512 = "6a7ef802a8109f58504b2accb9ef0ee38986f6c8980e0831c30b470f2ee768169557cdbde1a58d7c72996b27596e553185ded476cecdd7114b75d82428b7846e"; }
{ locale = "dsb"; arch = "linux-i686"; sha512 = "55528fca4d276b2b0430949686845e3d7d88975129c9a9846408f758b4f9c8f154425db891e5c1930197e36137d6c15ba29de90dad624bad23090015849d0ab5"; }
{ locale = "dsb"; arch = "linux-x86_64"; sha512 = "f21c14a57f6f973be824340fcd417ce03765d5826114462f62adbd933661bccbfbe90b66935083619c62d48401c511830574ccc373ca2110093b06fad59734ff"; }
{ locale = "el"; arch = "linux-i686"; sha512 = "ac5a808db1ba68286a7199eef33794f7aeeafa26e97a20738fb21be479462bcaeb1e8a7995720d5c7dcaadd0cebe91bb2a3e019873d0cf74f42838f7d5c1a427"; }
{ locale = "el"; arch = "linux-x86_64"; sha512 = "c02e6587d99fc3ca66debe854c778a8b3dbf9b514e6ed74fa15e3035a54643b2bc324ff59f1705c6bd392c37ad1996f80dbabbb57df10aff954ed0ff3f5b01d5"; }
{ locale = "en-GB"; arch = "linux-i686"; sha512 = "c458c70db0408d627a904781adc9af18011f243689f4c5a606c8f1508b4e9417a8df499673c4ba56d32ea77d0f79ab85ff88852f7c518e7fd124e5970615b2f9"; }
{ locale = "en-GB"; arch = "linux-x86_64"; sha512 = "28ccaebc4f7613d7ea8c3b47504923f2d59bdf4afd6e386a67dcb6b6923a9374c1c783e4f904da0b6e0f716ec87a046fc12f3781b732389d1d680745d6955c58"; }
{ locale = "en-US"; arch = "linux-i686"; sha512 = "e1ea34bd0829656c04c471b66d2013fc07cbd5cf40b47bf3a932326cca71f9a502c52d1d5e6dd902d274d307079475b0e75d7ff552fcb2fadf31b2883efba79e"; }
{ locale = "en-US"; arch = "linux-x86_64"; sha512 = "a56b2ad26df424f008d96968a4e6a10406694b33f42d962f19dff1a0bcdf261bca5dd0e5c6f3af32d892c3268da5ebee8ce182090f04f8480d37d232ccd23b9f"; }
{ locale = "en-ZA"; arch = "linux-i686"; sha512 = "d5efc3d4e624f34c81df068f4d6c184cb8a63ad0667695e9ce7099e069b23715eb77cf2004adee41bf355452179959e5ef7450f167f87be70339abb4cf70844a"; }
{ locale = "en-ZA"; arch = "linux-x86_64"; sha512 = "859730132549691b61e936813f0f5fd3e62f3ef6fa9899e3f68bd3178b7438b4c6b49f54f00d4898b568d6abccdd55a0f9fc6c51858e95735fefcc13de460d73"; }
{ locale = "eo"; arch = "linux-i686"; sha512 = "8ef290bf1eb3504ace393b32c2da64d14435edc327c4f13a40cd925efaf7e042a03b6877689b3f2290f85625410a4e48dfb2cf676f138fdba87ffc597b25f4b6"; }
{ locale = "eo"; arch = "linux-x86_64"; sha512 = "7d6167749d2a57a9c12180302a825fee14555e9050b6be3c83dd35183678bc36e10391cedcc864ca0dd96d297997a68627dc4fc1a9cd8922e789dcfa814f18eb"; }
{ locale = "es-AR"; arch = "linux-i686"; sha512 = "07768e3b3ed903f4327881a132f192a65842a376eeca6d10ec0de69fefb4ddf3d7fee2a704bbc8d229c78556478814d9e53940cca9edee58270d9790d6b76998"; }
{ locale = "es-AR"; arch = "linux-x86_64"; sha512 = "cac021af09abd742273dc77291fb1528dd5d6d38cef3a5e36e615fbb9f3908655fdc96ceb93fd131c4879acf24e702a044471136e7575f3b550ebcecd982047e"; }
{ locale = "es-CL"; arch = "linux-i686"; sha512 = "e92ce6bec5b1ee8cf3db0a604eb4cae6245fb6d04a48eec64b6dd55139f3606cbbcb65511e29a3164d6572929b7216afbaa7f034a2191eba100ecb7403740504"; }
{ locale = "es-CL"; arch = "linux-x86_64"; sha512 = "98e57146481a53061c0b30872290ecabc2d14c73805a9461d82aaaf4cf9f301521fd55b01c8159c09a56f52a1580d83c9527986b1390f496d0fbd11227216e7f"; }
{ locale = "es-ES"; arch = "linux-i686"; sha512 = "c44df66e140ea9190112f89aedff9519b6bee18f5e2b54aea19acd233e623c299aecf134cdba70d366fcaf6b7795d220052ff75409c7a04394a7aa02d9ea708e"; }
{ locale = "es-ES"; arch = "linux-x86_64"; sha512 = "c2d70bc5a304df7b2484c8fb2b374f8e31a69049eb223a53dbd0e4b51e4ccce907efb1674eb637370ce7c3947ba5c09e65f433d10e0f328b80d482f3de9cae12"; }
{ locale = "es-MX"; arch = "linux-i686"; sha512 = "96dcb75cffeb85b85f092e295e38ee55c272714c40609ca90cfaac5fa0cfdb3efe8e993319ee690b4a7938c42346bf39f063ab1f3db606e743c1e4720de5a93f"; }
{ locale = "es-MX"; arch = "linux-x86_64"; sha512 = "60b50d6726b2e1985564bc02263eb88c9b4c1bb39e6d19812ecc6751d6ad223ba04f65a7755a946fb15dceab90628b057bda89c55fdd4972604586f52c5a4b1c"; }
{ locale = "et"; arch = "linux-i686"; sha512 = "0a4bef2277f729c93db413b68f8263eb356f7b3278880574b8ebe010e2db9067b803967e1f0d6912f128a9ad5ef204466f52ae277f3addfb8fe9ac377c3b8a3a"; }
{ locale = "et"; arch = "linux-x86_64"; sha512 = "ed1bd4fd67262958601f1107edc589bb28e9b7f9faf0edebdcaf0c07ec6007f527a9eab434582a65271a8f68edac8178601da54eab9398f48b31126657a21b0b"; }
{ locale = "eu"; arch = "linux-i686"; sha512 = "8c5c9406345e2a1fca3544aeb742dc0d254c804d887e3614613280c050a63b69320d4488b017ee16b0a2a07bea862e8b245baf7edc9df65689d509986f3c5958"; }
{ locale = "eu"; arch = "linux-x86_64"; sha512 = "d8f7004e24033f377391b577c549b66f73cf0e899ce5f580eaccd07713ec03b4362db7b222ce6345d113641d3e6a951302939bbb155c47ec0fa46a201a631427"; }
{ locale = "fa"; arch = "linux-i686"; sha512 = "f4e02737e20b6ffd3bc2b3a5e5fa59fc80a8e37dc8459ad4a6b99e7621a4d3f360884915f7136dc201830efe371de37977ef3e27f34f84e2cb734c1fff8f6e36"; }
{ locale = "fa"; arch = "linux-x86_64"; sha512 = "8f624b066faa39341b750dbb702dd60ee6ad75b3850c659dac2e21969ebed1f792423e9fb0a9cae7fc456943020f9a0155af5d7c596433eedaaa9990ce07b7d4"; }
{ locale = "ff"; arch = "linux-i686"; sha512 = "22a2c5376b1e8d770659475085d98ac1f1020cd816ff3ec6ccfcd68f2484b1b0dc25bb84ca52f4ad27144f4da356ce5e7fd54411d12ae7c852064509470d5828"; }
{ locale = "ff"; arch = "linux-x86_64"; sha512 = "bcb3dabc250045b8ad444219055fd9d14902296ef3f9c320bec1bef940f84eeb0d4a50249805188ae96ed0288a70f0216350ee79191beba49aeba890ae515b41"; }
{ locale = "fi"; arch = "linux-i686"; sha512 = "0c505a0e1d3030038b61ea159eece3892bcc7d947b6d7010c0be8791525c9d91ad1170d4cb45260584c93a78a4bc831b7acd9f28e95ae62e5b96b31745dcbe50"; }
{ locale = "fi"; arch = "linux-x86_64"; sha512 = "f347cde005c6b61366c633db5a8cbc5260dfa0d68230a938d847e3f80bff2f1bed09dddded7b1728f4ef9525610ecd046743f9e71eefb467943fe6b72ed198ca"; }
{ locale = "fr"; arch = "linux-i686"; sha512 = "8fb8ea2eab82740657a6b822b330fa0c289c31ad900683b4ad07b1e9b0c6c4e14f50af39d6d0f787642010628800b0a99b5ab0c4cad62e4a579390509b1ddd13"; }
{ locale = "fr"; arch = "linux-x86_64"; sha512 = "ae79c5b7f9f8305c3631f4f913baa341a9beaa7a2ee5df1c6c1826030c21bf22b92095ee579affb8911110bf3bcc359793c0beca18d4c32b1fcc1f3d1dbcc4b9"; }
{ locale = "fy-NL"; arch = "linux-i686"; sha512 = "1c57d02fdc33ff53de48ed9aa9e89ecd5a56d35b432d5651e71bbfbd5f9dfd18aeaf14d10b881f72df871afd00a12b31ff05cf9d5c5a55cd44a92c7a0156523d"; }
{ locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "f30f59d630c5d289b61dc7440f7bbb976eb16732370f827365a477090cdf9f2859f39afb7ff9d9be7e8a022f181f2aeb7a3005c00f4c14e6505a28db7ae48a9a"; }
{ locale = "ga-IE"; arch = "linux-i686"; sha512 = "739d5feec4bffee67876227f6783d35675f4c0d168b7abbe5f97b6e8edce7fe4b8f04f8240087f7f208db4180f3417997b661c93ebe046decff3f4f4fecac839"; }
{ locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "cb4344df6e07db839ce8c9fffd1b7b310c8108b5218cea3602972806c1a40f56bf1355ede4cb3595f54179b16e3470e25bfbddc8e39d726c7d6c1e99d128ca8b"; }
{ locale = "gd"; arch = "linux-i686"; sha512 = "91004d62bb5f1f6a1d65b35fee9e594d21d9877669e042cb4c9a834b01b35797363e1433a9ce5a8d0a9f64c8b256da6a6d09fa3342b74b7c2af8ce8afb3e4e56"; }
{ locale = "gd"; arch = "linux-x86_64"; sha512 = "f04034cafed25c34713ffe4109e53b107b8fe81321c0c0c035f54ff0ce67ac393b42db7598edc658d3f026e447f9ff1c4d1cfdedd31066eefb6019117248e4c0"; }
{ locale = "gl"; arch = "linux-i686"; sha512 = "107bdebb92ce86f39cdc45d6bb24a9c4d104820eca6bb77950693ccbd55e7f8a2f143fc3a5bbb1bfda161e7a33c8f6d8d2686b09da1497215defbca2b4e4e109"; }
{ locale = "gl"; arch = "linux-x86_64"; sha512 = "c841af5c73343475150b5404b4b54396bda845aa5b231a742aa17ecb7fdbbc5cd4123efc3ac2ede1c24f485d04bd87e8bf7cb00b7135bef236ce56afa0c27a19"; }
{ locale = "gn"; arch = "linux-i686"; sha512 = "20954e218967772488bd895ebf069522c3f4c56ebfa09a7c8efb740158cb95b6be76cee8f4d7f2c1c6c505ca9071a0ddc1914784a54f669d337d5196f18b6f4a"; }
{ locale = "gn"; arch = "linux-x86_64"; sha512 = "aaed68f13e326792671669883b452b65556998ed757ed5b745c6453d6bae8865a06f137709de37ace2688e2e09f1b96ecf2e5b6374b4170d29100c6f83ce22ce"; }
{ locale = "gu-IN"; arch = "linux-i686"; sha512 = "205093ecc0dfcddb2b90e05b1a17f75805a4597bbfad214d67442fd0d952f765b031ba63a3c399ba9c1c46e4d05b3cf786f01c46eb8990240a16431964c93a94"; }
{ locale = "gu-IN"; arch = "linux-x86_64"; sha512 = "a84ec5015f6922a22a284eaca985010586067370d818e77d401b58782f86dcf2f534f1ef021719c170f1f502525ce25c94760d3b75481c15fade3c25b969b563"; }
{ locale = "he"; arch = "linux-i686"; sha512 = "5727fc4699316c4b34be1c2596c5cc20d5fc9d2062b1e106087cdb34b788fe3ebbc098acc8c690bc83c9d9be59ac3b3977fd9116d766ce908aa088660fe34771"; }
{ locale = "he"; arch = "linux-x86_64"; sha512 = "c399969bc24b10ca1c1eff17d3414f214cfe3e5b73282942ead5b2ba4d2c58b74d665b13031ccf42956cd45f0fc7b206dd2f9674103c1e3a8861a33577b5caa7"; }
{ locale = "hi-IN"; arch = "linux-i686"; sha512 = "f014c47a143d425aa3452be2bbed199a8b5e75d278c35fa86bb6bcac40bfb32bdee22d030386c881c818b465451b35c81f97bf29f9ccfbea606d52c822057899"; }
{ locale = "hi-IN"; arch = "linux-x86_64"; sha512 = "0e5dc0970680886dc02448d7118b6864092699fe44f3276ca17cba160aee59418f8e39338247897b118de0e1fb7634cf725ddc6a34a8b6f002b7a78d92deffb0"; }
{ locale = "hr"; arch = "linux-i686"; sha512 = "a9af43f6cf6f493f728b8942d3a600f3cb3a23eb0818d284ddabb8766f7d274aa0a232f9925b65625bb56d00864946dc6b0567491cbecdd6a7cf626b6964d9b1"; }
{ locale = "hr"; arch = "linux-x86_64"; sha512 = "d97951148ca0ba80a67020f323859ea3f508e40906ecfd18f7a8fbe7a2bc85ea4635945b5c6063e1d5d18456471604075e6767da9a4fda6a09dd3e992a7d3a88"; }
{ locale = "hsb"; arch = "linux-i686"; sha512 = "2f7adccdc894f345e861b29a6d65909b1cde2649c69ec9223f784e659e8e3f4668f815b3683fe691de0749483167d26885a0199bee88e8524377c7eee3afbe99"; }
{ locale = "hsb"; arch = "linux-x86_64"; sha512 = "70e39341ede01e18c653a0eb56b48e31c73ee3df54ebc11bcd220e2d8e19c67c3e248095c4d070b12a0eac5c24acf5a8ad83069673dcaa684229f4706103685e"; }
{ locale = "hu"; arch = "linux-i686"; sha512 = "1fc01c6dd873e2194e6196b1bdb0246e95d0b0520f558b21a2052251d2a5202141c09410c4631b3f025479169d8f68411c2a24f32825261fa8d65696fc7cbe0f"; }
{ locale = "hu"; arch = "linux-x86_64"; sha512 = "b4509d671d7eac055812add85ae571f52c90b4eeb172d21c22ce844c70192ba235f37a732e94a0edd6794ecd5a8caa5e8bb6ce05a26d3705902d3628420af871"; }
{ locale = "hy-AM"; arch = "linux-i686"; sha512 = "a2b7cd1ec95a0b5eb064e816cfcfc6a74a92806772592947267c4b266bf7ce77d1beb17a7c25b905251cf497ca8dfabf16bca367cf6d9e9e635182f306bd71ca"; }
{ locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "9997ca45051e609e289d7730caf1254adacefbf8e618a165750d5bb7ff7933d014781af76501296c89a4236fd3ac477df6e6be5a5dd45f214983c851a856ce5a"; }
{ locale = "id"; arch = "linux-i686"; sha512 = "bda5a7c599885bef966daa35a3f34297e38534e32967142ff9cc720a34c7aa9730e3f24623c240637838eca03f78f9b2ee30af3ac3dc8ba48f9664c56b64c789"; }
{ locale = "id"; arch = "linux-x86_64"; sha512 = "97d16c5b4382c7fc6ccee416d671e47d345834a44ab111aa486a41c756b25eb894628d0128e8454fc15f38937bc40436b12e60752ce7b7c1fe35a230abaca337"; }
{ locale = "is"; arch = "linux-i686"; sha512 = "576b904fb836ea735f652c6b9c91891dee164edd3523c5f99d68cccb4bd6689c29e4c579b6cc44e699a8900101fb8d223f9e0b0860f71a2814ae0ee2c70609e5"; }
{ locale = "is"; arch = "linux-x86_64"; sha512 = "592d65977c34c6133f5745a85722f822efa5956bafc6e880954a0b318fa59712c754e882768755fc08f5e08a1c99493c0b30b4219c46169ba663258e3fd3f3fc"; }
{ locale = "it"; arch = "linux-i686"; sha512 = "4d749e1b5d8432df789f29a247ab48a688d4aa16fb25dcf7209783c6036bfccb9ff8ac32dcd09dab1708f71896fa034576d6048eef077d1a6c0a3dc58d3cdb26"; }
{ locale = "it"; arch = "linux-x86_64"; sha512 = "087c456d691225d9aef54b2013af69cc7bf2501f83060179112e9c40c1d6762202f68e6329a936df091a1ae6aa5f20bcc96a4c8b0451b71270426bddfb45d15c"; }
{ locale = "ja"; arch = "linux-i686"; sha512 = "cb4b0bbff7d322f2f04fdaa50b365d4e0a1ff1786206539cd124870ebd69a9305b88d39b9fbed41c64ddbe68098e02c51a0dc665262424f8eff882b1497ea1fd"; }
{ locale = "ja"; arch = "linux-x86_64"; sha512 = "b6c9b419a3e746957f93a4bdba9043adc3911b6f76e1eea2e4e31e77e9aa9057ce720205db4af5586a90df4d6b774b90829f1d7689e77c560c50ccae755400b9"; }
{ locale = "kk"; arch = "linux-i686"; sha512 = "ae7711d86ce8180997f44f9309a63a436bd8b70ed0dccda773c34ba816daae99b3b1ae913ee87f4d1f9a4e8f016aea670e89652823df16b5e8414bb58ac28225"; }
{ locale = "kk"; arch = "linux-x86_64"; sha512 = "49fb6b5ab6aa12535373927519bf36099da6fab7c2e1bcd6f5ce73d91679f58e81eddd3556df65b305fc2d1cd439cf6de081980fa98ff79df16b620ed41290fd"; }
{ locale = "km"; arch = "linux-i686"; sha512 = "29dd1808c1430c01dbb395d5e5a833bfbde85453278d4efd32f1afa1eac19a651c0c3a42eb4ba3402f56a8492e80746d753986c0ec0f1a6dc0e5eb6778b5c6ae"; }
{ locale = "km"; arch = "linux-x86_64"; sha512 = "f53966aed30b57a601152f09a26414e11bff4ff31683989eb1e47546eaa32fce8cbb6511043f9753cae076d23d6f2172c2b224313cf5f3262f109b49119175e5"; }
{ locale = "kn"; arch = "linux-i686"; sha512 = "17dc37df2b3d5a87bbadc4d5c80d4ddff03752b7a80f5c76171ce9f0bc4b8926964b6315cd4f0c6c9dd3142cec56b464503bde34ec3c69e2b8a66ddcae72b0ec"; }
{ locale = "kn"; arch = "linux-x86_64"; sha512 = "2af5ac5c254bd0ed2d08656a6fee7966d73aa89973cfad67fd18d7d88fd1f18a2b882de7854af46a3ebc6acba4cceacc06942db7ae495faa2c6ef21c65e94158"; }
{ locale = "ko"; arch = "linux-i686"; sha512 = "415fc260f3dcc2ede6c43194501d9522fdfb106f7c86e5d8f5929df6615c73023fffc3efd190deb68bf08bb2a0d4ab34f7605e222301c8350b980f2dbc289c8a"; }
{ locale = "ko"; arch = "linux-x86_64"; sha512 = "c991c0b9a89b618ac046882b929fd7e3689e19dd96edf4535b25f9172b6baaa801a4490ae4fd35e82ca3c776afab74a0a09b993f8ae8c2a603d210f2cf248f73"; }
{ locale = "lij"; arch = "linux-i686"; sha512 = "3cd367654397d14b782cea4ef8c96f1f6938f011576a8dba92dd4ca832ca3c8682f3e0e161a4288b112fca550d556080d0ece5a79e4c4f6ec99a9298feb6fa12"; }
{ locale = "lij"; arch = "linux-x86_64"; sha512 = "2d7475c544df807a956feb9361f889ba0f5e43dc52a9e1dc9c469d86e97f344b4f2995e3fa149a77662969f3acbcc998f430973b2b9d28b23c82c5058b4a9dfc"; }
{ locale = "lt"; arch = "linux-i686"; sha512 = "35c8a452ca845576739d5faa9dab6f3c34dcecf9ce95870f68699836f3534b4807c91fbe80007950abbbca662e6d01b406205b3e4cdf4d33e0717ea5d6f57006"; }
{ locale = "lt"; arch = "linux-x86_64"; sha512 = "8791df09d841d5ddabd552d0fb0dc7e9446d23092bae1010d92bc3b056a9ad4a6dad01c5d8db531a273945eaaf4c30c922cd03d7b17e1b6be263e0bcb91b8384"; }
{ locale = "lv"; arch = "linux-i686"; sha512 = "22b865a344a46096c53a72ff6b1402d00808bb3b49ecabe6f4115ea60e40e522d64afc701648772616fcb784a963bc6d5bb3f89517d7f8407f22fa82d81bad98"; }
{ locale = "lv"; arch = "linux-x86_64"; sha512 = "3c66af306b1a8d0a684c12511d95353c0bdda0bea981ce4e577c928be03e12b582b19dcaccdccec551b3cb0fb716323b1079180aa7a8f1204f5e4b5a84b72831"; }
{ locale = "mai"; arch = "linux-i686"; sha512 = "780fe423a3cd56a7452df32679ee07a0e328b21cadc78faa2721cec59185c4a4467aeeb75e9237cc86d38dfa2cd71530f02156c4fb9515582ca564dd53d47543"; }
{ locale = "mai"; arch = "linux-x86_64"; sha512 = "d27218b59edf004dc57cfa9ffd70dbeb59b7d3c0871b00388a56b505629fd82ddd6f6e0147f5b4c67a8ad72a674e384b66ba2f9455fa9ff218c9ada4b27d1d7d"; }
{ locale = "mk"; arch = "linux-i686"; sha512 = "da7ae3718f3c69ec9b62aaaea93951375d82d8d02818d6855fa9f085a64b69c155a1336585d786ae2d33d657110b787f62909dc9e4d54c62d2ea94d2fa8fee3e"; }
{ locale = "mk"; arch = "linux-x86_64"; sha512 = "95136f8bf86014a63bcbf4a5cfbd778c4c7e6a84618aa0f6a6948bb597638569b3702e0569b50c5dc9b46339e723377faea8964b921ae9802043fb7983a2c4e4"; }
{ locale = "ml"; arch = "linux-i686"; sha512 = "56743acb54283715fb2a910caa85dda61f7e2c1c5e012aa222dc07e3b522572500056fddf990b7ef03a175ff8901fb11b113bcad5c2adf4a6e6e032644ccca2f"; }
{ locale = "ml"; arch = "linux-x86_64"; sha512 = "134f35f5f6616c2a7eec48f637277fc02e23b57bf38eccff9777bb08c70a41fe79967b69567f75f9c8bcbad4b22d2ddaf16bec98e399c4b8ca9db9b70e99ef58"; }
{ locale = "mr"; arch = "linux-i686"; sha512 = "f29de7ae7dba03465baf86f93d778c9faf3055d50295977c0207c7e4daae6f7ad733ed38e1323263cebe4f737d9a1616024333a97139156470de1a9fe3c16276"; }
{ locale = "mr"; arch = "linux-x86_64"; sha512 = "731b4f143fd1303ab54ea3f1b6aca6c4f78ce935caae32fed0b8cdcd46c0ade8c8977131a3be786ea929a7d284c3d45d34851a0d81242761f722f0bceb126957"; }
{ locale = "ms"; arch = "linux-i686"; sha512 = "d372bac105f2012b189efedc449c7c183d0daf64cd7a40822ef9d685ce4a1550ca9699620440dd198b13f95513a577766e9f1a8e88b212492831bf7ffcac7e0a"; }
{ locale = "ms"; arch = "linux-x86_64"; sha512 = "1287f36a742fa834d5f31e6bc2f6d3651e54f2bc8845a1f0f647e9a9e38ba66c58138961185897c8832107cffff06167a35dc3ee1f0ff830f997f65fb0854a63"; }
{ locale = "nb-NO"; arch = "linux-i686"; sha512 = "ac3e46080e188e56a6b67ff77aeffdba7982d7c3aa4156a6f2781ef6b8fe63cac50d678e5afc91aca4ad16c4384d2b2727f74ddc4083da91a1e3590ac98ec9d2"; }
{ locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "dca52381e45b5c2d89f590971d830010a9ec1a2a513fe655ee93c3fbd980adcea78787701595a95402bdb660c2f3e0a489e001deba13798337493655798c713a"; }
{ locale = "nl"; arch = "linux-i686"; sha512 = "6ec01f8eb18384aadb5715a996c8410ffa94b801ee1f1b1ab43bdeb492e179e781e8b85acbeff4a25cb4fef847ce3e2335968458d9f6e47d046083264e91f6f7"; }
{ locale = "nl"; arch = "linux-x86_64"; sha512 = "7d5840518312dd167d914a8f7fa5670fe17f9a6fc39ccd128e30f689005b35bd352d0602993713c3d05288f2b036829be8e08398d536e4aebf2341ae2290e633"; }
{ locale = "nn-NO"; arch = "linux-i686"; sha512 = "a185f7592649a91214363cf2a0474b5895f33342c98cd4bdc48fafb0cc76310b2ba4f46575970d723c76b2ecfeba8e2b39d9671e6059a15bcb2565258096156c"; }
{ locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "7f8e7277bcbfbe5f40c161f1ebbeed86159c2b6205a5ea55cd8b6253fa6742bcfede11d4de6c1aba36e2b1e98f9c9a7b8e26f9aa35e1eaadc1d011636d429be3"; }
{ locale = "or"; arch = "linux-i686"; sha512 = "a543a7d3f4e24364be7e4df65a81da82d955d1268a4cbce741ad7ddd5f4e9916573e271f02af1e92b123a4da2c7f312c17f6ce714e3057a1b204484ef12133d8"; }
{ locale = "or"; arch = "linux-x86_64"; sha512 = "7672596470cd8f49f9c4558b05bd637af1650da729bc518681a8cde3ec785358121fa7ef209e123fca4b59df1a63878832bc32d2ff404b5d2a818b60ba10c15e"; }
{ locale = "pa-IN"; arch = "linux-i686"; sha512 = "a99b60ae1eb479e31f838fd41d5de325c418762fdcfa5e0f3bc3d5da8df108d3b64ce5bfac0af09663007becf5327164db8dea0ea7a3876586cc43030a780199"; }
{ locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "f0110b74842f924808f74979061151fec711d10a6005d2da2fbb8d46fa2a25ecd5a2c804e58c10a918efe570d4d67d05578b0245f526e1aede4bbc786e9f304e"; }
{ locale = "pl"; arch = "linux-i686"; sha512 = "7eaa2bad351429d76b476819a1529ed1609388968327382cc13df235a294f2e9fb14295341ff15fe3b2815ffd1c6c8978e2aa104a847fd2cb4adcf2ae3b0b974"; }
{ locale = "pl"; arch = "linux-x86_64"; sha512 = "a40e2c15cff0e7f7bff8a5c0bc4cf39df948a21bd37b34ffc93dd87e1f5256526a25526e457fcfd8d081bc872dc1bec13e67da3cf671b6a16dfa17850be4743c"; }
{ locale = "pt-BR"; arch = "linux-i686"; sha512 = "c9cd96e68fa2e1f73a49e71c287a25be8d45a8ebb56262e02c40ba5869fc58c7fc43a1f6958592bb377e7dd4064d64f5ebcbcb5cd3a9fe0a007c2da665f50a66"; }
{ locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "1184751c1d1a0a9044f8df2d20aee7dfe332dc5f851802ebaf2c5c83fa2bcccfd913cb6e16d2baa449cff1b02aa18f828489914c0741a2ef2a46d54fefecc268"; }
{ locale = "pt-PT"; arch = "linux-i686"; sha512 = "86538057ae91b1297acc11c9bf3f7d24ba1950edead89d4733f7c898cf53e3848054bf391a975f19766b69f4c56f576ca54e4b8da806db7416f3e3d91777c3c3"; }
{ locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "0a480c26e5dfe2bb9b536e122ae32e18a6dac999004493839cb506c1ad615e095c554d296f1a77bfccbbb86b58bcf549db83f7de51d02b68d1eb752b421f23cc"; }
{ locale = "rm"; arch = "linux-i686"; sha512 = "751ffe931cd60296490c7164f49f61f4a51bac5210328a18d02261a07eb607e181b2bab4fa0b59d2df15334152386bf816a984840d2331b7e801171be9c90594"; }
{ locale = "rm"; arch = "linux-x86_64"; sha512 = "3e526c9a1a876e5d2c548c9a68803dd11c04c8214e18eb09c0b1c3fb3833f64c8a3362db8083ac5de81c59268439b53effa3bf1c64807fafc874eb8ed9baf188"; }
{ locale = "ro"; arch = "linux-i686"; sha512 = "73cf6a18deafb7ba93fd60cba3ba0bb0191471f977c41bac11bf2fd6cc6f7fd7cf2ad125ac5cf168ef577d71dfb0e893e182f39be6ad186ddc642d87c40041a5"; }
{ locale = "ro"; arch = "linux-x86_64"; sha512 = "b62c54b8694b4a662c1d336056d404a8d432ba0a3d4f2964b5c5acc0e39b668fd228105e1c4e307bfab1acfa5c3ce223db4229df01866cdbbc7c1ac95e70fe2c"; }
{ locale = "ru"; arch = "linux-i686"; sha512 = "6ebd3b3a1f3613905313129cde7cf113bdd777fd0f600496231ba813a95b04309b25016dd69891d31189a93ccad3f87b9c69d54d6219ad39dd38d1181b1f3102"; }
{ locale = "ru"; arch = "linux-x86_64"; sha512 = "539a22d13587cdcc21b6f76ff24ccfd1df98cbaaacac802aed46ba8f2bfed27cb2f3e5c146cbd2c3559aaff22297e692030b9612041a05a6bfca08f49bf0d2fb"; }
{ locale = "si"; arch = "linux-i686"; sha512 = "bb0d1621f5b9af886fca0ea7cf7fd851d7c22d2d8f279a7b88e9bce98be33ad7b75d6a51ab47ea859802ed39b467815db60409285afaa0bbf4bb1ce6d590eabc"; }
{ locale = "si"; arch = "linux-x86_64"; sha512 = "90337d193df7db41a1384856938bb62212952a80144dcc319a725a9b567ffd4deb7bb7af89b57891d3c17499ff466990e656edf7d0b017b8f4e0370aab445477"; }
{ locale = "sk"; arch = "linux-i686"; sha512 = "23a15e6ad5ce9b03c218be4e26e603a412de4d870d5f64b599ae511bfc66bf2cf04613cc06fc1a054d06b80435e284456c0b08e33f34d8c9482f5ca23da6ae62"; }
{ locale = "sk"; arch = "linux-x86_64"; sha512 = "a86cbed60f65e4ebb36c614d846fbb2515945112fd4f2482c3a63b49a62c3acb310f050dcbd57cc76a808c049eefd8f779d6aeea53362dd81798bb8d7177c86a"; }
{ locale = "sl"; arch = "linux-i686"; sha512 = "8ae008f0077081ef40de3bf08c2de294231f41439a83d8a41a485f53e95ba3f4fc6ef03d6ac98e8848c3f3dad290978f1607d8c847f1622bd86b7d38cd0be730"; }
{ locale = "sl"; arch = "linux-x86_64"; sha512 = "34efb560c65329c7f3f6b341cc49ac4952f24e6e9b34e7f5bd45d98618a4d03ac89c6f62580223efd2d37db24a03f76a54381d4162f5430b887122bb56eb49d9"; }
{ locale = "son"; arch = "linux-i686"; sha512 = "d3e5a25fbc4a786239a7ae543fefb7b7e3ecc34192c8326af915f18b9b08436656bf68faa4953a34bdc464e32305baecce800f91ef0152bb4b4a8323ab448f33"; }
{ locale = "son"; arch = "linux-x86_64"; sha512 = "ffee5d1a23e91911fd1dedb5ecf24bfc6b1733fb582e64a5e07d4df4b7afd9a6c502a70ab3af6624b4594f5ddcd81bc8962ede5b693cc035a96a561389f6bfca"; }
{ locale = "sq"; arch = "linux-i686"; sha512 = "1cbaf8c32d1d3205cd85127839eed11b416903960c9e411b9adc71c42ba4add47acddd32a9217bb68f27b90d6765892edf2d356e21235c5bfd5cf69d1ee719f9"; }
{ locale = "sq"; arch = "linux-x86_64"; sha512 = "16d93961a53ecc3e1ae3480be9e34f2a22dec2bdab55dbd35d1ea79ecf2ee48f195380bd52efc7d39529601610793b75daadeeb54dd76c9a3702c786af25acdd"; }
{ locale = "sr"; arch = "linux-i686"; sha512 = "0b2c5234f1787cd972fad398dc270766fbc3015dc1bba29755e5316f207af9f5787d4aa41e96cffd2c9d31c57a5d1896e63fcd04e6235a4a6798469e738fa10d"; }
{ locale = "sr"; arch = "linux-x86_64"; sha512 = "e7c7e7ff7fd81ca86f45997faed7244e4d807c3e5ad7ed66d6feb38c3e9173eaf136bd34af690ce28534f0c531c7f1d11595ec6502dfa42778cc19dee4334c49"; }
{ locale = "sv-SE"; arch = "linux-i686"; sha512 = "dffb94b0ddb4b9d2effba3894b408c9f191f2079dc4b47e214347a235c9bf1adf77e520465691d14a274c3f3344c7f8b7d41965051d506728347e0af1117ad27"; }
{ locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "b601906d28f071c6beb3dbd6b37fa68f50809c9c47c9db69d631127ccc7b784e7d3b278aea6de060b34d83b6c78137da32b77f8e17ed199c3213b89dd9391264"; }
{ locale = "ta"; arch = "linux-i686"; sha512 = "1a496470ef8e0899bfce66b41490f54d4d32776eaf60aca8725c4732512f1d3befb2e1fc3b942ebea95fe2359509c43d41649e5f90498264b8e02a3352244260"; }
{ locale = "ta"; arch = "linux-x86_64"; sha512 = "00e6dbc43ad3c77693903fe534722094826637698df691b266eb801b27cd5e63502c21ca3e34ff939a7645a1f75d36fce6154626019eb96bc73cc39ab845c952"; }
{ locale = "te"; arch = "linux-i686"; sha512 = "70ed539571cadf241f819b68ff24829db32f56287aadab31656fdf66c0ed94ccc6cc11b6cef6e2e963203cda47af2c6032db6e5689c37aaaf495b1e4fa970207"; }
{ locale = "te"; arch = "linux-x86_64"; sha512 = "d491acd4635ab9b22f76531740c7ee7a85832678aef9ed646e75f56755c02538440adeea71e9ca5a7a5e11f3f2f6941c3c4c1e47380547179f63baaf6c20ad07"; }
{ locale = "th"; arch = "linux-i686"; sha512 = "0414f74c6266fc204f2741b6860f7919c957364bd56ccc2cec5ef4b9c4be812c554ab584e6ce53387e6b7a18ad02991a44d9507a16da59a4aabfd44e7fb5b754"; }
{ locale = "th"; arch = "linux-x86_64"; sha512 = "2952cceaecdd4013882150e8158607639e4ab2cffdef563d4fd1a015c41f1eff6c5ac22c0b9301a05ab6f9fef9659d54916275d5a50d97ad43bf69f10da7b3c8"; }
{ locale = "tr"; arch = "linux-i686"; sha512 = "c5c6273bae2b9a46108a433af3a85b5cbbba4cd3154ee124ccc49f46c4a76264836a76d1b2da4b1064e9a913cc9fe461911c53e44f40343c5f780be04da932e5"; }
{ locale = "tr"; arch = "linux-x86_64"; sha512 = "f0b5bef1ea4b948d699a79d902055d5b31afbe5c4f1814d98cadef1ca820ce39212ec009f68d875860a48942e9d797bda88eec4f6ed591dd8b3b260e04170974"; }
{ locale = "uk"; arch = "linux-i686"; sha512 = "3a069ba914716ce122c4a89612988708d811b9350d333aab203dde212527c0e0cc86ec4781e6aa23f40b77f2266f76eca366cf355651870f43e180b97aa25c43"; }
{ locale = "uk"; arch = "linux-x86_64"; sha512 = "db7931aa3f1d150e4b5b8c87b9d069df4a515fb2aa5e250b8f8a1bae0d8fd9a210ae949df056c47e3c88e8faf28f2571311ce2d6f179e3365720b42f1335b546"; }
{ locale = "uz"; arch = "linux-i686"; sha512 = "110a82749e187f39d77f63b16ad515218e5512e5974916e4145e625a40d797e23fdbb5d110a23f061448cfc3d3c597858636c9304e941a34c68368f749c3c900"; }
{ locale = "uz"; arch = "linux-x86_64"; sha512 = "1dbf94cef034449e8d1342822384bf1761dc61748e2d876aec1ac628dd161f92b62da832fe397b2fe4f8a1b82f9adf1c3690f26e07ee3e48c6299f95969533cf"; }
{ locale = "vi"; arch = "linux-i686"; sha512 = "af97e1dcfc9bfbdce95a5cd35025b2540ad928d3238863471116e071a51b354b7818577bc3e7427c513e7b335bc1510605ba3ad1a37221389de7c7fedf6e2103"; }
{ locale = "vi"; arch = "linux-x86_64"; sha512 = "cc938935395e66ef721fdbb8c8b781ef648b5419393ed1687a116a4d9ae12dd18f2edbc8287235504aa6782bbd6a41f9f5dd89c9c712ed4980fb9fa44f46ef38"; }
{ locale = "xh"; arch = "linux-i686"; sha512 = "a76dbac054cdb7f5c194766dc54f215de4cb4cca4aacd7c883e0e3632b9dfc18cc25d7a54788e213bc65c894dd26ca9b863199b55b649133f93da9fed9a58fe4"; }
{ locale = "xh"; arch = "linux-x86_64"; sha512 = "cfd8bbb81637c19464ec34788254740e999c13bc8a64b4289b0e1c64f76d711a5a5a8380995271f309444032739066f06334da2f81b6ca2b2be33ff55d3ff402"; }
{ locale = "zh-CN"; arch = "linux-i686"; sha512 = "d11637b0c28aa1c45b315322ff12392e133aebe21f435564da278b9e301f0c8515ccb721df2bd55c175c48c3e24934837abbba4b84c9fa659b7a58db1da68f04"; }
{ locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "27a06d87f23eaeec170d1ea7f3df636198bfd4787001e178948fe9b8a3f1aafff3be59b9d01ed5b5851902b550601f061e923a4cda3a972f0ac68928cab28577"; }
{ locale = "zh-TW"; arch = "linux-i686"; sha512 = "7c6ef5592b273749ccbf7b37c09984b11722beb7f49d4ed25555b84f0521e0dbac5197c7642ac508a21a1a40c5578dcfb49310858819875cc9407c85426d599a"; }
{ locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "9ccce84a292144f3758190ff2858c077d1e7ec6d49ff5e1efb404b8dfb3bcfebf96eab15d0ec32325e4d96d94f4c6bcc67f4e43dd22af418b822d82a2afaf6f1"; }
];
}

View file

@ -2,7 +2,7 @@
buildGoPackage rec {
name = "nomad-${version}";
version = "0.3.2";
version = "0.4.0";
rev = "v${version}";
goPackagePath = "github.com/hashicorp/nomad";
@ -12,14 +12,14 @@ buildGoPackage rec {
owner = "hashicorp";
repo = "nomad";
inherit rev;
sha256 = "1m2pdragpzrq0xbmnba039iiyhb16wirj3n1s52z5r8r0mr7drai";
sha256 = "0c6qrprb33fb3y4d1xn3df0nvh0hsnqccq6xaab0jb40cbz3048p";
};
meta = with stdenv.lib; {
homepage = https://www.nomadproject.io/;
license = licenses.mpl20;
description = "A Distributed, Highly Available, Datacenter-Aware Scheduler";
platforms = platforms.linux;
license = licenses.mpl20;
maintainers = with maintainers; [ rushmorem ];
};
}

View file

@ -0,0 +1,36 @@
{ stdenv, fetchurl, pythonPackages }:
pythonPackages.buildPythonPackage rec {
name = "errbot-${version}";
version = "4.2.2";
src = fetchurl {
url = "mirror://pypi/e/errbot/${name}.tar.gz";
sha256 = "1f1nw4m58dvmw0a37gbnihgdxxr3sz0l39653jigq9ysh3nznifv";
};
disabled = !pythonPackages.isPy3k;
patches = [
./fix-dnspython.patch
];
buildInputs = with pythonPackages; [
pep8 mock pytest pytest_xdist
];
propagatedBuildInputs = with pythonPackages; [
webtest bottle threadpool rocket-errbot requests2 jinja2
pyopenssl colorlog Yapsy markdown ansi pygments dns pep8
daemonize pygments-markdown-lexer telegram irc slackclient
pyside sleekxmpp hypchat
];
meta = with stdenv.lib; {
description = "Chatbot designed to be simple to extend with plugins written in Python";
homepage = http://errbot.io/;
maintainers = with maintainers; [ fpletz ];
license = licenses.gpl3;
platforms = platforms.unix;
};
}

View file

@ -0,0 +1,13 @@
diff --git a/setup.py b/setup.py
index d57d4e8..9d036fc 100755
--- a/setup.py
+++ b/setup.py
@@ -58,7 +58,7 @@ if PY2:
'backports.functools_lru_cache',
'configparser>=3.5.0b2'] # This is a backport from Python 3
else:
- deps += ['dnspython3', ] # dnspython3 for SRV records
+ deps += ['dnspython', ] # dnspython for SRV records
if not PY35_OR_GREATER:
deps += ['typing', ] # backward compatibility for 3.3 and 3.4

View file

@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
name = "utox-${version}";
version = "0.9.0";
version = "0.9.4";
src = fetchFromGitHub {
owner = "GrayHatter";
repo = "uTox";
rev = "v${version}";
sha256 = "12l2821m4r8p3vmsqhqhfj60yhkl4w4xfy73cvy73qqw6xf2yam1";
sha256 = "0kcz8idjsf3vc94ccxqkwnqdj5q1m8c720nsvixk25klzws2cshv";
};
buildInputs = [ pkgconfig libtoxcore-dev dbus libvpx libX11 openal freetype

View file

@ -2,14 +2,14 @@
, cyrus_sasl, gdbm, gpgme, kerberos, libidn, notmuch, openssl }:
stdenv.mkDerivation rec {
version = "20160530";
version = "20160611";
name = "neomutt-${version}";
src = fetchFromGitHub {
owner = "neomutt";
repo = "neomutt";
rev = "neomutt-${version}";
sha256 = "17v9qnd7dd7rgz5bq5qqf0b1v59ba6jlqkbmwngx4hal6zm9b9wi";
sha256 = "12487hydn9x1yyxzc0x7hssgjwji3i64glmbi7synjc8arfqc5zs";
};
buildInputs =

View file

@ -4,123 +4,123 @@
# ruby generate_sources.rb 45.1.1 > sources.nix
{
version = "45.1.1";
version = "45.2.0";
sources = [
{ locale = "ar"; arch = "linux-i686"; sha512 = "9825f8a9cc465435539aface355797d1f35437abd4a684efbc39ffe9948302e095e7aa9ab336e239a9d11a592f2c7d75fe21ef20747ff18a27ab404d0a43c659"; }
{ locale = "ar"; arch = "linux-x86_64"; sha512 = "b2d16d69b78ade4fa9e5827411670e0a19d7fe7c1e2d893865f94514f5b50832ccf9ca5fb92354b152041605b1d7b7c1673d697537fc48ea3323b6b9563c4599"; }
{ locale = "ast"; arch = "linux-i686"; sha512 = "37fcf68df5d69e56d9ab20e84542fd95b0e0f4fae56bc652b5037c9af97596ba27e4b3b92ea76dc81dc878cd125ee1b024ab5cf05662fbe6354eac303382396e"; }
{ locale = "ast"; arch = "linux-x86_64"; sha512 = "f29f59ad51794e4bf1c570fdf3c5d45c61c23dc8ec9aaab5827abd961ce1228211277200782bf95c76a1c87138c2e1005d9474a055f4bbc1f0d9401b75cc856c"; }
{ locale = "be"; arch = "linux-i686"; sha512 = "c2064f08f4e7f8154764d14605bf30d687670b0e617f21f99b80852ed41ef942a6573a2ec4bc4e01cbf1823efe064da011dd1f29841b2765323d78694465c8d2"; }
{ locale = "be"; arch = "linux-x86_64"; sha512 = "d0c96406e0d889cbef011bdcb6f7d65f2ca4077b4c1c28d1790cf54fc6553092f7188ac32d5e2d80389c316ae205a982cb7d95b4bffe57f7e159304d3256978e"; }
{ locale = "bg"; arch = "linux-i686"; sha512 = "43c7f27b227af8dd647008247bc0bd858d65126d34543a1e8376887fefe27d8f42997e9832802429343cc80c2b9cbdf02f99a195fcd99d9fcecea66e9a6968cc"; }
{ locale = "bg"; arch = "linux-x86_64"; sha512 = "98da4029e345db4b123a32f57a2bdc01277b023d5e2463b04c31703fb5bb7e59cdf5322af62f62a0388a5046e8a2a151849110b24b51295c2f68fe96db0d936e"; }
{ locale = "bn-BD"; arch = "linux-i686"; sha512 = "2b87536b6b9205d6078a028941703f19788c09e62cd1e17f00aac6da20859fcf4ca284d651e57e0b4332f197d5420b4f2121818445aa03f0580c10cb383c64e9"; }
{ locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "8a70702117a5a270b5f2dae44dec45471d7c7e791c3ed65aebc6fc016dee9df950dae7f5c9186c5b10d2b3cf483b57bfc43905862283bea6406c99c744c5b87e"; }
{ locale = "br"; arch = "linux-i686"; sha512 = "7b2caaab28a8615fa68fab3ac93c9ddda08715d6c3674908febb50bf3a876659ed868656d545e1021056e64115a56e4bf7a88fcfc42d7e2292f9947ccfd2c42c"; }
{ locale = "br"; arch = "linux-x86_64"; sha512 = "8d6a53a190c99fa4686139ad5f5c2f41572f8a5d6e2937035975585505eaa445807cbc5e7abc5584e82328dbb39b525b555dba6a13ff26d4ce53e564dc494344"; }
{ locale = "ca"; arch = "linux-i686"; sha512 = "428d48e3609611354eead00a123d48cfe5e214fa405a97e701180b14c82329620fa7df45e703c5e8a8f84616839d022fb3be7192ff340ddb996229dba110b7e9"; }
{ locale = "ca"; arch = "linux-x86_64"; sha512 = "560f6bdcc55c62db0ded2abfcbedf006a1b27c127ad193a4deebf117402aaa531a7069954e94cbe7b1c3d6b95e4cdfb46543e9ed623a22b6e14a64bff1b7b682"; }
{ locale = "cs"; arch = "linux-i686"; sha512 = "48b984956b2f2139704caca7c45fdbeb0e0c138b7ce0548a3946be2dd2de5f83e9ac1b0605c08ed32e54d34fc830d2aabd127a8679c1d933d802e89db1ddad1e"; }
{ locale = "cs"; arch = "linux-x86_64"; sha512 = "9a28daa1f56d5e676e9bb9c2fea52f7324c40eaf237ea5cd4614c66ec67ef9604967c864ac1fb1ab81d2e490c829916b4f5a2a93179fdcae55495837fd002700"; }
{ locale = "cy"; arch = "linux-i686"; sha512 = "7e97b3ea0046406aa0c7254125215dc7cd109e7ffdbb8586c1b9928f3474a75f022d36f7f5e0d102b3a8dfd3c13ab78b7a3d4478e8334e685136ece57e2abbe7"; }
{ locale = "cy"; arch = "linux-x86_64"; sha512 = "4445d1e434f7bfc646a9ac3ee796e70345f109fea93824cd4eea95f2b58fe81e3c1b2a6a667ff1c6b9f648294b3b2ea2d42b98477bb7e6ebd8d66bbb6fe4eaf5"; }
{ locale = "da"; arch = "linux-i686"; sha512 = "1ea50eedeab6be84fe94ae52d50dba4d17bbcefb31f06cf439ce5e7dd743c03a87c59d4e17dbd931bb8e833701fb273a536fc3a89345686462fec12b64f50908"; }
{ locale = "da"; arch = "linux-x86_64"; sha512 = "df90ab827acd69ff8e47011020e8d4a02cf669e1994d0238d11027270a8bc97fc7ff6f52ac766af6817b44efb62b985c8688d23efda3ab0a740734bf6764f755"; }
{ locale = "de"; arch = "linux-i686"; sha512 = "3d0f2db8eefcecec01f6d102c413f6125a2eb37f2ce03458f75a34a9c1086531c0df4979a02bcf760c26f7d43aa4f6a5444b662cebf124f5f8b02ed5decbf83f"; }
{ locale = "de"; arch = "linux-x86_64"; sha512 = "9de6e8002e57c9c51bcd01b3e49f6fb04e527ee9fd961ca5ad22806cbfaf9cc2e01e554576606866576094a2331e9aae36bd40b83a8c5fe892c726148ac08c0b"; }
{ locale = "dsb"; arch = "linux-i686"; sha512 = "4600a52aa52ac9efc077b50e6b0b756af3e14c84fdfab2eddd83cd95568f6ca143754b0bd152a36165728f5c47b757cd3a21c06f4c92edc244b7be5775c298a4"; }
{ locale = "dsb"; arch = "linux-x86_64"; sha512 = "472d1de923605ab68989cec03f9d447366d3afdddf94272bed9a52c7bbe2b50b172702e54004e4fd80a5f98d5170d541f060dd8fea0dbf04fc5ad54ae9bac6fb"; }
{ locale = "el"; arch = "linux-i686"; sha512 = "83b81f80adc8311a77972596b21a602260ccb8d1c7bafd88e791f2e5549b3e9498ff4d62954faf2937ed6b9419eba23610521b1ad73ffe20bd8d6d1a5ad65bb4"; }
{ locale = "el"; arch = "linux-x86_64"; sha512 = "64f16763606d69a0a1fde2d8901064d9c64c44d5d1f0f791167e0223f9fc943eb71023f7fc636c978f56ab1c9354fe042530eac740bbd3dc78be82fa74873a39"; }
{ locale = "en-GB"; arch = "linux-i686"; sha512 = "3c3ec265945f796df2fc5d4ba35c32903534c3520629c952ccc984e76812041282b338e662c9aeefb87417c5ad01753acaed21f8089eae66464365caa2cb9609"; }
{ locale = "en-GB"; arch = "linux-x86_64"; sha512 = "c6d91ae956ab4698802f4208e381dd9d7310595179badd564b32d9fd7dd7f2735d9be4317b1c39886e7b8d6886c998e3c174fdbcc2159e5e6e3d62ce78f3451a"; }
{ locale = "en-US"; arch = "linux-i686"; sha512 = "f5f85a0c0bbe8066fc06891760113323b23de7d90480c1aeaac3f5fb2a9492792fb0de1cb4b7d7cbedc93ded0098afb5a30d144748a1bfc0b59481885214f581"; }
{ locale = "en-US"; arch = "linux-x86_64"; sha512 = "88d037587e5d80d02621881ce6ba4034f686b87e3fd25741127345b655edb106d5d43f5900504b7f41b5403389e4f8317d715e6fb3994425dadcd4a5e527cde3"; }
{ locale = "es-AR"; arch = "linux-i686"; sha512 = "3419e117a6c92db56be90d2511c726ba61606ca23ecc6c1d6939d2645a9d903459cc4400e229b2f5c59f5579eedf5d5c5506476093b864109796e619d3273a15"; }
{ locale = "es-AR"; arch = "linux-x86_64"; sha512 = "c073b5502f37837ad418cca401a81d2b72100e86a5628062f2a24f8a978ba5f1f71bb75be707e9078fdbb9de797ecebc3d17b0a09cde8846e6900297dc6ded7e"; }
{ locale = "es-ES"; arch = "linux-i686"; sha512 = "995abd683ae784fa337cb992b8741e729ea487e766895f226dbd37db79b78d9af0ed5cb3b06b9d50cbfdc9699fe06a65f6cda698661b74159fe9465cbc599a46"; }
{ locale = "es-ES"; arch = "linux-x86_64"; sha512 = "d09be3138272a7061b48ef71b02a4faa6ef1010df4a99387364dc89c329a173c9843c0a4a8ca8e035999b0c5d69e91b647e79240505a4e474612423e232c802d"; }
{ locale = "et"; arch = "linux-i686"; sha512 = "7d70752e672686602f94f80cfbaf24fe7e839b95a4868b1e88bd3a851a1aacb294a0ee7931ab5132dca7a06d5a4b2e3e1f1812af38f92b7d544ee1f08516f31f"; }
{ locale = "et"; arch = "linux-x86_64"; sha512 = "a54cecb455a6a294dc8ea6f55b150d13d96c5f6c0dbfd81065f96efa5b41859c82a767de186eb4d0329b103bb516ad9a86789c4101f7c9cb0fe1773ddfae27c7"; }
{ locale = "eu"; arch = "linux-i686"; sha512 = "fc813f13d74161baf8bd46bec0db69cfa33ba5cc4eaeb6b12f3ed48d294af973c35f1b8c03ea20ac254e00f2b8a30d0ac4a5e649998886b429e2d043f1755dbf"; }
{ locale = "eu"; arch = "linux-x86_64"; sha512 = "2ce51531f64afc7b578d9972225d95b371161ba758aca52b9a6328e4c50a3337a2a7aa8d1307de6a00ac42ed53351efe8c8e83caec8192ff1bc2897b679668a2"; }
{ locale = "fi"; arch = "linux-i686"; sha512 = "43d31ad2d6f59f17fd4704f8f8de089e90938454bd9b3755b30e50abbd18f3cd3ce4a4207c3cf5e4d70ddee73318643fc9913b6543a16989ad74d60e246e7392"; }
{ locale = "fi"; arch = "linux-x86_64"; sha512 = "83055313856408d29079e8feaacbcc777fba655ed5bcec8400807ee3a497276d1fe4a6c1f911098c348a3789cef53db7c172c1771608e0c7241ce3739114b059"; }
{ locale = "fr"; arch = "linux-i686"; sha512 = "170120a291c764280cdd00f8d4b2e59a0be31326c41943920e54eb816163b9182a531235aa96564e94db47716c8ce7aa87ff60817c262652822427a02dcb571d"; }
{ locale = "fr"; arch = "linux-x86_64"; sha512 = "3ed963c5a7221ace7585caa34ad58db2ee087d90ad7de649fc397f26d512e180c10c25588ffb13ab7fc363d1bcc44d4e82fed67aa0561222af9af87e12330ebd"; }
{ locale = "fy-NL"; arch = "linux-i686"; sha512 = "c59591f05938110429c2ef6d0751850f01b02c936e8af3ee9cf895af41a96bef9d3b9c62ef3af88ed8c2772094eeb85e6914351c8a3233a7800643c159b9aa12"; }
{ locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "f90ad1d08c44380b97f79e5b771abcf2aab8f69dcfed718e3ef44e64163e85e63203bdda65f01a231bb63bb04a8cf00aa87141499366996c568cbf9897b7d306"; }
{ locale = "ga-IE"; arch = "linux-i686"; sha512 = "5449f8bbcb5a693f7c4d2f09a2e43b76a78aa9e5cdfaec450aebba7c11f061b6cd2e189889c56001304ae6ac8687b52275111dd39bc752885abb26add1ad2b84"; }
{ locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "82c3cc95bb4ca0a3def0deb5ecae003229cd62494a896c8706a600f70819c1709ad4b7c35f3edd14dda1560a300b4626898ec42057efe1835a718fd976d0d574"; }
{ locale = "gd"; arch = "linux-i686"; sha512 = "ab4f895734cf6242efecf35306d79601bc2bb4d695170cf069cc740d49213828e86b3d26754c38438cbf4ada0abfe5195e9406658c4bc2da98583a427c132ff9"; }
{ locale = "gd"; arch = "linux-x86_64"; sha512 = "2f710c027b7187a2e668a236e2b967490ecdd4c66ab9f4fbfc1a609431ff3f998371e0f14c673ce0647b0aa7d8ea5b0e31cc88238b69853a178705c00eefdc82"; }
{ locale = "gl"; arch = "linux-i686"; sha512 = "7ee2fe3154adbb1f9a43a0e4979fb101205229e786b45a5edc5d9f39889ddff7abc45be73137e0df2bf789d0e9ab2b6f62e29a5a5a220a345d798a6fc48d009d"; }
{ locale = "gl"; arch = "linux-x86_64"; sha512 = "294ca5fba76da62ba467b75798e55480beb672405a675a0050db76b07c612e44617ba8b316afa47b8041ec765dc3067e3d743e229f49ff75a1a3ce810aaec9a5"; }
{ locale = "he"; arch = "linux-i686"; sha512 = "e91b8e2ec22e79d603d3047245d3f9da849f24c124f256dc993f6f4dd2f76c8c5b87a73b8b4c3152b7e5be71524ce7a7e17067bbc62bee57c0124e613fc71c29"; }
{ locale = "he"; arch = "linux-x86_64"; sha512 = "97c2a2d9186c1816e9209ebc91e831c1c705e00030881c5e86c1e30b31a1866e9fe3abc4f02a359782d537f25d147c0011a7a03898b54882277ebe59da25a0d0"; }
{ locale = "hr"; arch = "linux-i686"; sha512 = "5cf6afd2ceb62dbef77ff86eb995532901edc4bbd03d5e79916bef72d813e2f55ef40098c7029f7f380cbe9db195bca2a5fc0a7a1a561a607b38f9b32f6b2a18"; }
{ locale = "hr"; arch = "linux-x86_64"; sha512 = "658dafb507d9521dba2c6757a0c98e10f0976672850aff6b88ce4eb2b047cab9661925ace07b49b901c3c19759d76d62eee5fe0b1ac986c6da7dc82fa7cad2be"; }
{ locale = "hsb"; arch = "linux-i686"; sha512 = "37f582d813b991a25c66788ae013fb4cfa49ffd5d45da6f56c54c976e268b7418f25ad00cd7335238c16753fed4114e49ecadcb67ca26fa61094b72c74245c2b"; }
{ locale = "hsb"; arch = "linux-x86_64"; sha512 = "28ab2743f87ea4a240d09cb5eb7bd6fce168c44eec3dfdefd1345b9c819381fac1699d133fe2c39244bcc7dda796e76f4ce495f5e530098bf19d4929d344f95c"; }
{ locale = "hu"; arch = "linux-i686"; sha512 = "53312f4feeb4dc88ee102bfb8ff16f4cb67624b427f1852748eebaa1eb6faa5b66569e655f5f03a3c99584593b00d5d76f6e38ac473d589076e203da28d37ec7"; }
{ locale = "hu"; arch = "linux-x86_64"; sha512 = "1719e0c33584508ea6e5528a7dca9f94d3b546cde758bf6fede8346c66f6c2ec9c85d49667aebcf065c09a81e0e1ea6b149af809eb9584aacfbd4674c6c66583"; }
{ locale = "hy-AM"; arch = "linux-i686"; sha512 = "4b9f24ea4a3c53db1b667fdcb441f237dbe63a4a8ffa27c72387548369d1b56d818540f1e82c0121734009d3ae9e8bc266695a8ff64ac1f2aaddb86e56da0238"; }
{ locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "4b3a6c97be1d38ed1e556ec7567f12af1aec054a76fedc74bb26a53f6185009d7254f0aecd8ff14d07553abe1e0356e443707b0d9800c7d19a8e883bee9ca2ef"; }
{ locale = "id"; arch = "linux-i686"; sha512 = "bbd6f3caac34e74469043a25935fdd4ee5cecf180025403ddf3d7b651fd52a9aad26dfe9f73cb1f4e3dde2a463d3a9c773fe08ebce42ed908ef107bde231c9d1"; }
{ locale = "id"; arch = "linux-x86_64"; sha512 = "09dda35699dc17eca61b063d53c9a0326ad34cd43cc2ed4e822b4597bd108068db6cbe2b6347d0d28ec34f1271012cc42c31ef471e4f4d6cce211e5b31de33dc"; }
{ locale = "is"; arch = "linux-i686"; sha512 = "b08603695e3539619b7450d03c88aec309d2f9b938b89455705fde1c75540e1d14a3d3111446aa6a41a8d271c5633b6d14861540751ddd7f45dd936322af6bd4"; }
{ locale = "is"; arch = "linux-x86_64"; sha512 = "7ca4d5ca884713ab1bdcbae470be7435f7c20d273a50d6ff8304374f5a8c43d06702a1690080a94e28238d9afc4d6dfabc170ed842bf8359ada774a8e8b2d474"; }
{ locale = "it"; arch = "linux-i686"; sha512 = "a27de0ec1735dc30e7c6a06bdad5fd7604f02446d8a9838251a6f6a0f621948d05beebb8e2f308ebb2df6207d3c6fb17dcfe5d1c2c2a48b3ca826006527271ba"; }
{ locale = "it"; arch = "linux-x86_64"; sha512 = "dcf639e215e8941b0fee2c20471840fa77d7b9684f2e196042e201ae7de0b4aa8fabbc712e2217cf1c1883c78415b7839f8669cb897cf345ae00296b887ffd59"; }
{ locale = "ja"; arch = "linux-i686"; sha512 = "497aa0048b4f53913e3a4461282fc809b99e7a1c43024dc937d5defd85e29b354290bf4962b200fdaa4dc2871f24b10a0aa2401e52b7b47a8c16dd32d49e2311"; }
{ locale = "ja"; arch = "linux-x86_64"; sha512 = "61433f6cda12b4d7843c76f8a3a7a2fed3d08dac0c7df00fbef0a732df65afca595320ac9e01169f3ab277bbc0074e589b12737c4d2b9e031211e1aa10cfb18b"; }
{ locale = "ko"; arch = "linux-i686"; sha512 = "d9a3538b444821d14fb8636d7282001a8130aea7437b8a919d71b7261c445443113dc1e45bf8ecce20679b4995175334918e58ac7c9d63ed40773f901c8168aa"; }
{ locale = "ko"; arch = "linux-x86_64"; sha512 = "07d8661036b0dfa7390a940f879c961d25d08dd7eb8ab19cf3dd1964d44f74117bf2e8bfa64697d9576851270b5cf411c1660db9f7ce988970650b5824f8da42"; }
{ locale = "lt"; arch = "linux-i686"; sha512 = "cc583cac7892ecc6a5c32a44761750efc9d566abab65fbb802f40b0f23b60099a0977b66ff1869db8723f8956aa370e1dc6a1ecffa739ec064a0c270471ba0f6"; }
{ locale = "lt"; arch = "linux-x86_64"; sha512 = "20e7619a4f16492e73ba4576c6be9228c2377a57300b48fee5109dd21771f33200a9127db6215cb078cf1e76dc1ccdffd72dd361ebeeb76f1562fc4e82951e47"; }
{ locale = "nb-NO"; arch = "linux-i686"; sha512 = "c64ceff628e315d7bc4991df0e7e5d872d8f3111948461c26cc9535977afb5c5123e3d8b575478ab0b1ab0fe07fd21c3484109e46b0407ad86933e082b29e491"; }
{ locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "9caf7fc7d5a5d11e532f60757f0bd6000d96ac42bf67c2ddf0a018bec8299b2f1e28cbeb97d862254a5036c44871ac14d059563b3b37d41efc5773e4a300391b"; }
{ locale = "nl"; arch = "linux-i686"; sha512 = "3c5f36dd64d2f170339e7762e357fa901547891ed4f278dba8b835fe8be999e93869682747463f9364ca9b728e3dc63639b992898bd0cc1eb5e70edf0b9f2628"; }
{ locale = "nl"; arch = "linux-x86_64"; sha512 = "17881c4a3771b1a96659278d87b242dcdf4f7fa85be100126c246babb61efd34a8e1ca45ef2f5501c5369f2c741ff44cd2d968b3e252b0a7c8ee2d3cfdda7bae"; }
{ locale = "nn-NO"; arch = "linux-i686"; sha512 = "c28c62615b8c882373e2fc774733982b990b31ad291b6a48ca0d1f3583063e2c66b0dc7b4b9a17246e252255e75546752c84ec015c913ab312d573dcabf9146f"; }
{ locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "0b5ece430c8511cbdd7121f8f2128ece8cbfac954f4471e5358b425cfb5c7f09c925428fce03fd411c7d5d3258f2fb4e1003be3404deb0ecd4d79d40dac9fa7c"; }
{ locale = "pa-IN"; arch = "linux-i686"; sha512 = "16cd5714f216637dee401ebf3b081f61400a05eafb3ac35b1db35b9afa4736e8334af7930fba6a87d2a7ce042eee235b3a57e1abd03964d28dad23fdb547a31d"; }
{ locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "865044c92a277fcde2fa9cfa21266f1737cda59f60cefaf852a80e0d1960bbb9af500b74c591e90dcea43643bc73e1adb726488a51e29746978bad84bf9a867c"; }
{ locale = "pl"; arch = "linux-i686"; sha512 = "85ccc72a9d4421d6112e37fb2664b3189c6fef3efa3ad86d32658e40b102541f1fa345810d44e0e19b6c757a31bad934fa9a7b1df6cdbef7c6c0fb120dc38505"; }
{ locale = "pl"; arch = "linux-x86_64"; sha512 = "08023b730410b4be5df7ed15261e1c1346be56e58645fc476dac6228adc21dae336b25ef11b9adec7ac8b9b1f7f942c1c579118a99bb6897099948bbd1c3f45a"; }
{ locale = "pt-BR"; arch = "linux-i686"; sha512 = "84e80dfc3bd12f4900205dfbf1c4d20b64bc2ea220275c85f0ca2f9a9a2caf357ecdebc0d72788873524ff16a97e7c24afa3aa69314553cf4e693618334427a6"; }
{ locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "fc6de72f9457a6967f0ae18e5a71bd7b463d8c4a7c091795cac8f676125e580929382862d79a8b7659ade8ff8f87478f705c057270d9953900f36fa467dad3b2"; }
{ locale = "pt-PT"; arch = "linux-i686"; sha512 = "7f454b2c5dfda9518b32c117955f04a3c582ce186e97146735891a3fcbd5873db56cd3495688b63eb59665bf3055d0db1ca426d5b5e98f559faea2da10c7daf2"; }
{ locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "f5f397958c9c10869381f0facb64530f7c3d1e4c669ebb0e2b32fccbee560b742b7350c9c314683f949e5c9cb0161beae4e706243f1214f0cca84244a7d2df84"; }
{ locale = "rm"; arch = "linux-i686"; sha512 = "90aed589668ca02cd33ae08d430871b16ac5778c43f042ba9b8df7701b074636c61fcff059471fd9c5796df3a68d08cfcef190790fd4059fa47c118971882648"; }
{ locale = "rm"; arch = "linux-x86_64"; sha512 = "eff8e94a8779771f66571febb9e793653484b45660285107020f871ffc70ad935a3fc68ea3f8eb942b3b7e05533c8235770d1727c2a43b27201872638685a464"; }
{ locale = "ro"; arch = "linux-i686"; sha512 = "9fb422f3eff8417db103f8481acef1bcbf794e6e05bf831aa6b8bd839f42fd4baca1aaf999249e1776e9758ef041494ccb3a93c65c9060e240a73f77867df262"; }
{ locale = "ro"; arch = "linux-x86_64"; sha512 = "fae562ec1ce02c4183f971f849aa904adc719470cfef55ac7f79ad8a57a1d31f9f926638565c9ee0e0cba51507a827e15a130f54406c59b7c0ac8fcac81fdc3c"; }
{ locale = "ru"; arch = "linux-i686"; sha512 = "0039d541632368c41e2ce7f89263c6f6a6adf330ebd6205e637eca43fedd1a06a20080d621ba19163a0b9d4a91fc9a4b4b5ce50a694cdf985f36d9eb41c5311f"; }
{ locale = "ru"; arch = "linux-x86_64"; sha512 = "cf289f78ffb353457eacaaea091ababf4b284cf4caa01f50fef3ae36d8c67f5d0786f366fcc1a35d231bd8ec1077392be662442852791337caa80a0b00f7fa40"; }
{ locale = "si"; arch = "linux-i686"; sha512 = "9db7054433c6e06f8188478ee639a7b9d20ca9f868143de7861eb804276e5f620736f1ec44d21017eb126d62814cc276d75734ae32cae590194558bfc41375ff"; }
{ locale = "si"; arch = "linux-x86_64"; sha512 = "258d1db736872157b276c67e7a7c5d5e89740c8e19de09091c05d2de1610ae1e50e17f8d020ee74b8b9e0ec70bc419b357289368c90de5b6c6067ba692564567"; }
{ locale = "sk"; arch = "linux-i686"; sha512 = "8ae01308c4013b53a009c95114fe349cee67c1bd918e42da976994941aad6ece4b285168ce26634a0eba9a589a1e0a9d9a6fcd742113b69220ea504cb076e547"; }
{ locale = "sk"; arch = "linux-x86_64"; sha512 = "9af3e23397534c6b72d5b720842ab6aa2df5e7c62134947555dea0837caadcaff57fd4fcfbf68d623be8875940fe20983a9144ef9f1ec0d228e8ac956ca9b708"; }
{ locale = "sl"; arch = "linux-i686"; sha512 = "f58e111856ab370b5720acd96578874dcdbc0913cec8f5f6956e33802f2fc7648ee39f0d0b8df9fce85d6df42186ccc0df070afc597f032b3f30af4b00074c1e"; }
{ locale = "sl"; arch = "linux-x86_64"; sha512 = "1dbdcf95dfa3a6148c23d5e5ef5b2520ad3558f8c6e528a6a1585d57545f7f3ad81761a0c4ec04794753ddffc089135168dc5ec82b0eb8699f09e29722f90aad"; }
{ locale = "sq"; arch = "linux-i686"; sha512 = "b7759d1b50bd3700d717c0bfe2a3b384aea864b2a62f41e04aed12e5f24be9ace991f8e2a142e1c1c329818fd3a0643f538412f03999dc7d1cba5a87a82c3bc9"; }
{ locale = "sq"; arch = "linux-x86_64"; sha512 = "cc55ec09a7fbd1a798bfb1d4f0199ecf125329873515c549e6a701e3bdf0e0d6d444be203c424a67e27ad96f2e486ac9b823e6d286b0699adb8812f43ebd6437"; }
{ locale = "sr"; arch = "linux-i686"; sha512 = "65562e1be17a16ff6d09e1f6bc0d6f9b0fdfe67de8661992f561b57778c52e49931b8b1f9b658c65c540cc1e3596ea06d3ca5da644b39c05b7964c2fd6927fb3"; }
{ locale = "sr"; arch = "linux-x86_64"; sha512 = "784cf692425ce351d5fea5dfa33f80eabe0d996a6158ada1c50d8937571549f06cb52eaf8faefcc73f39eeb2a4a79b5fb9a5c4b221796c0da1b23fd3aa36f74f"; }
{ locale = "sv-SE"; arch = "linux-i686"; sha512 = "fa7dd0bf6440cbfc4ed01f34be82c86bae770c7e8b7ea84ab4ee30ea087c4d3fc10c09f9c8e8b2d3dc1b285ac12db611d18f1cab62411b1e4d2ff16edef02a45"; }
{ locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "1bbb03695bfe04c1dc3cac1fd37b24910f746a128efd10274db4b7e8025ef5270a66c344a2e9dacb88b6eb2a186e10bde0fa0ba41a73a241d548454806d049e6"; }
{ locale = "ta-LK"; arch = "linux-i686"; sha512 = "ea498d149d452321f98de5f6320f0980c22cf9859e332e08e359e9399caaa1e2b0d2d66880e045cc1d17636f0821386be9ddcb510840c7d442f1eb1b4051494b"; }
{ locale = "ta-LK"; arch = "linux-x86_64"; sha512 = "055b33db08bf48e016077242e8d52a1f0fa72a36e72bcadde5429eb3ddf39898ab7514d70173b4f8b765014d984bff1180da7e57e6235bfc41f5ba5e502fb423"; }
{ locale = "tr"; arch = "linux-i686"; sha512 = "a4d04d2430935904377d995646c84acf75d2c0b6a05a7b4935ad49b89fc5f895c6e9b772ad09cca7d9634614ff685aa268f834e1d09dd0d5d4fd33402c56bdd5"; }
{ locale = "tr"; arch = "linux-x86_64"; sha512 = "bf29e50b724fadc0ff324664ff191ed49799bd540d9e4483651caa87a5cb6e3614b87a5e3cc4957560627698e0991b97c3501f4fe8bbdc87b1afa5018e9d6e02"; }
{ locale = "uk"; arch = "linux-i686"; sha512 = "44c9a47daf570f6a669210ec8cb883c5cc1cdb614b7fdbf98a4a087d87f862cf00695849ec73c9d79c99008ee98e4b1ddc96ac050ed5af7ff20db52163026188"; }
{ locale = "uk"; arch = "linux-x86_64"; sha512 = "0d67fe5c1ab189b25d0ef22b3180b1b67139cca94a02aad622b5b000e212bf88b84b65e034c6720b41bfeb98e4cde38a8f4998f40661f7a0334f5df743de2152"; }
{ locale = "vi"; arch = "linux-i686"; sha512 = "f8fe254886133e05a297ebdaf97de0115595c5a6243e58e7b3057c1d007c75fb85ec78e1942c7d005d5fdf218b52ac9418f120788e2000c121168c7c82f4b4b7"; }
{ locale = "vi"; arch = "linux-x86_64"; sha512 = "7db410ee86ae7810315b8349dada32411fcd37bc5670e1aaa15be15a00bcf40280f1d4e94aa934ee507baedb1a5b2d096697d6ae7bba953263c7b6943877ab08"; }
{ locale = "zh-CN"; arch = "linux-i686"; sha512 = "f7f0d6794ffa6128941cec38266cf68c9718d702a261808d1f689adb34bc03cfda2c1e30d496974f1d2c98acde2461c17f99691a8a46f52b27ce02123e1d52d2"; }
{ locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "15239b95519c79b16fc09f6ed1058e48aaf932a796661c800371ba69e67f7e9712d191019b4d8a4dd32a391f688fe023e0e9b284a58de7d8918a198c24c63d08"; }
{ locale = "zh-TW"; arch = "linux-i686"; sha512 = "abfa901719a55673831c41ca5363f993e14b555766fb63d6e0e33def7bbc021fade2ce9b34c8354b8315c614114be58c0a19c9b74766400ca284fdac6057ab5b"; }
{ locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "66b3b31e00ec4ff8dc9810d07e1928554f78535975b54f1ac436d7b9eeee3b6dcf2aeb485e80f2d10b07f75eaffb2fdbd7be7208da67bac60515320efd5d60df"; }
{ locale = "ar"; arch = "linux-i686"; sha512 = "fa7457cf48ca68f559b14b79acefe90f8d449e7dd7a32a97f728ef33b26e3f513064bf733eed77b12237902491852a66fce690b1cf1de049e2f09d27416d8786"; }
{ locale = "ar"; arch = "linux-x86_64"; sha512 = "6b2bc528ef7401a5ca6d6c5e68eaf68386a706925a3087ed16b4a2560a449ccba52c8dacae39d9a761323cc46f934ca2ea3c07bc5ef49df07eff9760a8a0ed15"; }
{ locale = "ast"; arch = "linux-i686"; sha512 = "2917644f88a775441634a8b2dc214e29a34eb0cc7ad88c423a5cc02f7603cf321392c7fc3c7ce97231835fd39d1d8e264d8a9fb084651ec722719d5110d83cbb"; }
{ locale = "ast"; arch = "linux-x86_64"; sha512 = "d047bc41a3ee0a444c8e4870a986c0068a67deff043bf96a9ae6338247461f2b51ecf02348c4a5b5e2ae4f68f7bd665c64582f0afc45bd480588cc82cdebc1e5"; }
{ locale = "be"; arch = "linux-i686"; sha512 = "830fce5b2361acef206876a43af60963ddd720ad4c49c30936b0231c94096c5f43fb9479679c0260846a28a315f359ee2cdcb66e1f2bce0d222f1495b1cf1f58"; }
{ locale = "be"; arch = "linux-x86_64"; sha512 = "8ec67cd108abb51b86fb8cc528a6bd43628847e47e2a7e5ffe3bc971b6c89aa0c7cbce2ce0738a7316a54c4ab376502187ddf5be9d74db31985187b7e6ae3038"; }
{ locale = "bg"; arch = "linux-i686"; sha512 = "d18965ad8f1456d688811e972b09e293cedaa98832b4d5898d62a80dc9cb4799d898a14ad968fc2f05c3e6dcf3fc480d21d1d8de63a4ea9c10b8081b28c321fa"; }
{ locale = "bg"; arch = "linux-x86_64"; sha512 = "a7dcbe29dc4b28b3273693bec60f9ed66d1eb81899a049f7181271e84763f13817f97e07a9696ce803d151b382f3339f3b0d2b1bdfc5bc687c3f6198627e2fd3"; }
{ locale = "bn-BD"; arch = "linux-i686"; sha512 = "3919ffd44cb501f5c8d273651e3bef27203270ae269e8682f2c749a32eb6a622a8106179cb9a493f7e62f255da62381ab497e2a590f84bd207a1bbabc039827d"; }
{ locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "8e4d026bf30a0fc69eb2c7982b3866a4745f506f5365677540e050cba81a569df1b367c42b9bcaf58ae20243a82a9e7d006c476a83ecc29b4b77f042f8aad5d1"; }
{ locale = "br"; arch = "linux-i686"; sha512 = "cd00e42cce4a5efd18ba5b9a784dc93282c200a43796b826cc05eb4858d44775df827dafcda0c6468d17ea5f7f930590db1546b544fc19ad52d9d5e1cf7c522d"; }
{ locale = "br"; arch = "linux-x86_64"; sha512 = "be84c92859014a055606588fd7e9c8d8c13fed8ca253ccaed560a2b457305b487cb2664df8af7416220349a85a4db15f7420674ab46c1ba8f8cdec03f0002d83"; }
{ locale = "ca"; arch = "linux-i686"; sha512 = "2e678aec4efde29b659f1e4de071f7b5cf2fc56b28b362bfc7fc2a3ba8ceaaa53a3452cb9c2a565ea5bf83304be87fa18dd246d2207e5ba6f5ad16a0f008ffe7"; }
{ locale = "ca"; arch = "linux-x86_64"; sha512 = "7bebca69abdf5510793e376693d82e626fbce49d01fc66d28bc53ad51ab70fd9432266e2cc1b0d83359fb2bfdd075daa181c66618f6094996355f6cc0920b239"; }
{ locale = "cs"; arch = "linux-i686"; sha512 = "2f8d5faaa0952ad37e3777a2d15e2a1ac7aed1ed275faf909e479f56e4ee2e9f385aedf6b08cdb3abd9e0830949b6b6b1048e19ac489d0d0e881595b31816068"; }
{ locale = "cs"; arch = "linux-x86_64"; sha512 = "01e807c22d90e07503b92e3821ddf91b509763d9c7b2ebc5e21ec9788333086de25508979422446a2e0469be611f890db682757ddebf15e549bb8714f40877d4"; }
{ locale = "cy"; arch = "linux-i686"; sha512 = "e87718bbd286e1e2fcef8e114aa27b81a1917b37cba996c59ddc30d5300bf53a4e3662d3770f70362850d41e564887ba510f605412e57d8e6510f02e5a4d54d8"; }
{ locale = "cy"; arch = "linux-x86_64"; sha512 = "f3287f4cec54f6814a678dfd9875952d5109716cd15d097ad5589fb2bbf75aabf2496cff6d320929c825b1a1e61d50f060b9d9fd7f7011078620995570dbe88a"; }
{ locale = "da"; arch = "linux-i686"; sha512 = "6cc8e7c2c3aec96dc9639a8663915db2e86437b8b9a598570946b2dc63c9d261a257dcba3359762668683a67cf39d5448e0203eeeeb4da41f6d5df51c955da3d"; }
{ locale = "da"; arch = "linux-x86_64"; sha512 = "bcba101b8438ff5a61ecb76f1328174aaaf7dccf5031a836cfcd8e597db8d0b120623e15a8c8231373732b6796015ed9fe212797bf0f664055d3be3755bf38d5"; }
{ locale = "de"; arch = "linux-i686"; sha512 = "fffa1b9a61ef75ac077bf03f85abbb5a40131a9a35a49835ac40b424870b773a42f8fb534ba5757da7c0bf6781efe39dbe2942ddd436860efe5799170952dbed"; }
{ locale = "de"; arch = "linux-x86_64"; sha512 = "db88539be38c0a62d9c56b5295af2bb67d342996c85e788a17fe2a74e974a8d196765343ca005207b8b1ebb8f76421640dc7cdf36c51e23a4bc03edfbdbfe73c"; }
{ locale = "dsb"; arch = "linux-i686"; sha512 = "2191707e5c796eb5ef210798c3519004f5cfcc9be0f56a22c03eef52a34f04f011e556894dc932467c142c8ec876105cab628c947ded0e11d7a63733db83bdac"; }
{ locale = "dsb"; arch = "linux-x86_64"; sha512 = "07a9bb323db8f626ff0614dd8cfbbb1f0c8d922aac4c7ce21770b79c40e79ca09c798903998d44c236cfaa76daaaa94814bff697d34aafa417533078405cef1f"; }
{ locale = "el"; arch = "linux-i686"; sha512 = "4325888c1b2585d7f2bf9c999407dba260783570816b0edfadd90bdebe6d6db637f9aa9589f2b5824ab6e833c4527fa760e177ed866ce302fce85d9b9daa2608"; }
{ locale = "el"; arch = "linux-x86_64"; sha512 = "bbb2971ba5c3ebda94312f740c54ef0b4b4b4f2311d4a017e272260945a9f063eb4d341857919da4107f2207f3265df9439aea78d636d9c357fd79a11239fd9e"; }
{ locale = "en-GB"; arch = "linux-i686"; sha512 = "507f8f79718698b9599d52e7b5a4a9157c05ae1642622eff1b3547861532ece9727b3d56f67a20ca38df0f32375beec65ec3c7b1ba929799ddc057b4b95d1b8d"; }
{ locale = "en-GB"; arch = "linux-x86_64"; sha512 = "bbaceccac3ad841259058c738ef2baef780e96177b3b6a635fbc8a18de53137ec6831729b9f98bcb6b4442fe58b5dd71f526a9f0f3b86231a41bb0a48ea4c930"; }
{ locale = "en-US"; arch = "linux-i686"; sha512 = "28b5d2699a65792457414d178bb3bc4d73abf911860ecbcf75bbcfae91b24a056fd67d6aa4d50e4b3003ef84c63750050e16e74c92b690fe9b24347de3ad54a7"; }
{ locale = "en-US"; arch = "linux-x86_64"; sha512 = "08034ab8d833f7a2e63a7e40a56dfc78a2dd762e73d1a4b8fd0dd70ad23da5d525771846f47c8e7798517d1f85fef9bc2a8437af3d6ba71d7402a9f6a93d5679"; }
{ locale = "es-AR"; arch = "linux-i686"; sha512 = "3f08fc47b03cf095bcfc0af78064fd7179006a4b3240292fbd109b2a4c58c55719328eed631a67ca7a3f0f68ac8d2fcc577596bf532ad95442fba728270ef28a"; }
{ locale = "es-AR"; arch = "linux-x86_64"; sha512 = "cfe7e9f8dd67fb52462f840048115e54e5f789a34b63c5d7ec592ccc3a2b25220a66fb7499a50f32539d61205fc46199c0167ad5a75ea46123b96070329a236d"; }
{ locale = "es-ES"; arch = "linux-i686"; sha512 = "d2c4cc32d2ae7bfdde1870686675f644f4eb3f2bd0870fa72986f5cef2cc3c45b8070b6df3196e67275bc67c1ece63706f1fcae3b89d80fea8db5c34b9f4b638"; }
{ locale = "es-ES"; arch = "linux-x86_64"; sha512 = "6f4d295638ab8d16e1ec1db176d9a60946ee76cacb21c7e10018c2b908e5dad0527705d37b7050d11587244e922fa9e218482fcef40c3beab06c07db3dd8ccfb"; }
{ locale = "et"; arch = "linux-i686"; sha512 = "e352de0fb13570e5fd39bae39ea7dfab746529e8617beb8cca51c0a6183614722f62f93e91065c74fbe24e0cd91c03428d76c6e70369a60a64957ebebd1052d7"; }
{ locale = "et"; arch = "linux-x86_64"; sha512 = "583be1a8c7f1e2aac3242371ca8f34710510c6750b95f933e1574f9ba0e2a6ad733de4c9cc503909a063250d969aaaee6a53a69aae0c502274f5b0d43fc33b43"; }
{ locale = "eu"; arch = "linux-i686"; sha512 = "9de8f87c48c65535c7b073ad90d9c1ad3b7f4932124529ffc1ece36175e5a139d4660efc4a850bd0034d885afc7d7889f137b10fb5972377a4ec97d6858c932f"; }
{ locale = "eu"; arch = "linux-x86_64"; sha512 = "101beb0a0dc8f33a78583f9b15036815b030429d471ba0c8852dde7a2e2c91bb6436c8dd36f39e4eab1ecdb38cec08c7ab88f4649b5d25a246657d358984f7c2"; }
{ locale = "fi"; arch = "linux-i686"; sha512 = "9670d209fabc23fed2dadb873335e3964b7107b67fbfda39e53fa28ff1d91fd617f73d041cd9d4d0b9dfbdc9e619f69ce05199f7afd383a4fd6717b9f912dee9"; }
{ locale = "fi"; arch = "linux-x86_64"; sha512 = "3c2b135437a80047ec04e9995d119b32e948d105677bde0efe505272a0768d860e8b68dbe487bb81c38f9eee94a7bcc23c976a3dd614300056ec578bb5dbe7a1"; }
{ locale = "fr"; arch = "linux-i686"; sha512 = "d14822f3ef67082a77488ee3f7b6e3294a01f12e48cf037fb2b41ab9c5e4af01f1b0a76b29673c9196f2caa16dade84183d69a6bbf1dd618e7742f9e1d903477"; }
{ locale = "fr"; arch = "linux-x86_64"; sha512 = "e1fdb863309bcdf382c3533b15ff1c3e4e9ee6f4c0ea097790c432d302b4a0712d00b1f0851dbc4c4e9c3758f941eddffd82dd1d3912dc76afc20e05083b82ad"; }
{ locale = "fy-NL"; arch = "linux-i686"; sha512 = "3881348184cdbac93b452e9f5c9ebbf14c542dff68cb500c82204dec42c3433e3b356f2d332c1fb5a4f6649e8bd5b03564bbd1f75bb25c2d946c72ba955c4b63"; }
{ locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "3182f39c26085bc882cb1a391c63f2ce58a8ffcffce4ae1ca9293a08e572d888691cb2968d93caee77576bc7568a0ad67f0ccb6815dfffadc9f8f798343c92b2"; }
{ locale = "ga-IE"; arch = "linux-i686"; sha512 = "a653b578be20b8127de26e7c8ac90adc04024cd108e078b5a5e2e7634d834d76f9227341e52ab8b72fdc5f8c11787405eabc19403922c854f0d0fc7e9fcb0774"; }
{ locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "28dcbcefd11807482becc961244f58520498e0f9540f28c1e74d18f499cf5a209d51599783b8551ee937f228b406bd0605adef4146e29dccd8ccf2e5ef155a2c"; }
{ locale = "gd"; arch = "linux-i686"; sha512 = "2b39ed0b1533cce97f4c4e5663ffef0fc88611334cceeaee0687ccc87e8c4b0f58afd9d826e7e9b66634b51249b776820cf03fc841e739ff3504eadc02597dd5"; }
{ locale = "gd"; arch = "linux-x86_64"; sha512 = "525f632482577a3dcc2668495ad8c127bb8bc06412ef01ccf0188c1dbf735e73460cbabac439fc3dd80cf70519c45a439897ef91a1b32208d527e0b6487044f2"; }
{ locale = "gl"; arch = "linux-i686"; sha512 = "232bbd56d92ce7648ba57a061d8154b38bc6068dbde32b9ef17199d3a8bb28e1b0b384859d99c526fa96fbb35405520675ab3b45adc90caf125ac813bc77b5bd"; }
{ locale = "gl"; arch = "linux-x86_64"; sha512 = "5758ab0d5a6733395ba62601735193073fcee47ba7c3ab24d7031ce87447fb9018264bf3df1ab715ea786beb63a9d479e57217d56477d987021aa482c7b116a5"; }
{ locale = "he"; arch = "linux-i686"; sha512 = "dc7cd600a93276995634303cff80d77724b56f0b7ff2fdfe8fe7da23d57d5f4f3d0e0169508c02c9ac57092da58d9ac9e3646f951ca4cb1fd398c70196fc6405"; }
{ locale = "he"; arch = "linux-x86_64"; sha512 = "bdb385f4df861b1109169e1819860d46e8edf4d58588d4cdce609387117adeafe35e8bb17a0a2e43bcf12b1bb2244f089f3a1669cd69bb507434da202a1c7e15"; }
{ locale = "hr"; arch = "linux-i686"; sha512 = "e7dc17107f762128bac6f0e173ceaec6a9e910dc84d486a0c9447365f1df07fcc1379dd2f05416aa904637836deac5a924f704396ab2af149676a6b1d075c52f"; }
{ locale = "hr"; arch = "linux-x86_64"; sha512 = "74600954b56b03d4f2bcc71b32f6c8a19be483af16a7cd2b841fabea6eb042ded21afb1c196aa9bea97c81aae1732d7153e8419f97f439b44570ae53e53f88ea"; }
{ locale = "hsb"; arch = "linux-i686"; sha512 = "d42d5b10480100a38d2fe275be060423593f54f9aa6cda13fdac96fca9a36590dd9bb8d1638cca935faedbd09bf2435c0a2858ae9c2ce653af7b2dd183f46f29"; }
{ locale = "hsb"; arch = "linux-x86_64"; sha512 = "c41c5b57d7c170c54cd0817dbe21be8ba9e94b99fe28d7478ceb6545c6bf64a215d9ed6c66f99f116f43bb7b442ba6765613c15d14648ff64be3c0c5d7a6c763"; }
{ locale = "hu"; arch = "linux-i686"; sha512 = "d2ee002d390bf44ecdadba86ece0d77bdb4ea96a69a79dac4064a4c3f3244c9aeed95df4a1101535fb02225e0305e1d7e97389d4419574ad98d9484237aaff84"; }
{ locale = "hu"; arch = "linux-x86_64"; sha512 = "aca465875d8f3cb5815dd2de0546b7a822b55090c78f049d6d3a885f29c90fcbc437f0b7184e8249bb9c8dcc1ca4f146f1cf0067a751590df2d8c5fe4aeeea5d"; }
{ locale = "hy-AM"; arch = "linux-i686"; sha512 = "567cba4a91dcc944e1922a429c8b328fc3b2843105056cef938a97c2ba73806f0fee2471b6fe6898856230c54ae0cb6110ebb249eaf9363a0beb35ed2aa0daba"; }
{ locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "34bf0a6638822fd1ea6c1a51e01d0d2f370202c61bb5a728abbeb2c1335c9130f3a4fbb7c26f9cb8025849aefde09eaf58567c7aedfd7d854d7313baeb8fd698"; }
{ locale = "id"; arch = "linux-i686"; sha512 = "9dd1e0ba44787921fe8fce39f430575334e61948cbbd2e31923c67779c795dc0fc64cc0e46d62e3fa749a3d6cac12c3cb54c3f9e62e02930c1f4fd9a17fa50b2"; }
{ locale = "id"; arch = "linux-x86_64"; sha512 = "78385b8276c5a9449d34a0233b40280437dacfc04a9d5d8291ae8603ee5b89337c5b53d4da80f41ca8c7153719654d6506027179c4a79575fd555d9dc8740d4f"; }
{ locale = "is"; arch = "linux-i686"; sha512 = "02bc577e3d696735a280079fef84361d556a04c5d3f11f5af93f9ec5220ed729f237eb67120739192dfeedcb4570480bc40da9c413ca2b7f9023a5742cbb2e4a"; }
{ locale = "is"; arch = "linux-x86_64"; sha512 = "5de6270e4dd79f402163fdd724fa0987563c1f474c54b555e84ebd94cdb865bd890de21e3dc44ace9dc2bcc70fb182b78752840b6860a6f0494fbfadf4f705c6"; }
{ locale = "it"; arch = "linux-i686"; sha512 = "d81131a4322b0a069f3f914d394f8400b0d532aad4f1a0316288ed00df184798c5c61484cbb50a134e7b681a2f150bd04416147734f0d73731811349e537a2d3"; }
{ locale = "it"; arch = "linux-x86_64"; sha512 = "7c9ce8e652dc994ee1155e4d1d3375ad093d8f684c422157a5c450edc3701151a1ca8036dda5f79781860ea1e138960266a7df77c16770418f4cb8327e2a2767"; }
{ locale = "ja"; arch = "linux-i686"; sha512 = "6b96e8bba64fb004021838e41a36f13469eb48cb03659bceb12b897dd09fdc44f32d279e71e97b146a77fc0433cd85eb38449bf666355692a25f39eddc2775b8"; }
{ locale = "ja"; arch = "linux-x86_64"; sha512 = "90c7f76fecc1c9eafbbd7f2f935a006266372d4192c2382c447b52a7993b650b6bb769d1f2f067540f038588b862a82ab4f1dc3b8a7c2a484fedaee55c82889e"; }
{ locale = "ko"; arch = "linux-i686"; sha512 = "c2e509fd91664c9ae9d12ad4eebbc875b96c3b7124b88373fbbfb8ef3ec45b3525e8e9c6a295680c583b55564ee26855f2d607a661bfce9d9f57acdc4b90a3cb"; }
{ locale = "ko"; arch = "linux-x86_64"; sha512 = "b5fb1e955dde624bdf52a58d5ffadf99cc7fb0a0e757d236c553675aca14fbc942d420a63c91f64e584486fda3e0ecc39c62dbba6b3a62910d01447d7cafd4fc"; }
{ locale = "lt"; arch = "linux-i686"; sha512 = "a24deedd6a2ed118cbdb9fc66c17aeb5756d8bf3586a096164c0c1841e1bd7a4b6179cacff3f058bbc9bef40186acf3833a5b2e75aeca8ee525302953fd7ea58"; }
{ locale = "lt"; arch = "linux-x86_64"; sha512 = "f4e0a5ec95a30f04a8ee84dd1f4f8bf7427255d382c0fc6a35f63a935edf54380dcd73bca5329ea01147e89c4d3faf30582412618e93a543643ee5922e9044b9"; }
{ locale = "nb-NO"; arch = "linux-i686"; sha512 = "c10d7ce6f66d716c550f27ba793cd6239d98ef7fb1dc75605288f426bb2fb65357af95134c4c2241f0438ac90995f666a488a3a61e7696318180496bc29cc94f"; }
{ locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "a722d43addca22cfc791da37de60d5ab96e18d66fbb0d8b4b3de9f08202b01bec8c5b8300404df19689d154249d80b0f84a6e09335f607c74a7ee65f64daecee"; }
{ locale = "nl"; arch = "linux-i686"; sha512 = "030da83ad81fcb1ce7188d8957fc0ea216372aa4e1fd6fd7d173ef5e329d95d8cd61d1ec9db3e28887d2f949056172644b0590e05815478abb42427d0ad5c06b"; }
{ locale = "nl"; arch = "linux-x86_64"; sha512 = "6ea70e3fedc1cf1ea6f75ce9be7c8a7a6245e167f65baaabcdfd3194e70ca5474766e9ccd0d8180270b84c78697793a9af5b82a8f7a773c46b1af0a025382a99"; }
{ locale = "nn-NO"; arch = "linux-i686"; sha512 = "354bb0c0447c8e7a54e8e8218f659f4810a6e2848f85c482cf289fe77518fce9c33bd817019bf089f254f71b141d65061c2a690190000c968badd939feaacec0"; }
{ locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "fa2484614a067461d8cc3c1fab8675f65b17fc6419c0fe1a8f15e98e8ffffea7297391ec8ec50ec8d2fe1cac4b348afe0b82f2db55584c46cbe2d62daf3a8e4b"; }
{ locale = "pa-IN"; arch = "linux-i686"; sha512 = "045fa66125cc3c4fc4650bf4e5ea12aae1b26f2cc4191d6b464f41e5305f015611463b311f3bb55264d07b48edbbff606cb58f73d91b22b3bfaaf5de0b830121"; }
{ locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "696dad47dde2f2494f0410fb698b52ca87112e2c29310aea585b703f4633e404f533d37e6bbe09939aa6f575f426d0a4f2605ca5b95fccafc033569bfe258872"; }
{ locale = "pl"; arch = "linux-i686"; sha512 = "1848c4c819fa0aebeeec75ac43f3bcf3fa332ba08b79c8296a17aadc7d0434d2b634280541c8d71a68390e3a892a88dd49a0ab4b25c3a2b4b5e7321132801ee9"; }
{ locale = "pl"; arch = "linux-x86_64"; sha512 = "e9e0b937a165fd90e0639a01001c9b4ada645c9a1201b64ae6cbc1bbf885b5d0b89e195ca5732aaae66360dfc4f188ac8f1643bf12bdbfa029a348aa29a0f79a"; }
{ locale = "pt-BR"; arch = "linux-i686"; sha512 = "4a69c26598d48d25d048288b6d1785dc8e4d89078eca3d300497a93d44639a8eaca0c32c1988abd831d33e0c32788e8ca6d07fdec9cd4ba7f451a23afbddc525"; }
{ locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "72d387d49ae5f4dd6406f63fd5c0003f99865079c9d63d7d3deaf15268437dba592642ee8bc759df85fb679da094078c1bdf9808de05bf5e35ac870a62b960e2"; }
{ locale = "pt-PT"; arch = "linux-i686"; sha512 = "b3ff7eecd345f789bc4798e94402fe7cf7a0cbf27b03f3d8f92274f39764cfd38bd1e4ad5745f3d177645f2c5bea6cb4aa2f1110c90d524bc6b89916c00b2eb2"; }
{ locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "684849e41f77410c290688582488243fed9594c02ebdd85812a2c63e0cc410b470c14533d09184a83df43555b9ff1d775ed0f1ddbe24bb6890848ccce4e041f6"; }
{ locale = "rm"; arch = "linux-i686"; sha512 = "02c4171d05c1f070cde474ad60edd7aded613ec1fd7bf51391fe4718554eed435282c44bf891703c356f5bfc0dd08093ef5bc7c979174d5b7fdab1529dde9dbe"; }
{ locale = "rm"; arch = "linux-x86_64"; sha512 = "9ea31a30e8b5624c03c1627a6e2e1895a3ede5d35e1b9da0b16d6571c13af0e34cfcbe17f396638c8946b1f96037e9c833b3ed58ad46a9e0bf38ffc0e1dc8bba"; }
{ locale = "ro"; arch = "linux-i686"; sha512 = "dc5b581971333067b25317b702a2e9f58484ae66f640ecda0f9d7c8323fbf8c9fb6ca47fb59c94494e641787f7e9b95c6a4cf3037bf2fc974cc394160359910e"; }
{ locale = "ro"; arch = "linux-x86_64"; sha512 = "92ef0d86e46d8c80685e9bcd16331447e310147b87cdb45bf80ab2992b4ea11626cf5fbf860ee807d2d8d4e6c7c4fdd352de4c498a57c6951f66ebf72bd60aeb"; }
{ locale = "ru"; arch = "linux-i686"; sha512 = "511f96bd7713ea798904216d466f362115922c1566d7214115df7665d9e152b9866bb66608f5426080251f55391ac92eb8ec8a0e76d9471563a0bd84fc8c4431"; }
{ locale = "ru"; arch = "linux-x86_64"; sha512 = "57f6669ae5706a4673bb15b1eb06d89807a9a1a0fb59493b2380778efd8dd3f014d1e0a354c16e71207bf0121a561720caa1a71a846237044889916374b6a5d6"; }
{ locale = "si"; arch = "linux-i686"; sha512 = "9eb41ae08570098f2cd9d099cec9d2a21490f5bbd7a5a9a422ae9c83b72fb50af2768ed7c33d0d174c3bd09b365107b1e726a57db8fd6bcf52dcc7430f8d22fe"; }
{ locale = "si"; arch = "linux-x86_64"; sha512 = "03291a8e69b3b6ebb69e25627ed77fed3e7a008ae77f869b262983fb9334e61748a1028f6dd4e1aabf513b7f6cbaefef83c237107d88c1b177c31f34fff54e3f"; }
{ locale = "sk"; arch = "linux-i686"; sha512 = "0152a947109f5257ec17889453cf650d1dcdd40825208053e65b70e8281579fce307d1f38e6d682d7a8d2f3da377c91ca1e249bc1d507c768d2f08292e5e6b90"; }
{ locale = "sk"; arch = "linux-x86_64"; sha512 = "d2fdb7585af8a1507362b44b9383acc611668cc4aeb912d98424a49543cefb9a58f95aaa77c1b36a1082fd1334f60df939900e1673e32d3af764ca5ce746d144"; }
{ locale = "sl"; arch = "linux-i686"; sha512 = "c2cedc7a07a27f439e5833ca9a1214d0e75b2154ff879fa39b06ab6baa05d13feac227b51d1126d70ef907942db1dcaf1e7c987128f752d0dc1d147266cf520f"; }
{ locale = "sl"; arch = "linux-x86_64"; sha512 = "07aa88c7d281e247e9c30f9ae3b8329132d4a145e8a8b0f88b544995d39f58d196fb6ce6a5604954129222a848ce49aa07a0bf6f1ab3a4b1fd29e61f51c7664f"; }
{ locale = "sq"; arch = "linux-i686"; sha512 = "e2afd03139f475ae68206cc1f35780261abd7646babd7f05c255acbcdbb712f11ea0b7b68887d0fc05e8bcded3a166cea490c86b2936be7d400c919efbb221cd"; }
{ locale = "sq"; arch = "linux-x86_64"; sha512 = "7b91f7c6cdeda2735dbe7befcdec777a6d22c1aa278d4a1caa8cb15441841b4edb7599e8d4d4fbc1d198cc6178625ad4a29455e7195ab563e9bd3ac4faa1104c"; }
{ locale = "sr"; arch = "linux-i686"; sha512 = "6b92ea68fde0ede23bdd7998a81d9924e35b8cb77cc396636fb91495cafe039c32efa272f8c3693fa4ec582eb04bc0db6d22991e3056d22188e0eb8c64bf352b"; }
{ locale = "sr"; arch = "linux-x86_64"; sha512 = "3ca3f049f677f9283d9af660d2989f5c05ed418bb904e7695e456f73d9615da106e0f0db2c3a371109c77fd7348eef5a94d8061b3a0ad508d193e1234839f954"; }
{ locale = "sv-SE"; arch = "linux-i686"; sha512 = "95bbcfaade0c12d87c8b591e3d9d6205e1056741e9eb526cc505687e2ee43fbdb96ff0b411c63b58c6fdd57260180a94d343155163518843a843f5f3b086b25b"; }
{ locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "15d0bfb22e6f0d3425737dd05dedc5af7e1f98744fb0d943cd88ad6125083bc86bbfb700d71839a090f9b54642cc1b0ebb8fbd205d46316f83cab75bd5442ec9"; }
{ locale = "ta-LK"; arch = "linux-i686"; sha512 = "89b3a7997d3cc3a8372ee49df3dee21e535403d08a2aa742a1416c1e7c41c63fa56fe50fe133f588f3a34db180c4505f05034e99e078c0b19e1eef6f48e3d7fb"; }
{ locale = "ta-LK"; arch = "linux-x86_64"; sha512 = "00c20fc4c27005e13cda53c5332bf874267e4bda6894480e599557e5e90a334b648a47ce28fff6353060d9a6fb4e547e632e2deb1513175023c1bf6d453a9583"; }
{ locale = "tr"; arch = "linux-i686"; sha512 = "1b791b57b9d8c3da228293c83fa02fc1a24a0b6b8a6efaecbfef42962f2390fb448d2fb08e5a812df8efcf135f9cecb98cba3b2b174e59b43575236ba5fb2f76"; }
{ locale = "tr"; arch = "linux-x86_64"; sha512 = "7040da3720ce3b0dad6e2863b48e025c32206c8a0d6cdae4e4fb13b7b6754796e9e1b83a09280303a83c97ddaf391c10a56aa8edfe1e7eca60534a6e1d4006d3"; }
{ locale = "uk"; arch = "linux-i686"; sha512 = "54412cf33dab4be4553d267cad386d47ca38726e8643de10b8509828ba6c25f2c35e151165d3d999c22724ba57028b740f9b5e5f9a05aa773779759ffe6ced78"; }
{ locale = "uk"; arch = "linux-x86_64"; sha512 = "3725c3c9c7ee8140b2c9ae3ad928e933afbfaab60ec27b8f1a8c56a87553c0123031d50d27c794407b6971b347b8f379c1c92ddff00db960bb635fb0cd945ebf"; }
{ locale = "vi"; arch = "linux-i686"; sha512 = "92edb5e4789d1e1a63d5f69f99a06ae474d85949771c07ef572ce5ae66a125d5c04ea207b51fcb4ee2d1f00052f53ee8415d109cb06e53c55e9436f37e375d3f"; }
{ locale = "vi"; arch = "linux-x86_64"; sha512 = "e786670f4033857873e5238118b23a86638b190db51d70ac55662718126621580bffd705803638bf71556caa397f3420efaa08e83e06abb4c2e2dbdd22f111af"; }
{ locale = "zh-CN"; arch = "linux-i686"; sha512 = "9af79559703b8734df11c2773ccd7f77a88d9dc5ebf2df1bac14fdef4ad0f45c840102e5bb86f6172ad6e7d225af8a1723d4de84b877fb2574fd1a729213ea08"; }
{ locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "4d63dc15450d9297d4f161c72eded27d6176bc755f657012821cd9d9e989597c296f985e12af39d7a1b37dd5cf442fdbf9d2e1f7e6f11ba841ed87ea279d813b"; }
{ locale = "zh-TW"; arch = "linux-i686"; sha512 = "7bca2ef8b1e597346c0450870fcd0058fac18b3f3607c6280774db97d594e98928bf291ee22146d70f2de40437e38088b9a8af71b0b076b9bbf2049067bfc448"; }
{ locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "64ee5cf56a48159c1a2aee2c8dc9118ce9187c5c68a9a1393e2c28a35786fd42042b13d48d30ececf1893973ccab92c0a8b23cbaec340a5150cc1a994236c6cc"; }
];
}

View file

@ -13,7 +13,7 @@
enableOfficialBranding ? false
}:
let version = "45.1.1"; in
let version = "45.2.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 = "13kiida7smgl3bz1hx88hdvi2mj4z5b726gcw7nndxml60y10z8h";
sha256 = "1h1p14zswrg71qvzshwvw03mhicwwkfg29hvnj56cf41nb5qj8xx";
};
buildInputs = # from firefox30Pkgs.xulrunner, without gstreamer and libvpx

View file

@ -20,25 +20,21 @@ stdenv.mkDerivation rec {
# Brute force: since nix-worker chroots don't provide
# /etc/{resolv.conf,hosts}, replace all references to `localhost'
# by their IPv4 equivalent.
for i in $(find . \( -name \*.c -or -name \*.conf \) \
-exec grep -l '\<localhost\>' {} \;)
do
echo "$i: substituting \`127.0.0.1' to \`localhost'..."
sed -i "$i" -e's/\<localhost\>/127.0.0.1/g'
done
find . \( -name \*.c -or -name \*.conf \) | \
xargs sed -ie 's|\<localhost\>|127.0.0.1|g'
# Make sure the tests don't rely on `/tmp', for the sake of chroot
# builds.
for i in $(find . \( -iname \*test\*.c -or -name \*.conf \) \
-exec grep -l /tmp {} \;)
do
echo "$i: replacing references to \`/tmp' by \`$TMPDIR'..."
substituteInPlace "$i" --replace "/tmp" "$TMPDIR"
done
find . \( -iname \*test\*.c -or -name \*.conf \) | \
xargs sed -ie "s|/tmp|$TMPDIR|g"
# Ensure NSS installation works fine
configureFlags="$configureFlags --with-nssdir=$out/lib"
patchShebangs src/gns/nss/install-nss-plugin.sh
sed -ie 's|@LDFLAGS@|@LDFLAGS@ $(Z_LIBS)|g' \
src/regex/Makefile.in \
src/fs/Makefile.in
'';
doCheck = false;
@ -53,7 +49,7 @@ stdenv.mkDerivation rec {
'';
*/
meta = {
meta = with stdenv.lib; {
description = "GNU's decentralized anonymous and censorship-resistant P2P framework";
longDescription = ''
@ -73,9 +69,9 @@ stdenv.mkDerivation rec {
homepage = http://gnunet.org/;
license = stdenv.lib.licenses.gpl2Plus;
license = licenses.gpl2Plus;
maintainers = with stdenv.lib.maintainers; [ viric ];
platforms = stdenv.lib.platforms.gnu;
maintainers = with maintainers; [ viric vrthra ];
platforms = platforms.gnu;
};
}

View file

@ -0,0 +1,70 @@
{ stdenv, fetchsvn, pkgconfig, makeDesktopItem, unzip, fpc, lazarus,
libX11, glib, gtk, gdk_pixbuf, pango, atk, cairo, openssl }:
stdenv.mkDerivation rec {
name = "transgui-5.0.1-svn-r${revision}";
revision = "986";
src = fetchsvn {
url = "https://svn.code.sf.net/p/transgui/code/trunk/";
rev = revision;
sha256 = "0z83hvlhllm6p1z4gkcfi1x3akgn2xkssnfhwp74qynb0n5362pi";
};
buildInputs = [
pkgconfig unzip fpc lazarus stdenv.cc
libX11 glib gtk gdk_pixbuf pango atk cairo openssl
];
NIX_LDFLAGS = "
-L${stdenv.cc.cc.lib}/lib
-lX11 -lglib-2.0 -lgtk-x11-2.0 -lgdk-x11-2.0
-lgdk_pixbuf-2.0 -lpango-1.0 -latk-1.0 -lcairo -lc -lcrypto
";
prePatch = ''
substituteInPlace restranslator.pas --replace /usr/ $out/
'';
makeFlags = [
"FPC=fpc"
"PP=fpc"
"INSTALL_PREFIX=$(out)"
];
LCL_PLATFORM = "gtk2";
desktopItem = makeDesktopItem rec {
name = "transgui";
exec = name + " %U";
icon = name;
type = "Application";
comment = meta.description;
desktopName = "Transmission Remote GUI";
genericName = "BitTorrent Client";
categories = stdenv.lib.concatStringsSep ";" [
"Application" "Network" "FileTransfer" "P2P" "GTK"
];
startupNotify = "true";
mimeType = stdenv.lib.concatStringsSep ";" [
"application/x-bittorrent" "x-scheme-handler/magnet"
];
};
postInstall = ''
mkdir -p "$out/share/applications"
cp $desktopItem/share/applications/* $out/share/applications
mkdir -p "$out/share/icons/hicolor/48x48/apps"
cp transgui.png "$out/share/icons/hicolor/48x48/apps"
mkdir -p "$out/share/transgui"
cp -r "./lang" "$out/share/transgui"
'';
meta = {
description = "A cross platform front-end for the Transmission Bit-Torrent client";
homepage = https://sourceforge.net/p/transgui;
license = stdenv.lib.licenses.gpl2Plus;
maintainers = with stdenv.lib.maintainers; [ ramkromberg ];
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -2,12 +2,12 @@
stdenv.mkDerivation rec{
name = "wpsoffice-${version}";
version = "10.1.0.5503";
version = "10.1.0.5672";
src = fetchurl {
name = "${name}.tar.gz";
url = "http://kdl.cc.ksosoft.com/wps-community/download/a20/wps-office_10.1.0.5503~a20p2_x86_64.tar.xz";
sha256 = "0h9f8s7zkpd056ibrj978mr04imv631sp1wljplh99l5ncns6hws";
url = "http://kdl.cc.ksosoft.com/wps-community/download/a21/wps-office_10.1.0.5672~a21_x86_64.tar.xz";
sha1 = "7e9b17572ed5cea50af24f01457f726fc558a515";
};
meta = {

View file

@ -0,0 +1,47 @@
{ stdenv, fetchurl
, bison, readline }:
stdenv.mkDerivation rec {
version = "2.2.2";
# The current version of LiE is 2.2.2, which is more or less unchanged
# since about the year 2000. Minor bugfixes do get applied now and then.
name = "LiE-${version}";
meta = {
description = "A Computer algebra package for Lie group computations";
homepage = "http://wwwmathlabo.univ-poitiers.fr/~maavl/LiE/";
license = stdenv.lib.licenses.lgpl3; # see the website
longDescription = ''
LiE is a computer algebra system that is specialised in computations
involving (reductive) Lie groups and their representations. It is
publically available for free in source code. For a description of its
characteristics, we refer to the following sources of information.
''; # take from the website
platforms = stdenv.lib.platforms.unix;
maintainers = [ ]; # this package is probably not going to change anyway
};
src = fetchurl {
url = "http://wwwmathlabo.univ-poitiers.fr/~maavl/LiE/conLiE.tar.gz";
sha256 = "07lbj75qqr4pq1j1qz8fyfnmrz1gnk92lnsshxycfavxl5zzdmn4";
};
buildInputs = [ bison readline ];
patchPhase = ''
substituteInPlace make_lie \
--replace \`/bin/pwd\` $out
'';
installPhase = ''
mkdir -vp $out/bin
cp -v Lie.exe $out
cp -v lie $out/bin
cp -v LEARN LEARN.ind $out
cp -v INFO.ind INFO.[0-4] $out
'';
}

View file

@ -1,8 +1,9 @@
{ stdenv, fetchurl, fetchFromGitHub, pkgconfig, perl, python, which, makeQtWrapper
{ stdenv, fetchFromGitHub, fetchpatch, pkgconfig, perl, python, which, makeQtWrapper
, libX11, libxcb, mesa
, qtbase, qtdeclarative, qtquickcontrols, qttools, qtx11extras, qmakeHook
, ffmpeg
, libchardet
, ffmpeg
, mpg123
, libass
, libdvdread
@ -38,11 +39,30 @@ stdenv.mkDerivation rec {
sha256 = "0a7n46gn3n5098lxxvl3s29s8jlkzss6by9074jx94ncn9cayf2h";
};
patches = [
(fetchpatch rec {
name = "bomi-compilation-fix.patch";
url = "https://svnweb.mageia.org/packages/cauldron/bomi/current/SOURCES/${name}?revision=995725&view=co&pathrev=995725";
sha256 = "1dwryya5ljx35dbx6ag9d3rjjazni2mfn3vwirjdijdy6yz22jm6";
})
(fetchpatch rec {
name = "bomi-fix-expected-unqualified-id-before-numeric-constant-unix.patch";
url = "https://svnweb.mageia.org/packages/cauldron/bomi/current/SOURCES/${name}?revision=995725&view=co&pathrev=995725";
sha256 = "0n3xsrdrggimzw30gxlnrr088ndbdjqlqr46dzmfv8zan79lv5ri";
})
];
buildInputs = with stdenv.lib;
[ libX11 libxcb mesa
qtbase qtx11extras
[ libX11
libxcb
mesa
qtbase
qtx11extras
qtdeclarative
qtquickcontrols
ffmpeg
libchardet
mpg123
libass
libdvdread
@ -53,8 +73,6 @@ stdenv.mkDerivation rec {
libvdpau
libva
libbluray
qtdeclarative
qtquickcontrols
]
++ optional jackSupport jack
++ optional portaudioSupport portaudio

View file

@ -1,29 +1,33 @@
{stdenv, fetchgit, xproto, libX11, enableXft, libXft}:
{stdenv, fetchgit, xproto, libX11, libXft, customConfig ? null, patches ? [] }:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "tabbed-20150509";
name = "tabbed-20160425";
src = fetchgit {
url = http://git.suckless.org/tabbed;
rev = "55dc32b27b73c121cab18009bf087e95ef3d9c18";
sha256 = "0c5ayf1lrb1xiz5h8dfd4mh05kas42zzi5m5ylrvl67sfz3z4wg1";
rev = "bc236142fa72d2f9d6b5c790d3f3a9a9168a7164";
sha256 = "1fiv57g3jnlhnb6zrzl3n6lnpn2s9s0sd7bcv7r1nb3grwy7icri";
};
patches = optional enableXft ./xft.patch;
inherit patches;
buildInputs = [ xproto libX11 ] ++ optional enableXft libXft;
preInstall = ''
export makeFlags="PREFIX=$out"
postPatch = stdenv.lib.optionalString (customConfig != null) ''
cp ${builtins.toFile "config.h" customConfig} ./config.h
'';
buildInputs = [ xproto libX11 libXft ];
makeFlags = [
"PREFIX=$(out)"
];
meta = {
homepage = http://tools.suckless.org/tabbed;
description = "Simple generic tabbed fronted to xembed aware applications";
license = licenses.mit;
maintainers = with maintainers; [ viric ];
maintainers = with maintainers; [ viric vrthra ];
platforms = platforms.linux;
};
}

View file

@ -20,6 +20,7 @@ http_proxy=${http_proxy:-}
fullRev=
humanReadableRev=
commitDate=
commitDateStrict8601=
if test -n "$deepClone"; then
deepClone=true
@ -287,9 +288,12 @@ _clone_user_rev() {
fi;;
esac
fullRev="$(cd "$dir" && (git rev-parse "$rev" 2> /dev/null || git rev-parse "refs/heads/$branchName") | tail -n1)"
humanReadableRev="$(cd "$dir" && (git describe "$fullRev" 2> /dev/null || git describe --tags "$fullRev" 2> /dev/null || echo -- none --))"
commitDate="$(cd "$dir" && git show --no-patch --pretty=%ci "$fullRev")"
pushd "$dir" >/dev/null
fullRev=$( (git rev-parse "$rev" 2>/dev/null || git rev-parse "refs/heads/$branchName") | tail -n1)
humanReadableRev=$(git describe "$fullRev" 2> /dev/null || git describe --tags "$fullRev" 2> /dev/null || echo -- none --)
commitDate=$(git show --no-patch --pretty=%ci "$fullRev")
commitDateStrict8601=$(git show --no-patch --pretty=%cI "$fullRev")
popd >/dev/null
# Allow doing additional processing before .git removal
eval "$NIX_PREFETCH_GIT_CHECKOUT_HOOK"
@ -337,6 +341,7 @@ print_results() {
echo "{"
echo " \"url\": \"$url\","
echo " \"rev\": \"$fullRev\","
echo " \"date\": \"$commitDateStrict8601\","
echo -n " \"$hashType\": \"$hash\""
if test -n "$fetchSubmodules"; then
echo ","

View file

@ -1,4 +1,4 @@
{ stdenv, lib, fetchFromGitHub }:
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "iosevka-${version}";
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
cp -v iosevka-* $fontdir
'';
meta = with lib; {
meta = with stdenv.lib; {
homepage = "http://be5invis.github.io/Iosevka/";
downloadPage = "https://github.com/be5invis/Iosevka/releases";
description = ''

View file

@ -0,0 +1,29 @@
{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
pname = "norwester";
version = "1.2";
name = "${pname}-${version}";
src = fetchurl {
url = "http://jamiewilson.io/norwester/assets/norwester.zip";
sha256 = "0syg8ss7mpli4cbxvh3ld7qrlbhb2dfv3wchm765iw6ndc05g92d";
};
phases = [ "installPhase" ];
buildInputs = [ unzip ];
installPhase = ''
mkdir -p $out/share/fonts/opentype
unzip -D -j $src ${pname}-v${version}/${pname}.otf -d $out/share/fonts/opentype/
'';
meta = with stdenv.lib; {
homepage = "http://jamiewilson.io/norwester";
description = "A condensed geometric sans serif by Jamie Wilson";
maintainers = with maintainers; [ leenaars ];
license = licenses.ofl;
platforms = platforms.all;
};
}

View file

@ -0,0 +1,50 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "orbitron-${version}";
version = "20110526";
src = fetchFromGitHub {
owner = "theleagueof";
repo = "orbitron";
rev = "13e6a52";
sha256 = "1c6jb7ayr07j1pbnzf3jxng9x9bbqp3zydf8mqdw9ifln1b4ycyf";
};
phases = [ "unpackPhase" "installPhase" ];
installPhase = ''
otfdir=$out/share/fonts/opentype/orbitron
ttfdir=$out/share/fonts/ttf/orbitron
mkdir -p $otfdir $ttfdir
cp -v Orbitron*.otf $otfdir
cp -v Orbitron*.ttf $ttfdir
'';
meta = with stdenv.lib; {
homepage = "https://www.theleagueofmoveabletype.com/orbitron";
downloadPage = "https://www.theleagueofmoveabletype.com/orbitron/download";
description = ''
Geometric sans-serif for display purposes by Matt McInerney'';
longDescription = ''
Orbitron is a geometric sans-serif typeface intended for display
purposes. It features four weights (light, medium, bold, and
black), a stylistic alternative, small caps, and a ton of
alternate glyphs.
Orbitron was designed so that graphic designers in the future
will have some alternative to typefaces like Eurostile or Bank
Gothic. If youve ever seen a futuristic sci-fi movie, you have
may noticed that all other fonts have been lost or destroyed in
the apocalypse that led humans to flee earth. Only those very few
geometric typefaces have survived to be used on spaceship
exteriors, space station signage, monopolistic corporate
branding, uniforms featuring aerodynamic shoulder pads, etc. Of
course Orbitron could also be used on the posters for the movies
portraying this inevitable future.
'';
license = licenses.ofl;
platforms = platforms.all;
maintainers = [ maintainers.leenaars ];
};
}

View file

@ -2,16 +2,16 @@
stdenv.mkDerivation rec {
name = "unifont-${version}";
version = "8.0.01";
version = "9.0.01";
ttf = fetchurl {
url = "http://fossies.org/linux/unifont/font/precompiled/${name}.ttf";
sha256 = "0g4g2n024072cdrs2wjp7xmkr3i9dm52a5g9hiafxjgj5a45c8kl";
sha256 = "0n2vdzrp86bjxfyqgmryrqckmjiiz4jvsfz9amgg3dv2p42y0dhd";
};
pcf = fetchurl {
url = "http://fossies.org/linux/unifont/font/precompiled/${name}.pcf.gz";
sha256 = "0mpdy2k7z9s60x8i6sbv64p9wrihfwgrw81x5yj13rl6x7zzghr8";
sha256 = "1n3zff46pk6s2x5y7h76aq7h9wfq2acv77gpmxkhz5iwvbpxgb4z";
};
buildInputs = [ mkfontscale mkfontdir ];
@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
# Basically GPL2+ with font exception.
license = http://unifoundry.com/LICENSE.txt;
maintainers = [ maintainers.rycee ];
maintainers = [ maintainers.rycee maintainers.vrthra ];
platforms = platforms.all;
};
}

View file

@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "unifont_upper-${version}";
version = "8.0.01";
version = "9.0.01";
ttf = fetchurl {
url = "http://unifoundry.com/pub/unifont-8.0.01/font-builds/${name}.ttf";
sha256 = "0ffqm85bk345pnql1x0rbg0z31472y844xibb27njjg4avb21lga";
url = "http://unifoundry.com/pub/unifont-9.0.01/font-builds/${name}.ttf";
sha256 = "06b7na4vb2fjn0zn14bmarzn6vb3ndkysixc89kmb2cc24kfpix1";
};
phases = "installPhase";
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
# Basically GPL2+ with font exception.
license = http://unifoundry.com/LICENSE.txt;
maintainers = [ maintainers.mathnerd314 ];
maintainers = [ maintainers.mathnerd314 maintainers.vrthra ];
platforms = platforms.all;
};
}

View file

@ -8,7 +8,7 @@ let
in
stdenv.mkDerivation rec {
name = "geolite-legacy-${version}";
version = "2016-06-20";
version = "2016-07-04";
srcGeoIP = fetchDB
"GeoLiteCountry/GeoIP.dat.gz" "GeoIP.dat.gz"
@ -24,10 +24,10 @@ stdenv.mkDerivation rec {
"0dq5rh08xgwsrmkniww001b2dpd1d7db4sd385p70hkbbry496l3";
srcGeoIPASNum = fetchDB
"asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz"
"1q49v1bxmlbd3y0rfimlcbw6jfp8jbh4hyvy3vdaf0lf82nhfs88";
"168z6j6adrn80sl3ip41fa0jfv2p26lfa8qil6w17sqhg8f61rnp";
srcGeoIPASNumv6 = fetchDB
"asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz"
"0xqhvf2yyi2fq0bjch9fys22hqakhdhzrhsq9m4d2spmd2pjrp0x";
"0q0vgjgxixcq5qnl5d6hxg3bpsbylmmjkhdp308vbbd68q6fws22";
meta = with stdenv.lib; {
description = "GeoLite Legacy IP geolocation databases";

View file

@ -4,10 +4,10 @@ libffi, pam, alsaLib, luajit, bzip2, libuuid, libpthreadstubs, gdbm, libcap, mes
stdenv.mkDerivation rec {
name = "enlightenment-${version}";
version = "0.20.9";
version = "0.21.0";
src = fetchurl {
url = "http://download.enlightenment.org/rel/apps/enlightenment/${name}.tar.xz";
sha256 = "1gniy7i3mg3q9cgqf004lvnv397yncdr2b7w1gzj69bvv7a2lyfv";
sha256 = "0p85dmk9ysbf9y7vlc92z7495mh9l860xj3s8pspy9mscv3dnwg9";
};
nativeBuildInputs = [ pkgconfig ];

View file

@ -2,12 +2,12 @@
, pango, gtk3, gnome3, dbus, clutter, appstream-glib, makeWrapper }:
stdenv.mkDerivation rec {
version = "${gnome3.version}.4";
version = "${gnome3.version}.5";
name = "gpaste-${version}";
src = fetchurl {
url = "https://github.com/Keruspe/GPaste/archive/v${version}.tar.gz";
sha256 = "0x4yj3cdbgjys9g7d5j8ascr9y27skl5ys8csln7vsk525l12a7p";
sha256 = "11sv605c70hgri06ycb74lg1hz1951gqvai1pnax8d6zyrfxdw1c";
};
buildInputs = [ intltool autoreconfHook pkgconfig vala glib

View file

@ -2,12 +2,12 @@
, pango, gtk3, gnome3, dbus, clutter, appstream-glib, makeWrapper, systemd, gobjectIntrospection }:
stdenv.mkDerivation rec {
version = "${gnome3.version}";
version = "${gnome3.version}.4";
name = "gpaste-${version}";
src = fetchurl {
url = "https://github.com/Keruspe/GPaste/archive/v${version}.tar.gz";
sha256 = "129bz9ph398n1n43qggr8xfrd7y30nm8gdgn1hq0xq7a4v1fb2dj";
sha256 = "08h1igdgapz7px12r7mrfcxmz68g9ijg73w69j75spg0yc6f4xax";
};
buildInputs = [ intltool autoreconfHook pkgconfig vala glib

View file

@ -35,7 +35,9 @@ let
baloo-widgets = callPackage ./baloo-widgets.nix {};
dolphin = callPackage ./dolphin.nix {};
dolphin-plugins = callPackage ./dolphin-plugins.nix {};
ffmpegthumbs = callPackage ./ffmpegthumbs.nix {};
ffmpegthumbs = callPackage ./ffmpegthumbs.nix {
ffmpeg = pkgs.ffmpeg_2;
};
filelight = callPackage ./filelight.nix {};
gpgmepp = callPackage ./gpgmepp.nix {};
gwenview = callPackage ./gwenview.nix {};

View file

@ -41,5 +41,6 @@ in stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "The Boo Programming Language";
platforms = platforms.linux;
broken = true;
};
}

View file

@ -50,7 +50,7 @@ stdenv.mkDerivation rec {
-C src/ocaml-output
'';
doCheck = true;
doCheck = !stdenv.isDarwin;
preCheck = "ulimit -s unlimited";
@ -75,6 +75,6 @@ stdenv.mkDerivation rec {
description = "ML-like functional programming language aimed at program verification";
homepage = "https://www.fstar-lang.org";
license = licenses.asl20;
platforms = with platforms; linux;
platforms = with platforms; darwin ++ linux;
};
}

View file

@ -0,0 +1,6 @@
{ stdenv, callPackage, Foundation, libobjc }:
callPackage ./generic.nix (rec {
inherit Foundation libobjc;
version = "4.0.4.1";
sha256 = "1ydw9l89apc9p7xr5mdzy0h97g2q6v243g82mxswfc2rrqhfs4gd";
})

View file

@ -0,0 +1,7 @@
{ stdenv, callPackage, Foundation, libobjc }:
callPackage ./generic.nix (rec {
inherit Foundation libobjc;
version = "4.4.1.0";
sha256 = "0jibyvyv2jy8dq5ij0j00iq3v74r0y90dcjc3dkspcfbnn37cphn";
})

View file

@ -1,19 +1,18 @@
{ stdenv, fetchurl, bison, pkgconfig, glib, gettext, perl, libgdiplus, libX11, callPackage, ncurses, zlib, withLLVM ? false, cacert, Foundation, libobjc }:
{ stdenv, fetchurl, bison, pkgconfig, glib, gettext, perl, libgdiplus, libX11, callPackage, ncurses, zlib, withLLVM ? false, cacert, Foundation, libobjc, python, version, sha256 }:
let
llvm = callPackage ./llvm.nix { };
llvmOpts = stdenv.lib.optionalString withLLVM "--enable-llvm --enable-llvmloaded --with-llvm=${llvm}";
in
stdenv.mkDerivation rec {
name = "mono-${version}";
version = "4.0.4.1";
src = fetchurl {
inherit sha256;
url = "http://download.mono-project.com/sources/mono/${name}.tar.bz2";
sha256 = "1ydw9l89apc9p7xr5mdzy0h97g2q6v243g82mxswfc2rrqhfs4gd";
};
buildInputs =
[ bison pkgconfig glib gettext perl libgdiplus libX11 ncurses zlib
[ bison pkgconfig glib gettext perl libgdiplus libX11 ncurses zlib python
]
++ (stdenv.lib.optionals stdenv.isDarwin [ Foundation libobjc ]);
@ -26,7 +25,16 @@ stdenv.mkDerivation rec {
# In fact I think this line does not help at all to what I
# wanted to achieve: have mono to find libgdiplus automatically
configureFlags = "--x-includes=${libX11.dev}/include --x-libraries=${libX11.out}/lib --with-libgdiplus=${libgdiplus}/lib/libgdiplus.so ${llvmOpts}";
configureFlags = [
"--x-includes=${libX11.dev}/include"
"--x-libraries=${libX11.out}/lib"
"--with-libgdiplus=${libgdiplus}/lib/libgdiplus.so"
]
++ stdenv.lib.optionals withLLVM [
"--enable-llvm"
"--enable-llvmloaded"
"--with-llvm=${llvm}"
];
# Attempt to fix this error when running "mcs --version":
# The file /nix/store/xxx-mono-2.4.2.1/lib/mscorlib.dll is an invalid CIL image
@ -53,13 +61,12 @@ stdenv.mkDerivation rec {
# Other items in the DLLMap may need to be pointed to their store locations, I don't think this is exhaustive
# http://www.mono-project.com/Config_DllMap
postBuild = ''
find . -name 'config' -type f | while read i; do
sed -i "s@libX11.so.6@${libX11.out}/lib/libX11.so.6@g" $i
sed -i "s@/.*libgdiplus.so@${libgdiplus}/lib/libgdiplus.so@g" $i
done
find . -name 'config' -type f | xargs \
sed -i -e "s@libX11.so.6@${libX11.out}/lib/libX11.so.6@g" \
-e "s@/.*libgdiplus.so@${libgdiplus}/lib/libgdiplus.so@g" \
'';
# Without this, any Mono application attempting to open an SSL connection will throw with
# Without this, any Mono application attempting to open an SSL connection will throw with
# The authentication or decryption has failed.
# ---> Mono.Security.Protocol.Tls.TlsException: Invalid certificate received from server.
postInstall = ''
@ -76,7 +83,7 @@ stdenv.mkDerivation rec {
homepage = http://mono-project.com/;
description = "Cross platform, open source .NET development framework";
platforms = with stdenv.lib.platforms; darwin ++ linux;
maintainers = with stdenv.lib.maintainers; [ viric thoughtpolice obadz ];
maintainers = with stdenv.lib.maintainers; [ viric thoughtpolice obadz vrthra ];
license = stdenv.lib.licenses.free; # Combination of LGPL/X11/GPL ?
};
}

View file

@ -0,0 +1,59 @@
{ pkgs, lib, emscripten }:
{ buildInputs ? [], nativeBuildInputs ? []
, enableParallelBuilding ? true
, meta ? {}, ... } @ args:
pkgs.stdenv.mkDerivation (
args //
{
name = "emscripten-${args.name}";
buildInputs = [ emscripten ] ++ buildInputs;
nativeBuildInputs = [ emscripten ] ++ nativeBuildInputs;
# fake conftest results with emscripten's python magic
EMCONFIGURE_JS=2;
configurePhase = args.configurePhase or ''
# FIXME: Some tests require writing at $HOME
HOME=$TMPDIR
runHook preConfigure
# probably requires autotools as dependency
./autogen.sh
emconfigure ./configure --prefix=$out
runHook postConfigure
'';
buildPhase = args.buildPhase or ''
runHook preBuild
HOME=$TMPDIR
emmake make
runHook postBuild
'';
checkPhase = args.checkPhase or ''
runHook preCheck
runHook postCheck
'';
enableParallelBuilding = args.enableParallelBuilding or true;
meta = {
# Add default meta information
platforms = lib.platforms.all;
# Do not build this automatically
hydraPlatforms = [];
} // meta // {
# add an extra maintainer to every package
maintainers = (meta.maintainers or []) ++
[ lib.maintainers.qknight ];
};
})

View file

@ -654,9 +654,7 @@ self: super: {
zlib = dontCheck super.zlib;
# Override the obsolete version from Hackage with our more up-to-date copy.
cabal2nix = self.callPackage ../tools/haskell/cabal2nix/cabal2nix.nix {};
hackage2nix = self.callPackage ../tools/haskell/cabal2nix/hackage2nix.nix { deepseq-generics = self.deepseq-generics_0_1_1_2; };
distribution-nixpkgs = self.callPackage ../tools/haskell/cabal2nix/distribution-nixpkgs.nix { deepseq-generics = self.deepseq-generics_0_1_1_2; };
cabal2nix = self.callPackage ../tools/haskell/cabal2nix {};
# https://github.com/ndmitchell/shake/issues/206
# https://github.com/ndmitchell/shake/issues/267

View file

@ -208,6 +208,7 @@ self: super: {
case-insensitive = addBuildDepend super.case-insensitive self.semigroups;
bytes = addBuildDepend super.bytes self.doctest;
hslogger = addBuildDepend super.hslogger self.HUnit;
semigroups_0_18_1 = addBuildDepends super.semigroups (with self; [hashable tagged text unordered-containers]);
semigroups = addBuildDepends super.semigroups (with self; [hashable tagged text unordered-containers]);
intervals = addBuildDepends super.intervals (with self; [doctest QuickCheck]);

View file

@ -311,6 +311,7 @@ dont-distribute-packages:
amazonka: [ i686-linux, x86_64-darwin, x86_64-linux ]
AMI: [ i686-linux, x86_64-linux ]
ampersand: [ i686-linux, x86_64-darwin, x86_64-linux ]
amqp-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ]
analyze-client: [ i686-linux, x86_64-darwin, x86_64-linux ]
anansi-pandoc: [ i686-linux, x86_64-darwin, x86_64-linux ]
anatomy: [ i686-linux, x86_64-darwin, x86_64-linux ]
@ -460,6 +461,7 @@ dont-distribute-packages:
battleships: [ i686-linux, x86_64-darwin, x86_64-linux ]
bayes-stack: [ i686-linux, x86_64-darwin, x86_64-linux ]
BCMtools: [ i686-linux, x86_64-linux ]
beam-th: [ i686-linux, x86_64-darwin, x86_64-linux ]
beam: [ i686-linux, x86_64-linux ]
beamable: [ i686-linux, x86_64-darwin, x86_64-linux ]
beautifHOL: [ i686-linux, x86_64-darwin, x86_64-linux ]
@ -541,6 +543,7 @@ dont-distribute-packages:
biostockholm: [ i686-linux, x86_64-linux ]
bird: [ i686-linux, x86_64-darwin, x86_64-linux ]
BirdPP: [ i686-linux, x86_64-darwin, x86_64-linux ]
bit-array: [ i686-linux, x86_64-darwin, x86_64-linux ]
bit-vector: [ i686-linux ]
bitcoin-payment-channel: [ i686-linux, x86_64-darwin, x86_64-linux ]
bitcoin-rpc: [ i686-linux, x86_64-linux ]
@ -563,6 +566,7 @@ dont-distribute-packages:
blaze-html-contrib: [ i686-linux, x86_64-linux ]
blaze-html-hexpat: [ i686-linux, x86_64-linux ]
blaze-textual-native: [ i686-linux, x86_64-linux ]
blink1: [ i686-linux, x86_64-darwin, x86_64-linux ]
blip: [ i686-linux, x86_64-linux ]
Blobs: [ i686-linux, x86_64-darwin, x86_64-linux ]
blogination: [ i686-linux, x86_64-darwin, x86_64-linux ]
@ -631,6 +635,7 @@ dont-distribute-packages:
cabal-install-bundle: [ i686-linux, x86_64-linux ]
cabal-install-ghc72: [ i686-linux, x86_64-linux ]
cabal-install-ghc74: [ i686-linux, x86_64-linux ]
cabal-mon: [ i686-linux, x86_64-darwin, x86_64-linux ]
cabal-query: [ i686-linux, x86_64-linux ]
cabal-setup: [ i686-linux, x86_64-linux ]
cabal-test: [ i686-linux, x86_64-linux ]
@ -645,6 +650,7 @@ dont-distribute-packages:
CabalSearch: [ i686-linux, x86_64-linux ]
cabalvchk: [ i686-linux, x86_64-linux ]
cabocha: [ i686-linux, x86_64-linux ]
caffegraph: [ i686-linux, x86_64-darwin, x86_64-linux ]
cake3: [ i686-linux, x86_64-linux ]
cakyrespa: [ i686-linux, x86_64-linux ]
cal3d-examples: [ i686-linux, x86_64-linux ]
@ -716,6 +722,7 @@ dont-distribute-packages:
chell-hunit: [ i686-linux, x86_64-darwin, x86_64-linux ]
chevalier-common: [ i686-linux, x86_64-darwin, x86_64-linux ]
Chitra: [ i686-linux, x86_64-linux ]
chorale-geo: [ i686-linux, x86_64-darwin, x86_64-linux ]
chorale: [ i686-linux, x86_64-linux ]
chp-mtl: [ i686-linux, x86_64-linux ]
chp-plus: [ i686-linux, x86_64-linux ]
@ -952,6 +959,7 @@ dont-distribute-packages:
cypher: [ i686-linux, x86_64-linux ]
d-bus: [ i686-linux, x86_64-linux ]
DAG-Tournament: [ i686-linux, x86_64-linux ]
dag: [ i686-linux, x86_64-darwin, x86_64-linux ]
Dangerous: [ i686-linux, x86_64-darwin, x86_64-linux ]
Dao: [ i686-linux, x86_64-linux ]
dao: [ i686-linux, x86_64-linux ]
@ -964,6 +972,7 @@ dont-distribute-packages:
darcs-graph: [ i686-linux, x86_64-linux ]
darcs-monitor: [ i686-linux, x86_64-linux ]
darcs2dot: [ i686-linux, x86_64-linux ]
darcs: [ i686-linux, x86_64-darwin, x86_64-linux ]
darcsden: [ i686-linux, x86_64-darwin, x86_64-linux ]
DarcsHelpers: [ i686-linux, x86_64-linux ]
darcswatch: [ i686-linux, x86_64-linux ]
@ -1138,6 +1147,7 @@ dont-distribute-packages:
doctest-discover-configurator: [ i686-linux, x86_64-linux ]
doctest-discover: [ i686-linux, x86_64-linux ]
DocTest: [ i686-linux, x86_64-darwin, x86_64-linux ]
docvim: [ i686-linux, x86_64-darwin, x86_64-linux ]
DOM: [ i686-linux, x86_64-linux ]
dominion: [ i686-linux, x86_64-darwin, x86_64-linux ]
dotenv: [ i686-linux, x86_64-linux ]
@ -1162,6 +1172,7 @@ dont-distribute-packages:
DrHylo: [ i686-linux, x86_64-linux ]
DrIFT-cabalized: [ i686-linux, x86_64-linux ]
DrIFT: [ i686-linux, x86_64-linux ]
drmaa: [ i686-linux, x86_64-darwin, x86_64-linux ]
dropbox-sdk: [ i686-linux, x86_64-darwin, x86_64-linux ]
dropsolve: [ i686-linux, x86_64-darwin, x86_64-linux ]
ds-kanren: [ i686-linux, x86_64-linux ]
@ -1233,6 +1244,7 @@ dont-distribute-packages:
embroidery: [ i686-linux, x86_64-darwin, x86_64-linux ]
emgm: [ i686-linux, x86_64-linux ]
Emping: [ i686-linux, x86_64-linux ]
enchant: [ i686-linux, x86_64-darwin, x86_64-linux ]
enumerate: [ i686-linux, x86_64-darwin, x86_64-linux ]
enumeration: [ i686-linux, x86_64-darwin, x86_64-linux ]
enumfun: [ i686-linux, x86_64-linux ]
@ -1278,6 +1290,11 @@ dont-distribute-packages:
exception-hierarchy: [ i686-linux, x86_64-linux ]
exhaustive: [ i686-linux, x86_64-linux ]
exif: [ i686-linux, x86_64-linux ]
exinst-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ]
exinst-bytes: [ i686-linux, x86_64-darwin, x86_64-linux ]
exinst-deepseq: [ i686-linux, x86_64-darwin, x86_64-linux ]
exinst-hashable: [ i686-linux, x86_64-darwin, x86_64-linux ]
exinst: [ i686-linux, x86_64-darwin, x86_64-linux ]
existential: [ i686-linux, x86_64-darwin, x86_64-linux ]
exists: [ i686-linux, x86_64-linux ]
exp-extended: [ i686-linux, x86_64-darwin, x86_64-linux ]
@ -1401,6 +1418,7 @@ dont-distribute-packages:
frag: [ i686-linux, x86_64-linux ]
franchise: [ i686-linux, x86_64-linux ]
Frank: [ i686-linux, x86_64-linux ]
fraxl: [ i686-linux, x86_64-darwin, x86_64-linux ]
freddy: [ i686-linux, x86_64-linux ]
free-functors: [ i686-linux, x86_64-linux ]
free-game: [ i686-linux, x86_64-linux ]
@ -1509,10 +1527,15 @@ dont-distribute-packages:
ghc-vis: [ i686-linux, x86_64-darwin, x86_64-linux ]
ghci-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ]
ghci-haskeline: [ i686-linux, x86_64-linux ]
ghci-history-parser: [ i686-linux, x86_64-darwin, x86_64-linux ]
ghci-lib: [ i686-linux, x86_64-linux ]
ghci-ng: [ i686-linux, x86_64-linux ]
ghcjs-dom-hello: [ i686-linux, x86_64-linux ]
ghcjs-dom-jsaddle: [ i686-linux, x86_64-darwin, x86_64-linux ]
ghcjs-dom-jsffi: [ i686-linux, x86_64-darwin, x86_64-linux ]
ghcjs-dom: [ i686-linux, x86_64-linux ]
ghcjs-hplay: [ i686-linux, x86_64-darwin, x86_64-linux ]
ghcjs-prim: [ i686-linux, x86_64-darwin, x86_64-linux ]
ghcjs-prim: [ i686-linux, x86_64-linux ]
ghclive: [ i686-linux, x86_64-darwin, x86_64-linux ]
ght: [ i686-linux, x86_64-darwin, x86_64-linux ]
@ -1885,6 +1908,7 @@ dont-distribute-packages:
happybara-webkit: [ i686-linux, x86_64-linux ]
happybara: [ i686-linux, x86_64-linux ]
hapstone: [ i686-linux ]
hapstone: [ i686-linux, x86_64-darwin, x86_64-linux ]
HaPy: [ i686-linux, x86_64-linux ]
harchive: [ i686-linux, x86_64-linux ]
hardware-edsl: [ i686-linux, x86_64-linux ]
@ -1900,6 +1924,7 @@ dont-distribute-packages:
has-th: [ i686-linux, x86_64-linux ]
has: [ i686-linux, x86_64-linux ]
hascal: [ i686-linux, x86_64-linux ]
hascar: [ i686-linux, x86_64-darwin, x86_64-linux ]
hascat-lib: [ i686-linux, x86_64-darwin, x86_64-linux ]
hascat-setup: [ i686-linux, x86_64-darwin, x86_64-linux ]
hascat-system: [ i686-linux, x86_64-darwin, x86_64-linux ]
@ -2000,8 +2025,12 @@ dont-distribute-packages:
hasql-backend: [ i686-linux, x86_64-linux ]
hasql-postgres-options: [ i686-linux, x86_64-linux ]
hasql-postgres: [ i686-linux, x86_64-linux ]
hasql-transaction: [ i686-linux, x86_64-darwin, x86_64-linux ]
haste-cabal-install: [ i686-linux, x86_64-darwin, x86_64-linux ]
haste-cabal-install: [ i686-linux, x86_64-linux ]
haste-Cabal: [ i686-linux, x86_64-darwin, x86_64-linux ]
haste-Cabal: [ i686-linux, x86_64-linux ]
haste-compiler: [ i686-linux, x86_64-darwin, x86_64-linux ]
haste-gapi: [ i686-linux, x86_64-linux, x86_64-darwin ]
haste-perch: [ i686-linux, x86_64-linux, x86_64-darwin ]
hat: [ i686-linux, x86_64-linux ]
@ -2249,6 +2278,7 @@ dont-distribute-packages:
HongoDB: [ i686-linux, x86_64-linux ]
honi: [ i686-linux, x86_64-linux ]
honk: [ x86_64-darwin ]
hoobuddy: [ i686-linux, x86_64-darwin, x86_64-linux ]
hood-off: [ i686-linux, x86_64-linux ]
hoodie: [ i686-linux, x86_64-linux ]
hoodle-builder: [ i686-linux, x86_64-linux ]
@ -2413,6 +2443,7 @@ dont-distribute-packages:
hsx: [ i686-linux, x86_64-darwin, x86_64-linux ]
hsXenCtrl: [ i686-linux, x86_64-linux ]
hsyscall: [ i686-linux, x86_64-linux ]
hsyslog-udp: [ i686-linux, x86_64-darwin, x86_64-linux ]
hszephyr: [ i686-linux, x86_64-linux ]
HTab: [ i686-linux, x86_64-linux ]
hTalos: [ i686-linux, x86_64-linux ]
@ -2423,10 +2454,12 @@ dont-distribute-packages:
htodo: [ i686-linux, x86_64-linux ]
hts: [ i686-linux, x86_64-linux ]
htsn-import: [ i686-linux, x86_64-darwin, x86_64-linux ]
http-attoparsec: [ i686-linux, x86_64-darwin, x86_64-linux ]
http-client-request-modifiers: [ i686-linux, x86_64-darwin, x86_64-linux ]
http-conduit-browser: [ i686-linux, x86_64-linux ]
http-conduit-downloader: [ i686-linux, x86_64-linux ]
http-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ]
http-kinder: [ i686-linux, x86_64-darwin, x86_64-linux ]
http-monad: [ i686-linux, x86_64-linux ]
http-proxy: [ i686-linux, x86_64-linux ]
http-response-decoder: [ i686-linux, x86_64-linux ]
@ -2775,6 +2808,7 @@ dont-distribute-packages:
language-eiffel: [ i686-linux, x86_64-linux ]
language-go: [ i686-linux, x86_64-linux ]
language-java-classfile: [ i686-linux, x86_64-darwin, x86_64-linux ]
language-lua-qq: [ i686-linux, x86_64-darwin, x86_64-linux ]
language-mixal: [ i686-linux, x86_64-linux ]
language-objc: [ i686-linux, x86_64-linux ]
language-puppet: [ i686-linux, x86_64-darwin, x86_64-linux ]
@ -2817,6 +2851,7 @@ dont-distribute-packages:
lgtk: [ i686-linux, x86_64-darwin, x86_64-linux ]
lha: [ i686-linux, x86_64-darwin, x86_64-linux ]
lhae: [ i686-linux, x86_64-darwin, x86_64-linux ]
lhc: [ i686-linux, x86_64-darwin, x86_64-linux ]
lhe: [ i686-linux, x86_64-darwin, x86_64-linux ]
LibClang: [ i686-linux, x86_64-linux ]
libconfig: [ i686-linux, x86_64-linux ]
@ -2832,6 +2867,7 @@ dont-distribute-packages:
libpafe: [ i686-linux, x86_64-linux ]
libpq: [ i686-linux, x86_64-linux ]
librandomorg: [ i686-linux, x86_64-linux ]
libroman: [ i686-linux, x86_64-darwin, x86_64-linux ]
libssh2-conduit: [ i686-linux, x86_64-linux ]
libsystemd-daemon: [ i686-linux, x86_64-linux ]
libxls: [ i686-linux, x86_64-linux ]
@ -2897,6 +2933,7 @@ dont-distribute-packages:
lmonad-yesod: [ i686-linux, x86_64-linux ]
lmonad: [ i686-linux, x86_64-linux ]
local-search: [ i686-linux, x86_64-linux ]
located-monad-logger: [ i686-linux, x86_64-darwin, x86_64-linux ]
loch: [ i686-linux, x86_64-linux ]
locked-poll: [ i686-linux, x86_64-darwin, x86_64-linux ]
log-domain: [ i686-linux, x86_64-darwin, x86_64-linux ]
@ -2925,6 +2962,7 @@ dont-distribute-packages:
lscabal: [ i686-linux, x86_64-linux ]
LslPlus: [ i686-linux, x86_64-darwin, x86_64-linux ]
lsystem: [ i686-linux, x86_64-darwin, x86_64-linux ]
ltiv1p1: [ i686-linux, x86_64-darwin, x86_64-linux ]
ltk: [ i686-linux, x86_64-darwin, x86_64-linux ]
luachunk: [ i686-linux, x86_64-linux ]
lucienne: [ i686-linux, x86_64-darwin, x86_64-linux ]
@ -2937,6 +2975,7 @@ dont-distribute-packages:
lvmlib: [ i686-linux, x86_64-darwin, x86_64-linux ]
lxc: [ i686-linux, x86_64-linux ]
lye: [ i686-linux, x86_64-linux ]
lzma-clib: [ i686-linux, x86_64-darwin, x86_64-linux ]
lzma-streams: [ i686-linux ]
lzma: [ i686-linux ]
maam: [ i686-linux, x86_64-linux ]
@ -3158,6 +3197,7 @@ dont-distribute-packages:
musicbrainz-email: [ i686-linux, x86_64-linux ]
musicxml: [ i686-linux, x86_64-linux ]
mustache2hs: [ i686-linux, x86_64-linux ]
mustache: [ i686-linux, x86_64-darwin, x86_64-linux ]
mutable-iter: [ i686-linux, x86_64-darwin, x86_64-linux ]
mute-unmute: [ i686-linux, x86_64-linux ]
mvc-updates: [ i686-linux, x86_64-linux ]
@ -3171,6 +3211,7 @@ dont-distribute-packages:
mysql-simple: [ i686-linux, x86_64-darwin, x86_64-linux ]
mysql: [ i686-linux, x86_64-darwin, x86_64-linux ]
myTestlll: [ i686-linux, x86_64-linux ]
mywatch: [ i686-linux, x86_64-darwin, x86_64-linux ]
mzv: [ i686-linux, x86_64-linux ]
n-m: [ i686-linux, x86_64-darwin, x86_64-linux ]
nagios-plugin-ekg: [ i686-linux, x86_64-linux ]
@ -3220,6 +3261,7 @@ dont-distribute-packages:
network-transport-zeromq: [ i686-linux, x86_64-darwin, x86_64-linux ]
network-uri-static: [ i686-linux, x86_64-linux ]
network-websocket: [ i686-linux, x86_64-darwin, x86_64-linux ]
neural: [ i686-linux, x86_64-darwin, x86_64-linux ]
newports: [ i686-linux, x86_64-linux ]
newsynth: [ i686-linux, x86_64-linux ]
newt: [ i686-linux, x86_64-linux ]
@ -3399,6 +3441,7 @@ dont-distribute-packages:
PermuteEffects: [ i686-linux, x86_64-darwin, x86_64-linux ]
persistable-record: [ i686-linux, x86_64-linux ]
persistable-types-HDBC-pg: [ i686-linux, x86_64-linux ]
persistent-audit: [ i686-linux, x86_64-darwin, x86_64-linux ]
persistent-database-url: [ i686-linux, x86_64-linux ]
persistent-hssqlppp: [ i686-linux, x86_64-linux ]
persistent-map: [ i686-linux, x86_64-linux ]
@ -3430,6 +3473,7 @@ dont-distribute-packages:
pianola: [ i686-linux, x86_64-darwin, x86_64-linux ]
piet: [ i686-linux, x86_64-linux ]
piki: [ i686-linux, x86_64-linux ]
pinboard: [ i686-linux, x86_64-darwin, x86_64-linux ]
pinch: [ i686-linux ]
Pipe: [ i686-linux, x86_64-linux ]
pipes-attoparsec-streaming: [ i686-linux, x86_64-linux ]
@ -3475,6 +3519,7 @@ dont-distribute-packages:
polyseq: [ i686-linux, x86_64-linux ]
polytypeable-utils: [ i686-linux, x86_64-darwin, x86_64-linux ]
polytypeable: [ i686-linux, x86_64-linux ]
pomodoro: [ i686-linux, x86_64-darwin, x86_64-linux ]
pong-server: [ i686-linux, x86_64-linux ]
pontarius-mediaserver: [ i686-linux, x86_64-linux ]
pontarius-xmpp: [ i686-linux, x86_64-linux ]
@ -3491,10 +3536,12 @@ dont-distribute-packages:
postcodes: [ i686-linux, x86_64-linux ]
postgresql-orm: [ i686-linux, x86_64-darwin, x86_64-linux ]
postgresql-query: [ i686-linux, x86_64-linux ]
postgresql-simple-bind: [ i686-linux, x86_64-darwin, x86_64-linux ]
postgresql-simple-sop: [ i686-linux, x86_64-linux ]
postgresql-simple-typed: [ i686-linux, x86_64-linux ]
postgresql-typed: [ i686-linux, x86_64-linux ]
PostgreSQL: [ i686-linux, x86_64-linux ]
postgrest: [ i686-linux, x86_64-darwin, x86_64-linux ]
postie: [ i686-linux, x86_64-linux ]
postmaster: [ i686-linux, x86_64-linux ]
potrace-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ]
@ -3549,12 +3596,14 @@ dont-distribute-packages:
property-list: [ i686-linux, x86_64-darwin, x86_64-linux ]
proplang: [ i686-linux, x86_64-darwin, x86_64-linux ]
proteaaudio: [ i686-linux, x86_64-linux ]
proto-lens-combinators: [ i686-linux, x86_64-darwin, x86_64-linux ]
protobuf-native: [ i686-linux, x86_64-linux ]
protobuf: [ i686-linux, x86_64-linux ]
protocol-buffers-descriptor-fork: [ i686-linux, x86_64-linux ]
protocol-buffers-fork: [ i686-linux, x86_64-linux ]
prove-everywhere-server: [ i686-linux, x86_64-linux ]
proxy-kindness: [ i686-linux, x86_64-linux ]
psc-ide: [ i686-linux, x86_64-darwin, x86_64-linux ]
pub: [ i686-linux, x86_64-linux ]
publicsuffixlistcreate: [ i686-linux, x86_64-linux ]
pubnub: [ i686-linux, x86_64-linux ]
@ -3615,6 +3664,7 @@ dont-distribute-packages:
quoridor-hs: [ i686-linux, x86_64-darwin, x86_64-linux ]
qux: [ i686-linux, x86_64-darwin, x86_64-linux ]
R-pandoc: [ i686-linux, x86_64-linux ]
raaz: [ i686-linux, x86_64-darwin, x86_64-linux ]
rabocsv2qif: [ i686-linux, x86_64-linux ]
rad: [ i686-linux, x86_64-linux ]
radium-formula-parser: [ i686-linux, x86_64-linux ]
@ -3678,6 +3728,7 @@ dont-distribute-packages:
refh: [ i686-linux, x86_64-linux ]
refined: [ i686-linux, x86_64-linux ]
reflection-extras: [ i686-linux, x86_64-linux ]
reflex-dom-colonnade: [ i686-linux, x86_64-darwin, x86_64-linux ]
reflex-dom-contrib: [ i686-linux, x86_64-linux ]
reflex-dom-helpers: [ i686-linux, x86_64-linux ]
reflex-dom: [ i686-linux, x86_64-linux ]
@ -3786,6 +3837,7 @@ dont-distribute-packages:
roguestar-glut: [ i686-linux, x86_64-linux ]
RollingDirectory: [ i686-linux, x86_64-linux ]
rope: [ i686-linux, x86_64-linux ]
rose-trie: [ i686-linux, x86_64-darwin, x86_64-linux ]
roshask: [ i686-linux, x86_64-linux ]
rosso: [ i686-linux, x86_64-linux ]
rounding: [ i686-linux, x86_64-linux ]
@ -3842,6 +3894,7 @@ dont-distribute-packages:
satchmo-toysat: [ i686-linux, x86_64-darwin, x86_64-linux ]
satchmo: [ i686-linux, x86_64-darwin, x86_64-linux ]
SBench: [ i686-linux, x86_64-linux ]
sbp2udp: [ i686-linux, x86_64-darwin, x86_64-linux ]
sbp: [ i686-linux, x86_64-linux ]
sbv: [ i686-linux, x86_64-darwin, x86_64-linux ]
sbvPlugin: [ i686-linux, x86_64-darwin, x86_64-linux ]
@ -3905,6 +3958,9 @@ dont-distribute-packages:
sequent-core: [ i686-linux, x86_64-linux ]
sequor: [ i686-linux, x86_64-linux ]
serpentine: [ i686-linux, x86_64-linux ]
serv-wai: [ i686-linux, x86_64-darwin, x86_64-linux ]
serv: [ i686-linux, x86_64-darwin, x86_64-linux ]
servant-aeson-specs: [ i686-linux, x86_64-darwin, x86_64-linux ]
servant-csharp: [ i686-linux, x86_64-linux ]
servant-docs: [ i686-linux ]
servant-elm: [ i686-linux, x86_64-linux ]
@ -3915,7 +3971,10 @@ dont-distribute-packages:
servant-pandoc: [ i686-linux ]
servant-pool: [ i686-linux, x86_64-linux ]
servant-postgresql: [ i686-linux, x86_64-linux ]
servant-purescript: [ i686-linux, x86_64-darwin, x86_64-linux ]
servant-router: [ i686-linux, x86_64-darwin, x86_64-linux ]
servant-scotty: [ i686-linux, x86_64-linux ]
servant-subscriber: [ i686-linux, x86_64-darwin, x86_64-linux ]
servant-swagger: [ i686-linux, x86_64-linux ]
serversession-backend-acid-state: [ i686-linux, x86_64-darwin, x86_64-linux ]
serversession-backend-persistent: [ i686-linux, x86_64-linux ]
@ -3982,6 +4041,7 @@ dont-distribute-packages:
simplest-sqlite: [ i686-linux, x86_64-linux ]
simseq: [ i686-linux, x86_64-linux ]
sindre: [ i686-linux, x86_64-linux ]
singleton-nats: [ i686-linux, x86_64-darwin, x86_64-linux ]
sirkel: [ i686-linux, x86_64-darwin, x86_64-linux ]
sized-vector: [ i686-linux, x86_64-linux ]
sized: [ i686-linux, x86_64-linux ]
@ -4153,12 +4213,15 @@ dont-distribute-packages:
Strafunski-Sdf2Haskell: [ i686-linux, x86_64-linux ]
stratum-tool: [ i686-linux, x86_64-linux ]
stratux-types: [ i686-linux, x86_64-linux ]
stratux-websockets: [ i686-linux, x86_64-darwin, x86_64-linux ]
stratux: [ i686-linux, x86_64-linux ]
stream-fusion: [ i686-linux, x86_64-linux ]
stream: [ i686-linux, x86_64-linux ]
streamed: [ i686-linux, x86_64-linux ]
streaming-eversion: [ i686-linux, x86_64-darwin, x86_64-linux ]
streaming-utils: [ i686-linux ]
strict-concurrency: [ i686-linux, x86_64-linux ]
strict-data: [ i686-linux, x86_64-darwin, x86_64-linux ]
StrictBench: [ i686-linux, x86_64-darwin, x86_64-linux ]
string-typelits: [ i686-linux, x86_64-darwin, x86_64-linux ]
stringlike: [ i686-linux, x86_64-linux ]
@ -4331,6 +4394,7 @@ dont-distribute-packages:
tickle: [ i686-linux ]
TicTacToe: [ i686-linux, x86_64-linux ]
tidal-midi: [ i686-linux, x86_64-linux ]
tidal-serial: [ i686-linux, x86_64-darwin, x86_64-linux ]
tie-knot: [ i686-linux, x86_64-darwin, x86_64-linux ]
tiger: [ i686-linux, x86_64-darwin, x86_64-linux ]
tighttp: [ i686-linux, x86_64-linux ]
@ -4351,6 +4415,7 @@ dont-distribute-packages:
timezone-olson: [ i686-linux, x86_64-darwin, x86_64-linux ]
timezone-series: [ i686-linux, x86_64-darwin, x86_64-linux ]
tinc: [ i686-linux, x86_64-darwin, x86_64-linux ]
tinc: [ i686-linux, x86_64-darwin, x86_64-linux ]
TinyLaunchbury: [ i686-linux, x86_64-linux ]
TinyURL: [ i686-linux, x86_64-linux ]
tip-haskell-frontend: [ i686-linux, x86_64-linux ]
@ -4548,6 +4613,7 @@ dont-distribute-packages:
vector-read-instances: [ i686-linux, x86_64-linux ]
vector-space-opengl: [ i686-linux, x86_64-linux ]
vector-static: [ i686-linux, x86_64-linux ]
vectortiles: [ i686-linux, x86_64-darwin, x86_64-linux ]
verilog: [ i686-linux, x86_64-linux ]
versions: [ i686-linux, x86_64-linux ]
vigilance: [ i686-linux, x86_64-darwin, x86_64-linux ]
@ -4708,6 +4774,7 @@ dont-distribute-packages:
xkcd: [ i686-linux, x86_64-linux ]
xlsx-templater: [ i686-linux, x86_64-linux ]
xml-catalog: [ i686-linux, x86_64-linux ]
xml-conduit-decode: [ i686-linux, x86_64-darwin, x86_64-linux ]
xml-enumerator-combinators: [ i686-linux, x86_64-linux ]
xml-enumerator: [ i686-linux, x86_64-linux ]
xml-parsec: [ i686-linux, x86_64-linux ]

View file

@ -2694,6 +2694,7 @@ self: super: {
"dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
"dclabel" = dontDistribute super."dclabel";
"dclabel-eci11" = dontDistribute super."dclabel-eci11";
"ddate" = dontDistribute super."ddate";
"ddc-base" = dontDistribute super."ddc-base";
"ddc-build" = dontDistribute super."ddc-build";
"ddc-code" = dontDistribute super."ddc-code";
@ -3009,6 +3010,7 @@ self: super: {
"ebeats" = dontDistribute super."ebeats";
"ebnf-bff" = dontDistribute super."ebnf-bff";
"ec2-signature" = dontDistribute super."ec2-signature";
"ec2-unikernel" = dontDistribute super."ec2-unikernel";
"eccrypto" = dontDistribute super."eccrypto";
"ecdsa" = dontDistribute super."ecdsa";
"ecma262" = dontDistribute super."ecma262";
@ -3362,6 +3364,7 @@ self: super: {
"fixpoint" = dontDistribute super."fixpoint";
"fixtime" = dontDistribute super."fixtime";
"fizz-buzz" = dontDistribute super."fizz-buzz";
"fizzbuzz" = dontDistribute super."fizzbuzz";
"flaccuraterip" = dontDistribute super."flaccuraterip";
"flamethrower" = dontDistribute super."flamethrower";
"flamingra" = dontDistribute super."flamingra";
@ -3415,6 +3418,7 @@ self: super: {
"foma" = dontDistribute super."foma";
"font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
"foo" = dontDistribute super."foo";
"foobar" = dontDistribute super."foobar";
"for-free" = dontDistribute super."for-free";
"forbidden-fruit" = dontDistribute super."forbidden-fruit";
"force-layout" = doDistribute super."force-layout_0_3_0_8";
@ -4279,6 +4283,12 @@ self: super: {
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
"haskell-tools-ast" = dontDistribute super."haskell-tools-ast";
"haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc";
"haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen";
"haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf";
"haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint";
"haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor";
"haskell-tor" = dontDistribute super."haskell-tor";
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
"haskell-typescript" = dontDistribute super."haskell-typescript";
@ -4684,6 +4694,7 @@ self: super: {
"hopfield" = dontDistribute super."hopfield";
"hopfield-networks" = dontDistribute super."hopfield-networks";
"hopfli" = dontDistribute super."hopfli";
"hoppy-docs" = dontDistribute super."hoppy-docs";
"hoppy-generator" = dontDistribute super."hoppy-generator";
"hoppy-runtime" = dontDistribute super."hoppy-runtime";
"hoppy-std" = dontDistribute super."hoppy-std";
@ -5626,6 +5637,7 @@ self: super: {
"learn-physics-examples" = dontDistribute super."learn-physics-examples";
"learning-hmm" = dontDistribute super."learning-hmm";
"leetify" = dontDistribute super."leetify";
"legion" = dontDistribute super."legion";
"leksah" = dontDistribute super."leksah";
"leksah-server" = dontDistribute super."leksah-server";
"lendingclub" = dontDistribute super."lendingclub";
@ -6136,6 +6148,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11";
"monad-logger-json" = dontDistribute super."monad-logger-json";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@ -7939,6 +7952,7 @@ self: super: {
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
"simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
"simple-tabular" = dontDistribute super."simple-tabular";
"simple-tar" = dontDistribute super."simple-tar";
"simple-templates" = dontDistribute super."simple-templates";
"simple-vec3" = dontDistribute super."simple-vec3";
"simpleargs" = dontDistribute super."simpleargs";
@ -8702,6 +8716,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timelens" = dontDistribute super."timelens";
"timeless" = dontDistribute super."timeless";
"timelike" = dontDistribute super."timelike";
"timelike-clock" = dontDistribute super."timelike-clock";
@ -9652,6 +9667,7 @@ self: super: {
"yuuko" = dontDistribute super."yuuko";
"yxdb-utils" = dontDistribute super."yxdb-utils";
"z3" = dontDistribute super."z3";
"z3-encoding" = dontDistribute super."z3-encoding";
"zalgo" = dontDistribute super."zalgo";
"zampolit" = dontDistribute super."zampolit";
"zasni-gerna" = dontDistribute super."zasni-gerna";

View file

@ -2694,6 +2694,7 @@ self: super: {
"dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
"dclabel" = dontDistribute super."dclabel";
"dclabel-eci11" = dontDistribute super."dclabel-eci11";
"ddate" = dontDistribute super."ddate";
"ddc-base" = dontDistribute super."ddc-base";
"ddc-build" = dontDistribute super."ddc-build";
"ddc-code" = dontDistribute super."ddc-code";
@ -3009,6 +3010,7 @@ self: super: {
"ebeats" = dontDistribute super."ebeats";
"ebnf-bff" = dontDistribute super."ebnf-bff";
"ec2-signature" = dontDistribute super."ec2-signature";
"ec2-unikernel" = dontDistribute super."ec2-unikernel";
"eccrypto" = dontDistribute super."eccrypto";
"ecdsa" = dontDistribute super."ecdsa";
"ecma262" = dontDistribute super."ecma262";
@ -3362,6 +3364,7 @@ self: super: {
"fixpoint" = dontDistribute super."fixpoint";
"fixtime" = dontDistribute super."fixtime";
"fizz-buzz" = dontDistribute super."fizz-buzz";
"fizzbuzz" = dontDistribute super."fizzbuzz";
"flaccuraterip" = dontDistribute super."flaccuraterip";
"flamethrower" = dontDistribute super."flamethrower";
"flamingra" = dontDistribute super."flamingra";
@ -3415,6 +3418,7 @@ self: super: {
"foma" = dontDistribute super."foma";
"font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
"foo" = dontDistribute super."foo";
"foobar" = dontDistribute super."foobar";
"for-free" = dontDistribute super."for-free";
"forbidden-fruit" = dontDistribute super."forbidden-fruit";
"force-layout" = doDistribute super."force-layout_0_3_0_8";
@ -4279,6 +4283,12 @@ self: super: {
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
"haskell-tools-ast" = dontDistribute super."haskell-tools-ast";
"haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc";
"haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen";
"haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf";
"haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint";
"haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor";
"haskell-tor" = dontDistribute super."haskell-tor";
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
"haskell-typescript" = dontDistribute super."haskell-typescript";
@ -4684,6 +4694,7 @@ self: super: {
"hopfield" = dontDistribute super."hopfield";
"hopfield-networks" = dontDistribute super."hopfield-networks";
"hopfli" = dontDistribute super."hopfli";
"hoppy-docs" = dontDistribute super."hoppy-docs";
"hoppy-generator" = dontDistribute super."hoppy-generator";
"hoppy-runtime" = dontDistribute super."hoppy-runtime";
"hoppy-std" = dontDistribute super."hoppy-std";
@ -5626,6 +5637,7 @@ self: super: {
"learn-physics-examples" = dontDistribute super."learn-physics-examples";
"learning-hmm" = dontDistribute super."learning-hmm";
"leetify" = dontDistribute super."leetify";
"legion" = dontDistribute super."legion";
"leksah" = dontDistribute super."leksah";
"leksah-server" = dontDistribute super."leksah-server";
"lendingclub" = dontDistribute super."lendingclub";
@ -6136,6 +6148,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11";
"monad-logger-json" = dontDistribute super."monad-logger-json";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@ -7939,6 +7952,7 @@ self: super: {
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
"simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
"simple-tabular" = dontDistribute super."simple-tabular";
"simple-tar" = dontDistribute super."simple-tar";
"simple-templates" = dontDistribute super."simple-templates";
"simple-vec3" = dontDistribute super."simple-vec3";
"simpleargs" = dontDistribute super."simpleargs";
@ -8702,6 +8716,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timelens" = dontDistribute super."timelens";
"timeless" = dontDistribute super."timeless";
"timelike" = dontDistribute super."timelike";
"timelike-clock" = dontDistribute super."timelike-clock";
@ -9652,6 +9667,7 @@ self: super: {
"yuuko" = dontDistribute super."yuuko";
"yxdb-utils" = dontDistribute super."yxdb-utils";
"z3" = dontDistribute super."z3";
"z3-encoding" = dontDistribute super."z3-encoding";
"zalgo" = dontDistribute super."zalgo";
"zampolit" = dontDistribute super."zampolit";
"zasni-gerna" = dontDistribute super."zasni-gerna";

View file

@ -2694,6 +2694,7 @@ self: super: {
"dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
"dclabel" = dontDistribute super."dclabel";
"dclabel-eci11" = dontDistribute super."dclabel-eci11";
"ddate" = dontDistribute super."ddate";
"ddc-base" = dontDistribute super."ddc-base";
"ddc-build" = dontDistribute super."ddc-build";
"ddc-code" = dontDistribute super."ddc-code";
@ -3009,6 +3010,7 @@ self: super: {
"ebeats" = dontDistribute super."ebeats";
"ebnf-bff" = dontDistribute super."ebnf-bff";
"ec2-signature" = dontDistribute super."ec2-signature";
"ec2-unikernel" = dontDistribute super."ec2-unikernel";
"eccrypto" = dontDistribute super."eccrypto";
"ecdsa" = dontDistribute super."ecdsa";
"ecma262" = dontDistribute super."ecma262";
@ -3362,6 +3364,7 @@ self: super: {
"fixpoint" = dontDistribute super."fixpoint";
"fixtime" = dontDistribute super."fixtime";
"fizz-buzz" = dontDistribute super."fizz-buzz";
"fizzbuzz" = dontDistribute super."fizzbuzz";
"flaccuraterip" = dontDistribute super."flaccuraterip";
"flamethrower" = dontDistribute super."flamethrower";
"flamingra" = dontDistribute super."flamingra";
@ -3415,6 +3418,7 @@ self: super: {
"foma" = dontDistribute super."foma";
"font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
"foo" = dontDistribute super."foo";
"foobar" = dontDistribute super."foobar";
"for-free" = dontDistribute super."for-free";
"forbidden-fruit" = dontDistribute super."forbidden-fruit";
"force-layout" = doDistribute super."force-layout_0_3_0_8";
@ -4279,6 +4283,12 @@ self: super: {
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
"haskell-tools-ast" = dontDistribute super."haskell-tools-ast";
"haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc";
"haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen";
"haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf";
"haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint";
"haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor";
"haskell-tor" = dontDistribute super."haskell-tor";
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
"haskell-typescript" = dontDistribute super."haskell-typescript";
@ -4684,6 +4694,7 @@ self: super: {
"hopfield" = dontDistribute super."hopfield";
"hopfield-networks" = dontDistribute super."hopfield-networks";
"hopfli" = dontDistribute super."hopfli";
"hoppy-docs" = dontDistribute super."hoppy-docs";
"hoppy-generator" = dontDistribute super."hoppy-generator";
"hoppy-runtime" = dontDistribute super."hoppy-runtime";
"hoppy-std" = dontDistribute super."hoppy-std";
@ -5626,6 +5637,7 @@ self: super: {
"learn-physics-examples" = dontDistribute super."learn-physics-examples";
"learning-hmm" = dontDistribute super."learning-hmm";
"leetify" = dontDistribute super."leetify";
"legion" = dontDistribute super."legion";
"leksah" = dontDistribute super."leksah";
"leksah-server" = dontDistribute super."leksah-server";
"lendingclub" = dontDistribute super."lendingclub";
@ -6136,6 +6148,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11";
"monad-logger-json" = dontDistribute super."monad-logger-json";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@ -7939,6 +7952,7 @@ self: super: {
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
"simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
"simple-tabular" = dontDistribute super."simple-tabular";
"simple-tar" = dontDistribute super."simple-tar";
"simple-templates" = dontDistribute super."simple-templates";
"simple-vec3" = dontDistribute super."simple-vec3";
"simpleargs" = dontDistribute super."simpleargs";
@ -8702,6 +8716,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timelens" = dontDistribute super."timelens";
"timeless" = dontDistribute super."timeless";
"timelike" = dontDistribute super."timelike";
"timelike-clock" = dontDistribute super."timelike-clock";
@ -9652,6 +9667,7 @@ self: super: {
"yuuko" = dontDistribute super."yuuko";
"yxdb-utils" = dontDistribute super."yxdb-utils";
"z3" = dontDistribute super."z3";
"z3-encoding" = dontDistribute super."z3-encoding";
"zalgo" = dontDistribute super."zalgo";
"zampolit" = dontDistribute super."zampolit";
"zasni-gerna" = dontDistribute super."zasni-gerna";

View file

@ -2694,6 +2694,7 @@ self: super: {
"dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
"dclabel" = dontDistribute super."dclabel";
"dclabel-eci11" = dontDistribute super."dclabel-eci11";
"ddate" = dontDistribute super."ddate";
"ddc-base" = dontDistribute super."ddc-base";
"ddc-build" = dontDistribute super."ddc-build";
"ddc-code" = dontDistribute super."ddc-code";
@ -3009,6 +3010,7 @@ self: super: {
"ebeats" = dontDistribute super."ebeats";
"ebnf-bff" = dontDistribute super."ebnf-bff";
"ec2-signature" = dontDistribute super."ec2-signature";
"ec2-unikernel" = dontDistribute super."ec2-unikernel";
"eccrypto" = dontDistribute super."eccrypto";
"ecdsa" = dontDistribute super."ecdsa";
"ecma262" = dontDistribute super."ecma262";
@ -3362,6 +3364,7 @@ self: super: {
"fixpoint" = dontDistribute super."fixpoint";
"fixtime" = dontDistribute super."fixtime";
"fizz-buzz" = dontDistribute super."fizz-buzz";
"fizzbuzz" = dontDistribute super."fizzbuzz";
"flaccuraterip" = dontDistribute super."flaccuraterip";
"flamethrower" = dontDistribute super."flamethrower";
"flamingra" = dontDistribute super."flamingra";
@ -3415,6 +3418,7 @@ self: super: {
"foma" = dontDistribute super."foma";
"font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
"foo" = dontDistribute super."foo";
"foobar" = dontDistribute super."foobar";
"for-free" = dontDistribute super."for-free";
"forbidden-fruit" = dontDistribute super."forbidden-fruit";
"force-layout" = doDistribute super."force-layout_0_3_0_8";
@ -4279,6 +4283,12 @@ self: super: {
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
"haskell-tools-ast" = dontDistribute super."haskell-tools-ast";
"haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc";
"haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen";
"haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf";
"haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint";
"haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor";
"haskell-tor" = dontDistribute super."haskell-tor";
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
"haskell-typescript" = dontDistribute super."haskell-typescript";
@ -4684,6 +4694,7 @@ self: super: {
"hopfield" = dontDistribute super."hopfield";
"hopfield-networks" = dontDistribute super."hopfield-networks";
"hopfli" = dontDistribute super."hopfli";
"hoppy-docs" = dontDistribute super."hoppy-docs";
"hoppy-generator" = dontDistribute super."hoppy-generator";
"hoppy-runtime" = dontDistribute super."hoppy-runtime";
"hoppy-std" = dontDistribute super."hoppy-std";
@ -5626,6 +5637,7 @@ self: super: {
"learn-physics-examples" = dontDistribute super."learn-physics-examples";
"learning-hmm" = dontDistribute super."learning-hmm";
"leetify" = dontDistribute super."leetify";
"legion" = dontDistribute super."legion";
"leksah" = dontDistribute super."leksah";
"leksah-server" = dontDistribute super."leksah-server";
"lendingclub" = dontDistribute super."lendingclub";
@ -6136,6 +6148,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11";
"monad-logger-json" = dontDistribute super."monad-logger-json";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@ -7939,6 +7952,7 @@ self: super: {
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
"simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
"simple-tabular" = dontDistribute super."simple-tabular";
"simple-tar" = dontDistribute super."simple-tar";
"simple-templates" = dontDistribute super."simple-templates";
"simple-vec3" = dontDistribute super."simple-vec3";
"simpleargs" = dontDistribute super."simpleargs";
@ -8702,6 +8716,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timelens" = dontDistribute super."timelens";
"timeless" = dontDistribute super."timeless";
"timelike" = dontDistribute super."timelike";
"timelike-clock" = dontDistribute super."timelike-clock";
@ -9652,6 +9667,7 @@ self: super: {
"yuuko" = dontDistribute super."yuuko";
"yxdb-utils" = dontDistribute super."yxdb-utils";
"z3" = dontDistribute super."z3";
"z3-encoding" = dontDistribute super."z3-encoding";
"zalgo" = dontDistribute super."zalgo";
"zampolit" = dontDistribute super."zampolit";
"zasni-gerna" = dontDistribute super."zasni-gerna";

View file

@ -2694,6 +2694,7 @@ self: super: {
"dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
"dclabel" = dontDistribute super."dclabel";
"dclabel-eci11" = dontDistribute super."dclabel-eci11";
"ddate" = dontDistribute super."ddate";
"ddc-base" = dontDistribute super."ddc-base";
"ddc-build" = dontDistribute super."ddc-build";
"ddc-code" = dontDistribute super."ddc-code";
@ -3009,6 +3010,7 @@ self: super: {
"ebeats" = dontDistribute super."ebeats";
"ebnf-bff" = dontDistribute super."ebnf-bff";
"ec2-signature" = dontDistribute super."ec2-signature";
"ec2-unikernel" = dontDistribute super."ec2-unikernel";
"eccrypto" = dontDistribute super."eccrypto";
"ecdsa" = dontDistribute super."ecdsa";
"ecma262" = dontDistribute super."ecma262";
@ -3362,6 +3364,7 @@ self: super: {
"fixpoint" = dontDistribute super."fixpoint";
"fixtime" = dontDistribute super."fixtime";
"fizz-buzz" = dontDistribute super."fizz-buzz";
"fizzbuzz" = dontDistribute super."fizzbuzz";
"flaccuraterip" = dontDistribute super."flaccuraterip";
"flamethrower" = dontDistribute super."flamethrower";
"flamingra" = dontDistribute super."flamingra";
@ -3415,6 +3418,7 @@ self: super: {
"foma" = dontDistribute super."foma";
"font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
"foo" = dontDistribute super."foo";
"foobar" = dontDistribute super."foobar";
"for-free" = dontDistribute super."for-free";
"forbidden-fruit" = dontDistribute super."forbidden-fruit";
"force-layout" = doDistribute super."force-layout_0_3_0_8";
@ -4277,6 +4281,12 @@ self: super: {
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
"haskell-tools-ast" = dontDistribute super."haskell-tools-ast";
"haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc";
"haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen";
"haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf";
"haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint";
"haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor";
"haskell-tor" = dontDistribute super."haskell-tor";
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
"haskell-typescript" = dontDistribute super."haskell-typescript";
@ -4682,6 +4692,7 @@ self: super: {
"hopfield" = dontDistribute super."hopfield";
"hopfield-networks" = dontDistribute super."hopfield-networks";
"hopfli" = dontDistribute super."hopfli";
"hoppy-docs" = dontDistribute super."hoppy-docs";
"hoppy-generator" = dontDistribute super."hoppy-generator";
"hoppy-runtime" = dontDistribute super."hoppy-runtime";
"hoppy-std" = dontDistribute super."hoppy-std";
@ -5624,6 +5635,7 @@ self: super: {
"learn-physics-examples" = dontDistribute super."learn-physics-examples";
"learning-hmm" = dontDistribute super."learning-hmm";
"leetify" = dontDistribute super."leetify";
"legion" = dontDistribute super."legion";
"leksah" = dontDistribute super."leksah";
"leksah-server" = dontDistribute super."leksah-server";
"lendingclub" = dontDistribute super."lendingclub";
@ -6134,6 +6146,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@ -7936,6 +7949,7 @@ self: super: {
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
"simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
"simple-tabular" = dontDistribute super."simple-tabular";
"simple-tar" = dontDistribute super."simple-tar";
"simple-templates" = dontDistribute super."simple-templates";
"simple-vec3" = dontDistribute super."simple-vec3";
"simpleargs" = dontDistribute super."simpleargs";
@ -8699,6 +8713,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timelens" = dontDistribute super."timelens";
"timeless" = dontDistribute super."timeless";
"timelike" = dontDistribute super."timelike";
"timelike-clock" = dontDistribute super."timelike-clock";
@ -9649,6 +9664,7 @@ self: super: {
"yuuko" = dontDistribute super."yuuko";
"yxdb-utils" = dontDistribute super."yxdb-utils";
"z3" = dontDistribute super."z3";
"z3-encoding" = dontDistribute super."z3-encoding";
"zalgo" = dontDistribute super."zalgo";
"zampolit" = dontDistribute super."zampolit";
"zasni-gerna" = dontDistribute super."zasni-gerna";

View file

@ -2694,6 +2694,7 @@ self: super: {
"dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
"dclabel" = dontDistribute super."dclabel";
"dclabel-eci11" = dontDistribute super."dclabel-eci11";
"ddate" = dontDistribute super."ddate";
"ddc-base" = dontDistribute super."ddc-base";
"ddc-build" = dontDistribute super."ddc-build";
"ddc-code" = dontDistribute super."ddc-code";
@ -3009,6 +3010,7 @@ self: super: {
"ebeats" = dontDistribute super."ebeats";
"ebnf-bff" = dontDistribute super."ebnf-bff";
"ec2-signature" = dontDistribute super."ec2-signature";
"ec2-unikernel" = dontDistribute super."ec2-unikernel";
"eccrypto" = dontDistribute super."eccrypto";
"ecdsa" = dontDistribute super."ecdsa";
"ecma262" = dontDistribute super."ecma262";
@ -3362,6 +3364,7 @@ self: super: {
"fixpoint" = dontDistribute super."fixpoint";
"fixtime" = dontDistribute super."fixtime";
"fizz-buzz" = dontDistribute super."fizz-buzz";
"fizzbuzz" = dontDistribute super."fizzbuzz";
"flaccuraterip" = dontDistribute super."flaccuraterip";
"flamethrower" = dontDistribute super."flamethrower";
"flamingra" = dontDistribute super."flamingra";
@ -3415,6 +3418,7 @@ self: super: {
"foma" = dontDistribute super."foma";
"font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
"foo" = dontDistribute super."foo";
"foobar" = dontDistribute super."foobar";
"for-free" = dontDistribute super."for-free";
"forbidden-fruit" = dontDistribute super."forbidden-fruit";
"force-layout" = doDistribute super."force-layout_0_3_0_8";
@ -4277,6 +4281,12 @@ self: super: {
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
"haskell-tools-ast" = dontDistribute super."haskell-tools-ast";
"haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc";
"haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen";
"haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf";
"haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint";
"haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor";
"haskell-tor" = dontDistribute super."haskell-tor";
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
"haskell-typescript" = dontDistribute super."haskell-typescript";
@ -4682,6 +4692,7 @@ self: super: {
"hopfield" = dontDistribute super."hopfield";
"hopfield-networks" = dontDistribute super."hopfield-networks";
"hopfli" = dontDistribute super."hopfli";
"hoppy-docs" = dontDistribute super."hoppy-docs";
"hoppy-generator" = dontDistribute super."hoppy-generator";
"hoppy-runtime" = dontDistribute super."hoppy-runtime";
"hoppy-std" = dontDistribute super."hoppy-std";
@ -5624,6 +5635,7 @@ self: super: {
"learn-physics-examples" = dontDistribute super."learn-physics-examples";
"learning-hmm" = dontDistribute super."learning-hmm";
"leetify" = dontDistribute super."leetify";
"legion" = dontDistribute super."legion";
"leksah" = dontDistribute super."leksah";
"leksah-server" = dontDistribute super."leksah-server";
"lendingclub" = dontDistribute super."lendingclub";
@ -6134,6 +6146,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@ -7936,6 +7949,7 @@ self: super: {
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
"simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
"simple-tabular" = dontDistribute super."simple-tabular";
"simple-tar" = dontDistribute super."simple-tar";
"simple-templates" = dontDistribute super."simple-templates";
"simple-vec3" = dontDistribute super."simple-vec3";
"simpleargs" = dontDistribute super."simpleargs";
@ -8699,6 +8713,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timelens" = dontDistribute super."timelens";
"timeless" = dontDistribute super."timeless";
"timelike" = dontDistribute super."timelike";
"timelike-clock" = dontDistribute super."timelike-clock";
@ -9649,6 +9664,7 @@ self: super: {
"yuuko" = dontDistribute super."yuuko";
"yxdb-utils" = dontDistribute super."yxdb-utils";
"z3" = dontDistribute super."z3";
"z3-encoding" = dontDistribute super."z3-encoding";
"zalgo" = dontDistribute super."zalgo";
"zampolit" = dontDistribute super."zampolit";
"zasni-gerna" = dontDistribute super."zasni-gerna";

View file

@ -2693,6 +2693,7 @@ self: super: {
"dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
"dclabel" = dontDistribute super."dclabel";
"dclabel-eci11" = dontDistribute super."dclabel-eci11";
"ddate" = dontDistribute super."ddate";
"ddc-base" = dontDistribute super."ddc-base";
"ddc-build" = dontDistribute super."ddc-build";
"ddc-code" = dontDistribute super."ddc-code";
@ -3008,6 +3009,7 @@ self: super: {
"ebeats" = dontDistribute super."ebeats";
"ebnf-bff" = dontDistribute super."ebnf-bff";
"ec2-signature" = dontDistribute super."ec2-signature";
"ec2-unikernel" = dontDistribute super."ec2-unikernel";
"eccrypto" = dontDistribute super."eccrypto";
"ecdsa" = dontDistribute super."ecdsa";
"ecma262" = dontDistribute super."ecma262";
@ -3361,6 +3363,7 @@ self: super: {
"fixpoint" = dontDistribute super."fixpoint";
"fixtime" = dontDistribute super."fixtime";
"fizz-buzz" = dontDistribute super."fizz-buzz";
"fizzbuzz" = dontDistribute super."fizzbuzz";
"flaccuraterip" = dontDistribute super."flaccuraterip";
"flamethrower" = dontDistribute super."flamethrower";
"flamingra" = dontDistribute super."flamingra";
@ -3414,6 +3417,7 @@ self: super: {
"foma" = dontDistribute super."foma";
"font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
"foo" = dontDistribute super."foo";
"foobar" = dontDistribute super."foobar";
"for-free" = dontDistribute super."for-free";
"forbidden-fruit" = dontDistribute super."forbidden-fruit";
"force-layout" = doDistribute super."force-layout_0_3_0_8";
@ -4276,6 +4280,12 @@ self: super: {
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
"haskell-tools-ast" = dontDistribute super."haskell-tools-ast";
"haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc";
"haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen";
"haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf";
"haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint";
"haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor";
"haskell-tor" = dontDistribute super."haskell-tor";
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
"haskell-typescript" = dontDistribute super."haskell-typescript";
@ -4680,6 +4690,7 @@ self: super: {
"hopfield" = dontDistribute super."hopfield";
"hopfield-networks" = dontDistribute super."hopfield-networks";
"hopfli" = dontDistribute super."hopfli";
"hoppy-docs" = dontDistribute super."hoppy-docs";
"hoppy-generator" = dontDistribute super."hoppy-generator";
"hoppy-runtime" = dontDistribute super."hoppy-runtime";
"hoppy-std" = dontDistribute super."hoppy-std";
@ -5622,6 +5633,7 @@ self: super: {
"learn-physics-examples" = dontDistribute super."learn-physics-examples";
"learning-hmm" = dontDistribute super."learning-hmm";
"leetify" = dontDistribute super."leetify";
"legion" = dontDistribute super."legion";
"leksah" = dontDistribute super."leksah";
"leksah-server" = dontDistribute super."leksah-server";
"lendingclub" = dontDistribute super."lendingclub";
@ -6132,6 +6144,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@ -7933,6 +7946,7 @@ self: super: {
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
"simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
"simple-tabular" = dontDistribute super."simple-tabular";
"simple-tar" = dontDistribute super."simple-tar";
"simple-templates" = dontDistribute super."simple-templates";
"simple-vec3" = dontDistribute super."simple-vec3";
"simpleargs" = dontDistribute super."simpleargs";
@ -8696,6 +8710,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timelens" = dontDistribute super."timelens";
"timeless" = dontDistribute super."timeless";
"timelike" = dontDistribute super."timelike";
"timelike-clock" = dontDistribute super."timelike-clock";
@ -9643,6 +9658,7 @@ self: super: {
"yuuko" = dontDistribute super."yuuko";
"yxdb-utils" = dontDistribute super."yxdb-utils";
"z3" = dontDistribute super."z3";
"z3-encoding" = dontDistribute super."z3-encoding";
"zalgo" = dontDistribute super."zalgo";
"zampolit" = dontDistribute super."zampolit";
"zasni-gerna" = dontDistribute super."zasni-gerna";

View file

@ -2693,6 +2693,7 @@ self: super: {
"dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
"dclabel" = dontDistribute super."dclabel";
"dclabel-eci11" = dontDistribute super."dclabel-eci11";
"ddate" = dontDistribute super."ddate";
"ddc-base" = dontDistribute super."ddc-base";
"ddc-build" = dontDistribute super."ddc-build";
"ddc-code" = dontDistribute super."ddc-code";
@ -3008,6 +3009,7 @@ self: super: {
"ebeats" = dontDistribute super."ebeats";
"ebnf-bff" = dontDistribute super."ebnf-bff";
"ec2-signature" = dontDistribute super."ec2-signature";
"ec2-unikernel" = dontDistribute super."ec2-unikernel";
"eccrypto" = dontDistribute super."eccrypto";
"ecdsa" = dontDistribute super."ecdsa";
"ecma262" = dontDistribute super."ecma262";
@ -3361,6 +3363,7 @@ self: super: {
"fixpoint" = dontDistribute super."fixpoint";
"fixtime" = dontDistribute super."fixtime";
"fizz-buzz" = dontDistribute super."fizz-buzz";
"fizzbuzz" = dontDistribute super."fizzbuzz";
"flaccuraterip" = dontDistribute super."flaccuraterip";
"flamethrower" = dontDistribute super."flamethrower";
"flamingra" = dontDistribute super."flamingra";
@ -3414,6 +3417,7 @@ self: super: {
"foma" = dontDistribute super."foma";
"font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
"foo" = dontDistribute super."foo";
"foobar" = dontDistribute super."foobar";
"for-free" = dontDistribute super."for-free";
"forbidden-fruit" = dontDistribute super."forbidden-fruit";
"force-layout" = doDistribute super."force-layout_0_3_0_8";
@ -4276,6 +4280,12 @@ self: super: {
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
"haskell-tools-ast" = dontDistribute super."haskell-tools-ast";
"haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc";
"haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen";
"haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf";
"haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint";
"haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor";
"haskell-tor" = dontDistribute super."haskell-tor";
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
"haskell-typescript" = dontDistribute super."haskell-typescript";
@ -4680,6 +4690,7 @@ self: super: {
"hopfield" = dontDistribute super."hopfield";
"hopfield-networks" = dontDistribute super."hopfield-networks";
"hopfli" = dontDistribute super."hopfli";
"hoppy-docs" = dontDistribute super."hoppy-docs";
"hoppy-generator" = dontDistribute super."hoppy-generator";
"hoppy-runtime" = dontDistribute super."hoppy-runtime";
"hoppy-std" = dontDistribute super."hoppy-std";
@ -5622,6 +5633,7 @@ self: super: {
"learn-physics-examples" = dontDistribute super."learn-physics-examples";
"learning-hmm" = dontDistribute super."learning-hmm";
"leetify" = dontDistribute super."leetify";
"legion" = dontDistribute super."legion";
"leksah" = dontDistribute super."leksah";
"leksah-server" = dontDistribute super."leksah-server";
"lendingclub" = dontDistribute super."lendingclub";
@ -6132,6 +6144,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@ -7933,6 +7946,7 @@ self: super: {
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
"simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
"simple-tabular" = dontDistribute super."simple-tabular";
"simple-tar" = dontDistribute super."simple-tar";
"simple-templates" = dontDistribute super."simple-templates";
"simple-vec3" = dontDistribute super."simple-vec3";
"simpleargs" = dontDistribute super."simpleargs";
@ -8696,6 +8710,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timelens" = dontDistribute super."timelens";
"timeless" = dontDistribute super."timeless";
"timelike" = dontDistribute super."timelike";
"timelike-clock" = dontDistribute super."timelike-clock";
@ -9643,6 +9658,7 @@ self: super: {
"yuuko" = dontDistribute super."yuuko";
"yxdb-utils" = dontDistribute super."yxdb-utils";
"z3" = dontDistribute super."z3";
"z3-encoding" = dontDistribute super."z3-encoding";
"zalgo" = dontDistribute super."zalgo";
"zampolit" = dontDistribute super."zampolit";
"zasni-gerna" = dontDistribute super."zasni-gerna";

View file

@ -2688,6 +2688,7 @@ self: super: {
"dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
"dclabel" = dontDistribute super."dclabel";
"dclabel-eci11" = dontDistribute super."dclabel-eci11";
"ddate" = dontDistribute super."ddate";
"ddc-base" = dontDistribute super."ddc-base";
"ddc-build" = dontDistribute super."ddc-build";
"ddc-code" = dontDistribute super."ddc-code";
@ -3003,6 +3004,7 @@ self: super: {
"ebeats" = dontDistribute super."ebeats";
"ebnf-bff" = dontDistribute super."ebnf-bff";
"ec2-signature" = dontDistribute super."ec2-signature";
"ec2-unikernel" = dontDistribute super."ec2-unikernel";
"eccrypto" = dontDistribute super."eccrypto";
"ecdsa" = dontDistribute super."ecdsa";
"ecma262" = dontDistribute super."ecma262";
@ -3355,6 +3357,7 @@ self: super: {
"fixpoint" = dontDistribute super."fixpoint";
"fixtime" = dontDistribute super."fixtime";
"fizz-buzz" = dontDistribute super."fizz-buzz";
"fizzbuzz" = dontDistribute super."fizzbuzz";
"flaccuraterip" = dontDistribute super."flaccuraterip";
"flamethrower" = dontDistribute super."flamethrower";
"flamingra" = dontDistribute super."flamingra";
@ -3408,6 +3411,7 @@ self: super: {
"foma" = dontDistribute super."foma";
"font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
"foo" = dontDistribute super."foo";
"foobar" = dontDistribute super."foobar";
"for-free" = dontDistribute super."for-free";
"forbidden-fruit" = dontDistribute super."forbidden-fruit";
"force-layout" = doDistribute super."force-layout_0_3_0_8";
@ -4270,6 +4274,12 @@ self: super: {
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
"haskell-tools-ast" = dontDistribute super."haskell-tools-ast";
"haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc";
"haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen";
"haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf";
"haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint";
"haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor";
"haskell-tor" = dontDistribute super."haskell-tor";
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
"haskell-typescript" = dontDistribute super."haskell-typescript";
@ -4674,6 +4684,7 @@ self: super: {
"hopfield" = dontDistribute super."hopfield";
"hopfield-networks" = dontDistribute super."hopfield-networks";
"hopfli" = dontDistribute super."hopfli";
"hoppy-docs" = dontDistribute super."hoppy-docs";
"hoppy-generator" = dontDistribute super."hoppy-generator";
"hoppy-runtime" = dontDistribute super."hoppy-runtime";
"hoppy-std" = dontDistribute super."hoppy-std";
@ -5615,6 +5626,7 @@ self: super: {
"learn-physics-examples" = dontDistribute super."learn-physics-examples";
"learning-hmm" = dontDistribute super."learning-hmm";
"leetify" = dontDistribute super."leetify";
"legion" = dontDistribute super."legion";
"leksah" = dontDistribute super."leksah";
"leksah-server" = dontDistribute super."leksah-server";
"lendingclub" = dontDistribute super."lendingclub";
@ -6125,6 +6137,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@ -7925,6 +7938,7 @@ self: super: {
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
"simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
"simple-tabular" = dontDistribute super."simple-tabular";
"simple-tar" = dontDistribute super."simple-tar";
"simple-templates" = dontDistribute super."simple-templates";
"simple-vec3" = dontDistribute super."simple-vec3";
"simpleargs" = dontDistribute super."simpleargs";
@ -8687,6 +8701,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timelens" = dontDistribute super."timelens";
"timeless" = dontDistribute super."timeless";
"timelike" = dontDistribute super."timelike";
"timelike-clock" = dontDistribute super."timelike-clock";
@ -9633,6 +9648,7 @@ self: super: {
"yuuko" = dontDistribute super."yuuko";
"yxdb-utils" = dontDistribute super."yxdb-utils";
"z3" = dontDistribute super."z3";
"z3-encoding" = dontDistribute super."z3-encoding";
"zalgo" = dontDistribute super."zalgo";
"zampolit" = dontDistribute super."zampolit";
"zasni-gerna" = dontDistribute super."zasni-gerna";

View file

@ -2686,6 +2686,7 @@ self: super: {
"dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
"dclabel" = dontDistribute super."dclabel";
"dclabel-eci11" = dontDistribute super."dclabel-eci11";
"ddate" = dontDistribute super."ddate";
"ddc-base" = dontDistribute super."ddc-base";
"ddc-build" = dontDistribute super."ddc-build";
"ddc-code" = dontDistribute super."ddc-code";
@ -3000,6 +3001,7 @@ self: super: {
"ebeats" = dontDistribute super."ebeats";
"ebnf-bff" = dontDistribute super."ebnf-bff";
"ec2-signature" = dontDistribute super."ec2-signature";
"ec2-unikernel" = dontDistribute super."ec2-unikernel";
"eccrypto" = dontDistribute super."eccrypto";
"ecdsa" = dontDistribute super."ecdsa";
"ecma262" = dontDistribute super."ecma262";
@ -3352,6 +3354,7 @@ self: super: {
"fixpoint" = dontDistribute super."fixpoint";
"fixtime" = dontDistribute super."fixtime";
"fizz-buzz" = dontDistribute super."fizz-buzz";
"fizzbuzz" = dontDistribute super."fizzbuzz";
"flaccuraterip" = dontDistribute super."flaccuraterip";
"flamethrower" = dontDistribute super."flamethrower";
"flamingra" = dontDistribute super."flamingra";
@ -3405,6 +3408,7 @@ self: super: {
"foma" = dontDistribute super."foma";
"font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
"foo" = dontDistribute super."foo";
"foobar" = dontDistribute super."foobar";
"for-free" = dontDistribute super."for-free";
"forbidden-fruit" = dontDistribute super."forbidden-fruit";
"force-layout" = doDistribute super."force-layout_0_3_0_8";
@ -4266,6 +4270,12 @@ self: super: {
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
"haskell-tools-ast" = dontDistribute super."haskell-tools-ast";
"haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc";
"haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen";
"haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf";
"haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint";
"haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor";
"haskell-tor" = dontDistribute super."haskell-tor";
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
"haskell-typescript" = dontDistribute super."haskell-typescript";
@ -4668,6 +4678,7 @@ self: super: {
"hopfield" = dontDistribute super."hopfield";
"hopfield-networks" = dontDistribute super."hopfield-networks";
"hopfli" = dontDistribute super."hopfli";
"hoppy-docs" = dontDistribute super."hoppy-docs";
"hoppy-generator" = dontDistribute super."hoppy-generator";
"hoppy-runtime" = dontDistribute super."hoppy-runtime";
"hoppy-std" = dontDistribute super."hoppy-std";
@ -5609,6 +5620,7 @@ self: super: {
"learn-physics-examples" = dontDistribute super."learn-physics-examples";
"learning-hmm" = dontDistribute super."learning-hmm";
"leetify" = dontDistribute super."leetify";
"legion" = dontDistribute super."legion";
"leksah" = dontDistribute super."leksah";
"leksah-server" = dontDistribute super."leksah-server";
"lendingclub" = dontDistribute super."lendingclub";
@ -6118,6 +6130,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@ -7917,6 +7930,7 @@ self: super: {
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
"simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
"simple-tabular" = dontDistribute super."simple-tabular";
"simple-tar" = dontDistribute super."simple-tar";
"simple-templates" = dontDistribute super."simple-templates";
"simple-vec3" = dontDistribute super."simple-vec3";
"simpleargs" = dontDistribute super."simpleargs";
@ -8676,6 +8690,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timelens" = dontDistribute super."timelens";
"timeless" = dontDistribute super."timeless";
"timelike" = dontDistribute super."timelike";
"timelike-clock" = dontDistribute super."timelike-clock";
@ -9622,6 +9637,7 @@ self: super: {
"yuuko" = dontDistribute super."yuuko";
"yxdb-utils" = dontDistribute super."yxdb-utils";
"z3" = dontDistribute super."z3";
"z3-encoding" = dontDistribute super."z3-encoding";
"zalgo" = dontDistribute super."zalgo";
"zampolit" = dontDistribute super."zampolit";
"zasni-gerna" = dontDistribute super."zasni-gerna";

View file

@ -2682,6 +2682,7 @@ self: super: {
"dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
"dclabel" = dontDistribute super."dclabel";
"dclabel-eci11" = dontDistribute super."dclabel-eci11";
"ddate" = dontDistribute super."ddate";
"ddc-base" = dontDistribute super."ddc-base";
"ddc-build" = dontDistribute super."ddc-build";
"ddc-code" = dontDistribute super."ddc-code";
@ -2996,6 +2997,7 @@ self: super: {
"ebeats" = dontDistribute super."ebeats";
"ebnf-bff" = dontDistribute super."ebnf-bff";
"ec2-signature" = dontDistribute super."ec2-signature";
"ec2-unikernel" = dontDistribute super."ec2-unikernel";
"eccrypto" = dontDistribute super."eccrypto";
"ecdsa" = dontDistribute super."ecdsa";
"ecma262" = dontDistribute super."ecma262";
@ -3345,6 +3347,7 @@ self: super: {
"fixpoint" = dontDistribute super."fixpoint";
"fixtime" = dontDistribute super."fixtime";
"fizz-buzz" = dontDistribute super."fizz-buzz";
"fizzbuzz" = dontDistribute super."fizzbuzz";
"flaccuraterip" = dontDistribute super."flaccuraterip";
"flamethrower" = dontDistribute super."flamethrower";
"flamingra" = dontDistribute super."flamingra";
@ -3398,6 +3401,7 @@ self: super: {
"foma" = dontDistribute super."foma";
"font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
"foo" = dontDistribute super."foo";
"foobar" = dontDistribute super."foobar";
"for-free" = dontDistribute super."for-free";
"forbidden-fruit" = dontDistribute super."forbidden-fruit";
"force-layout" = doDistribute super."force-layout_0_3_0_9";
@ -4255,6 +4259,12 @@ self: super: {
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
"haskell-tools-ast" = dontDistribute super."haskell-tools-ast";
"haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc";
"haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen";
"haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf";
"haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint";
"haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor";
"haskell-tor" = dontDistribute super."haskell-tor";
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
"haskell-typescript" = dontDistribute super."haskell-typescript";
@ -4657,6 +4667,7 @@ self: super: {
"hopfield" = dontDistribute super."hopfield";
"hopfield-networks" = dontDistribute super."hopfield-networks";
"hopfli" = dontDistribute super."hopfli";
"hoppy-docs" = dontDistribute super."hoppy-docs";
"hoppy-generator" = dontDistribute super."hoppy-generator";
"hoppy-runtime" = dontDistribute super."hoppy-runtime";
"hoppy-std" = dontDistribute super."hoppy-std";
@ -5593,6 +5604,7 @@ self: super: {
"learn-physics-examples" = dontDistribute super."learn-physics-examples";
"learning-hmm" = dontDistribute super."learning-hmm";
"leetify" = dontDistribute super."leetify";
"legion" = dontDistribute super."legion";
"leksah" = dontDistribute super."leksah";
"leksah-server" = dontDistribute super."leksah-server";
"lendingclub" = dontDistribute super."lendingclub";
@ -6101,6 +6113,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@ -7896,6 +7909,7 @@ self: super: {
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
"simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
"simple-tabular" = dontDistribute super."simple-tabular";
"simple-tar" = dontDistribute super."simple-tar";
"simple-templates" = dontDistribute super."simple-templates";
"simple-vec3" = dontDistribute super."simple-vec3";
"simpleargs" = dontDistribute super."simpleargs";
@ -8653,6 +8667,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timelens" = dontDistribute super."timelens";
"timeless" = dontDistribute super."timeless";
"timelike" = dontDistribute super."timelike";
"timelike-clock" = dontDistribute super."timelike-clock";
@ -9594,6 +9609,7 @@ self: super: {
"yuuko" = dontDistribute super."yuuko";
"yxdb-utils" = dontDistribute super."yxdb-utils";
"z3" = dontDistribute super."z3";
"z3-encoding" = dontDistribute super."z3-encoding";
"zalgo" = dontDistribute super."zalgo";
"zampolit" = dontDistribute super."zampolit";
"zasni-gerna" = dontDistribute super."zasni-gerna";

View file

@ -2682,6 +2682,7 @@ self: super: {
"dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
"dclabel" = dontDistribute super."dclabel";
"dclabel-eci11" = dontDistribute super."dclabel-eci11";
"ddate" = dontDistribute super."ddate";
"ddc-base" = dontDistribute super."ddc-base";
"ddc-build" = dontDistribute super."ddc-build";
"ddc-code" = dontDistribute super."ddc-code";
@ -2996,6 +2997,7 @@ self: super: {
"ebeats" = dontDistribute super."ebeats";
"ebnf-bff" = dontDistribute super."ebnf-bff";
"ec2-signature" = dontDistribute super."ec2-signature";
"ec2-unikernel" = dontDistribute super."ec2-unikernel";
"eccrypto" = dontDistribute super."eccrypto";
"ecdsa" = dontDistribute super."ecdsa";
"ecma262" = dontDistribute super."ecma262";
@ -3344,6 +3346,7 @@ self: super: {
"fixpoint" = dontDistribute super."fixpoint";
"fixtime" = dontDistribute super."fixtime";
"fizz-buzz" = dontDistribute super."fizz-buzz";
"fizzbuzz" = dontDistribute super."fizzbuzz";
"flaccuraterip" = dontDistribute super."flaccuraterip";
"flamethrower" = dontDistribute super."flamethrower";
"flamingra" = dontDistribute super."flamingra";
@ -3397,6 +3400,7 @@ self: super: {
"foma" = dontDistribute super."foma";
"font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
"foo" = dontDistribute super."foo";
"foobar" = dontDistribute super."foobar";
"for-free" = dontDistribute super."for-free";
"forbidden-fruit" = dontDistribute super."forbidden-fruit";
"force-layout" = doDistribute super."force-layout_0_3_0_9";
@ -4254,6 +4258,12 @@ self: super: {
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
"haskell-tools-ast" = dontDistribute super."haskell-tools-ast";
"haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc";
"haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen";
"haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf";
"haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint";
"haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor";
"haskell-tor" = dontDistribute super."haskell-tor";
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
"haskell-typescript" = dontDistribute super."haskell-typescript";
@ -4656,6 +4666,7 @@ self: super: {
"hopfield" = dontDistribute super."hopfield";
"hopfield-networks" = dontDistribute super."hopfield-networks";
"hopfli" = dontDistribute super."hopfli";
"hoppy-docs" = dontDistribute super."hoppy-docs";
"hoppy-generator" = dontDistribute super."hoppy-generator";
"hoppy-runtime" = dontDistribute super."hoppy-runtime";
"hoppy-std" = dontDistribute super."hoppy-std";
@ -5590,6 +5601,7 @@ self: super: {
"learn-physics-examples" = dontDistribute super."learn-physics-examples";
"learning-hmm" = dontDistribute super."learning-hmm";
"leetify" = dontDistribute super."leetify";
"legion" = dontDistribute super."legion";
"leksah" = dontDistribute super."leksah";
"leksah-server" = dontDistribute super."leksah-server";
"lendingclub" = dontDistribute super."lendingclub";
@ -6098,6 +6110,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@ -7893,6 +7906,7 @@ self: super: {
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
"simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
"simple-tabular" = dontDistribute super."simple-tabular";
"simple-tar" = dontDistribute super."simple-tar";
"simple-templates" = dontDistribute super."simple-templates";
"simple-vec3" = dontDistribute super."simple-vec3";
"simpleargs" = dontDistribute super."simpleargs";
@ -8650,6 +8664,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timelens" = dontDistribute super."timelens";
"timeless" = dontDistribute super."timeless";
"timelike" = dontDistribute super."timelike";
"timelike-clock" = dontDistribute super."timelike-clock";
@ -9591,6 +9606,7 @@ self: super: {
"yuuko" = dontDistribute super."yuuko";
"yxdb-utils" = dontDistribute super."yxdb-utils";
"z3" = dontDistribute super."z3";
"z3-encoding" = dontDistribute super."z3-encoding";
"zalgo" = dontDistribute super."zalgo";
"zampolit" = dontDistribute super."zampolit";
"zasni-gerna" = dontDistribute super."zasni-gerna";

View file

@ -2682,6 +2682,7 @@ self: super: {
"dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
"dclabel" = dontDistribute super."dclabel";
"dclabel-eci11" = dontDistribute super."dclabel-eci11";
"ddate" = dontDistribute super."ddate";
"ddc-base" = dontDistribute super."ddc-base";
"ddc-build" = dontDistribute super."ddc-build";
"ddc-code" = dontDistribute super."ddc-code";
@ -2996,6 +2997,7 @@ self: super: {
"ebeats" = dontDistribute super."ebeats";
"ebnf-bff" = dontDistribute super."ebnf-bff";
"ec2-signature" = dontDistribute super."ec2-signature";
"ec2-unikernel" = dontDistribute super."ec2-unikernel";
"eccrypto" = dontDistribute super."eccrypto";
"ecdsa" = dontDistribute super."ecdsa";
"ecma262" = dontDistribute super."ecma262";
@ -3344,6 +3346,7 @@ self: super: {
"fixpoint" = dontDistribute super."fixpoint";
"fixtime" = dontDistribute super."fixtime";
"fizz-buzz" = dontDistribute super."fizz-buzz";
"fizzbuzz" = dontDistribute super."fizzbuzz";
"flaccuraterip" = dontDistribute super."flaccuraterip";
"flamethrower" = dontDistribute super."flamethrower";
"flamingra" = dontDistribute super."flamingra";
@ -3397,6 +3400,7 @@ self: super: {
"foma" = dontDistribute super."foma";
"font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
"foo" = dontDistribute super."foo";
"foobar" = dontDistribute super."foobar";
"for-free" = dontDistribute super."for-free";
"forbidden-fruit" = dontDistribute super."forbidden-fruit";
"force-layout" = doDistribute super."force-layout_0_3_0_10";
@ -4254,6 +4258,12 @@ self: super: {
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
"haskell-tools-ast" = dontDistribute super."haskell-tools-ast";
"haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc";
"haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen";
"haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf";
"haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint";
"haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor";
"haskell-tor" = dontDistribute super."haskell-tor";
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
"haskell-typescript" = dontDistribute super."haskell-typescript";
@ -4656,6 +4666,7 @@ self: super: {
"hopfield" = dontDistribute super."hopfield";
"hopfield-networks" = dontDistribute super."hopfield-networks";
"hopfli" = dontDistribute super."hopfli";
"hoppy-docs" = dontDistribute super."hoppy-docs";
"hoppy-generator" = dontDistribute super."hoppy-generator";
"hoppy-runtime" = dontDistribute super."hoppy-runtime";
"hoppy-std" = dontDistribute super."hoppy-std";
@ -5590,6 +5601,7 @@ self: super: {
"learn-physics-examples" = dontDistribute super."learn-physics-examples";
"learning-hmm" = dontDistribute super."learning-hmm";
"leetify" = dontDistribute super."leetify";
"legion" = dontDistribute super."legion";
"leksah" = dontDistribute super."leksah";
"leksah-server" = dontDistribute super."leksah-server";
"lendingclub" = dontDistribute super."lendingclub";
@ -6098,6 +6110,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@ -7893,6 +7906,7 @@ self: super: {
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
"simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
"simple-tabular" = dontDistribute super."simple-tabular";
"simple-tar" = dontDistribute super."simple-tar";
"simple-templates" = dontDistribute super."simple-templates";
"simple-vec3" = dontDistribute super."simple-vec3";
"simpleargs" = dontDistribute super."simpleargs";
@ -8650,6 +8664,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timelens" = dontDistribute super."timelens";
"timeless" = dontDistribute super."timeless";
"timelike" = dontDistribute super."timelike";
"timelike-clock" = dontDistribute super."timelike-clock";
@ -9591,6 +9606,7 @@ self: super: {
"yuuko" = dontDistribute super."yuuko";
"yxdb-utils" = dontDistribute super."yxdb-utils";
"z3" = dontDistribute super."z3";
"z3-encoding" = dontDistribute super."z3-encoding";
"zalgo" = dontDistribute super."zalgo";
"zampolit" = dontDistribute super."zampolit";
"zasni-gerna" = dontDistribute super."zasni-gerna";

View file

@ -2682,6 +2682,7 @@ self: super: {
"dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
"dclabel" = dontDistribute super."dclabel";
"dclabel-eci11" = dontDistribute super."dclabel-eci11";
"ddate" = dontDistribute super."ddate";
"ddc-base" = dontDistribute super."ddc-base";
"ddc-build" = dontDistribute super."ddc-build";
"ddc-code" = dontDistribute super."ddc-code";
@ -2996,6 +2997,7 @@ self: super: {
"ebeats" = dontDistribute super."ebeats";
"ebnf-bff" = dontDistribute super."ebnf-bff";
"ec2-signature" = dontDistribute super."ec2-signature";
"ec2-unikernel" = dontDistribute super."ec2-unikernel";
"eccrypto" = dontDistribute super."eccrypto";
"ecdsa" = dontDistribute super."ecdsa";
"ecma262" = dontDistribute super."ecma262";
@ -3344,6 +3346,7 @@ self: super: {
"fixpoint" = dontDistribute super."fixpoint";
"fixtime" = dontDistribute super."fixtime";
"fizz-buzz" = dontDistribute super."fizz-buzz";
"fizzbuzz" = dontDistribute super."fizzbuzz";
"flaccuraterip" = dontDistribute super."flaccuraterip";
"flamethrower" = dontDistribute super."flamethrower";
"flamingra" = dontDistribute super."flamingra";
@ -3397,6 +3400,7 @@ self: super: {
"foma" = dontDistribute super."foma";
"font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
"foo" = dontDistribute super."foo";
"foobar" = dontDistribute super."foobar";
"for-free" = dontDistribute super."for-free";
"forbidden-fruit" = dontDistribute super."forbidden-fruit";
"force-layout" = doDistribute super."force-layout_0_3_0_10";
@ -4253,6 +4257,12 @@ self: super: {
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
"haskell-tools-ast" = dontDistribute super."haskell-tools-ast";
"haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc";
"haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen";
"haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf";
"haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint";
"haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor";
"haskell-tor" = dontDistribute super."haskell-tor";
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
"haskell-typescript" = dontDistribute super."haskell-typescript";
@ -4655,6 +4665,7 @@ self: super: {
"hopfield" = dontDistribute super."hopfield";
"hopfield-networks" = dontDistribute super."hopfield-networks";
"hopfli" = dontDistribute super."hopfli";
"hoppy-docs" = dontDistribute super."hoppy-docs";
"hoppy-generator" = dontDistribute super."hoppy-generator";
"hoppy-runtime" = dontDistribute super."hoppy-runtime";
"hoppy-std" = dontDistribute super."hoppy-std";
@ -5589,6 +5600,7 @@ self: super: {
"learn-physics-examples" = dontDistribute super."learn-physics-examples";
"learning-hmm" = dontDistribute super."learning-hmm";
"leetify" = dontDistribute super."leetify";
"legion" = dontDistribute super."legion";
"leksah" = dontDistribute super."leksah";
"leksah-server" = dontDistribute super."leksah-server";
"lendingclub" = dontDistribute super."lendingclub";
@ -6097,6 +6109,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@ -7892,6 +7905,7 @@ self: super: {
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
"simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
"simple-tabular" = dontDistribute super."simple-tabular";
"simple-tar" = dontDistribute super."simple-tar";
"simple-templates" = dontDistribute super."simple-templates";
"simple-vec3" = dontDistribute super."simple-vec3";
"simpleargs" = dontDistribute super."simpleargs";
@ -8648,6 +8662,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timelens" = dontDistribute super."timelens";
"timeless" = dontDistribute super."timeless";
"timelike" = dontDistribute super."timelike";
"timelike-clock" = dontDistribute super."timelike-clock";
@ -9589,6 +9604,7 @@ self: super: {
"yuuko" = dontDistribute super."yuuko";
"yxdb-utils" = dontDistribute super."yxdb-utils";
"z3" = dontDistribute super."z3";
"z3-encoding" = dontDistribute super."z3-encoding";
"zalgo" = dontDistribute super."zalgo";
"zampolit" = dontDistribute super."zampolit";
"zasni-gerna" = dontDistribute super."zasni-gerna";

View file

@ -2679,6 +2679,7 @@ self: super: {
"dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
"dclabel" = dontDistribute super."dclabel";
"dclabel-eci11" = dontDistribute super."dclabel-eci11";
"ddate" = dontDistribute super."ddate";
"ddc-base" = dontDistribute super."ddc-base";
"ddc-build" = dontDistribute super."ddc-build";
"ddc-code" = dontDistribute super."ddc-code";
@ -2993,6 +2994,7 @@ self: super: {
"ebeats" = dontDistribute super."ebeats";
"ebnf-bff" = dontDistribute super."ebnf-bff";
"ec2-signature" = dontDistribute super."ec2-signature";
"ec2-unikernel" = dontDistribute super."ec2-unikernel";
"eccrypto" = dontDistribute super."eccrypto";
"ecdsa" = dontDistribute super."ecdsa";
"ecma262" = dontDistribute super."ecma262";
@ -3341,6 +3343,7 @@ self: super: {
"fixpoint" = dontDistribute super."fixpoint";
"fixtime" = dontDistribute super."fixtime";
"fizz-buzz" = dontDistribute super."fizz-buzz";
"fizzbuzz" = dontDistribute super."fizzbuzz";
"flaccuraterip" = dontDistribute super."flaccuraterip";
"flamethrower" = dontDistribute super."flamethrower";
"flamingra" = dontDistribute super."flamingra";
@ -3394,6 +3397,7 @@ self: super: {
"foma" = dontDistribute super."foma";
"font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
"foo" = dontDistribute super."foo";
"foobar" = dontDistribute super."foobar";
"for-free" = dontDistribute super."for-free";
"forbidden-fruit" = dontDistribute super."forbidden-fruit";
"force-layout" = doDistribute super."force-layout_0_3_0_10";
@ -4250,6 +4254,12 @@ self: super: {
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
"haskell-tools-ast" = dontDistribute super."haskell-tools-ast";
"haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc";
"haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen";
"haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf";
"haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint";
"haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor";
"haskell-tor" = dontDistribute super."haskell-tor";
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
"haskell-typescript" = dontDistribute super."haskell-typescript";
@ -4652,6 +4662,7 @@ self: super: {
"hopfield" = dontDistribute super."hopfield";
"hopfield-networks" = dontDistribute super."hopfield-networks";
"hopfli" = dontDistribute super."hopfli";
"hoppy-docs" = dontDistribute super."hoppy-docs";
"hoppy-generator" = dontDistribute super."hoppy-generator";
"hoppy-runtime" = dontDistribute super."hoppy-runtime";
"hoppy-std" = dontDistribute super."hoppy-std";
@ -5586,6 +5597,7 @@ self: super: {
"learn-physics-examples" = dontDistribute super."learn-physics-examples";
"learning-hmm" = dontDistribute super."learning-hmm";
"leetify" = dontDistribute super."leetify";
"legion" = dontDistribute super."legion";
"leksah" = dontDistribute super."leksah";
"leksah-server" = dontDistribute super."leksah-server";
"lendingclub" = dontDistribute super."lendingclub";
@ -6094,6 +6106,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@ -7888,6 +7901,7 @@ self: super: {
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
"simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
"simple-tabular" = dontDistribute super."simple-tabular";
"simple-tar" = dontDistribute super."simple-tar";
"simple-templates" = dontDistribute super."simple-templates";
"simple-vec3" = dontDistribute super."simple-vec3";
"simpleargs" = dontDistribute super."simpleargs";
@ -8644,6 +8658,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timelens" = dontDistribute super."timelens";
"timeless" = dontDistribute super."timeless";
"timelike" = dontDistribute super."timelike";
"timelike-clock" = dontDistribute super."timelike-clock";
@ -9585,6 +9600,7 @@ self: super: {
"yuuko" = dontDistribute super."yuuko";
"yxdb-utils" = dontDistribute super."yxdb-utils";
"z3" = dontDistribute super."z3";
"z3-encoding" = dontDistribute super."z3-encoding";
"zalgo" = dontDistribute super."zalgo";
"zampolit" = dontDistribute super."zampolit";
"zasni-gerna" = dontDistribute super."zasni-gerna";

View file

@ -2676,6 +2676,7 @@ self: super: {
"dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
"dclabel" = dontDistribute super."dclabel";
"dclabel-eci11" = dontDistribute super."dclabel-eci11";
"ddate" = dontDistribute super."ddate";
"ddc-base" = dontDistribute super."ddc-base";
"ddc-build" = dontDistribute super."ddc-build";
"ddc-code" = dontDistribute super."ddc-code";
@ -2990,6 +2991,7 @@ self: super: {
"ebeats" = dontDistribute super."ebeats";
"ebnf-bff" = dontDistribute super."ebnf-bff";
"ec2-signature" = dontDistribute super."ec2-signature";
"ec2-unikernel" = dontDistribute super."ec2-unikernel";
"eccrypto" = dontDistribute super."eccrypto";
"ecdsa" = dontDistribute super."ecdsa";
"ecma262" = dontDistribute super."ecma262";
@ -3338,6 +3340,7 @@ self: super: {
"fixpoint" = dontDistribute super."fixpoint";
"fixtime" = dontDistribute super."fixtime";
"fizz-buzz" = dontDistribute super."fizz-buzz";
"fizzbuzz" = dontDistribute super."fizzbuzz";
"flaccuraterip" = dontDistribute super."flaccuraterip";
"flamethrower" = dontDistribute super."flamethrower";
"flamingra" = dontDistribute super."flamingra";
@ -3391,6 +3394,7 @@ self: super: {
"foma" = dontDistribute super."foma";
"font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
"foo" = dontDistribute super."foo";
"foobar" = dontDistribute super."foobar";
"for-free" = dontDistribute super."for-free";
"forbidden-fruit" = dontDistribute super."forbidden-fruit";
"force-layout" = doDistribute super."force-layout_0_3_0_10";
@ -4247,6 +4251,12 @@ self: super: {
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
"haskell-tools-ast" = dontDistribute super."haskell-tools-ast";
"haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc";
"haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen";
"haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf";
"haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint";
"haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor";
"haskell-tor" = dontDistribute super."haskell-tor";
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
"haskell-typescript" = dontDistribute super."haskell-typescript";
@ -4649,6 +4659,7 @@ self: super: {
"hopfield" = dontDistribute super."hopfield";
"hopfield-networks" = dontDistribute super."hopfield-networks";
"hopfli" = dontDistribute super."hopfli";
"hoppy-docs" = dontDistribute super."hoppy-docs";
"hoppy-generator" = dontDistribute super."hoppy-generator";
"hoppy-runtime" = dontDistribute super."hoppy-runtime";
"hoppy-std" = dontDistribute super."hoppy-std";
@ -5583,6 +5594,7 @@ self: super: {
"learn-physics-examples" = dontDistribute super."learn-physics-examples";
"learning-hmm" = dontDistribute super."learning-hmm";
"leetify" = dontDistribute super."leetify";
"legion" = dontDistribute super."legion";
"leksah" = dontDistribute super."leksah";
"leksah-server" = dontDistribute super."leksah-server";
"lendingclub" = dontDistribute super."lendingclub";
@ -6091,6 +6103,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@ -7882,6 +7895,7 @@ self: super: {
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
"simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
"simple-tabular" = dontDistribute super."simple-tabular";
"simple-tar" = dontDistribute super."simple-tar";
"simple-templates" = dontDistribute super."simple-templates";
"simple-vec3" = dontDistribute super."simple-vec3";
"simpleargs" = dontDistribute super."simpleargs";
@ -8637,6 +8651,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timelens" = dontDistribute super."timelens";
"timeless" = dontDistribute super."timeless";
"timelike" = dontDistribute super."timelike";
"timelike-clock" = dontDistribute super."timelike-clock";
@ -9577,6 +9592,7 @@ self: super: {
"yuuko" = dontDistribute super."yuuko";
"yxdb-utils" = dontDistribute super."yxdb-utils";
"z3" = dontDistribute super."z3";
"z3-encoding" = dontDistribute super."z3-encoding";
"zalgo" = dontDistribute super."zalgo";
"zampolit" = dontDistribute super."zampolit";
"zasni-gerna" = dontDistribute super."zasni-gerna";

View file

@ -2684,6 +2684,7 @@ self: super: {
"dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
"dclabel" = dontDistribute super."dclabel";
"dclabel-eci11" = dontDistribute super."dclabel-eci11";
"ddate" = dontDistribute super."ddate";
"ddc-base" = dontDistribute super."ddc-base";
"ddc-build" = dontDistribute super."ddc-build";
"ddc-code" = dontDistribute super."ddc-code";
@ -2998,6 +2999,7 @@ self: super: {
"ebeats" = dontDistribute super."ebeats";
"ebnf-bff" = dontDistribute super."ebnf-bff";
"ec2-signature" = dontDistribute super."ec2-signature";
"ec2-unikernel" = dontDistribute super."ec2-unikernel";
"eccrypto" = dontDistribute super."eccrypto";
"ecdsa" = dontDistribute super."ecdsa";
"ecma262" = dontDistribute super."ecma262";
@ -3350,6 +3352,7 @@ self: super: {
"fixpoint" = dontDistribute super."fixpoint";
"fixtime" = dontDistribute super."fixtime";
"fizz-buzz" = dontDistribute super."fizz-buzz";
"fizzbuzz" = dontDistribute super."fizzbuzz";
"flaccuraterip" = dontDistribute super."flaccuraterip";
"flamethrower" = dontDistribute super."flamethrower";
"flamingra" = dontDistribute super."flamingra";
@ -3403,6 +3406,7 @@ self: super: {
"foma" = dontDistribute super."foma";
"font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
"foo" = dontDistribute super."foo";
"foobar" = dontDistribute super."foobar";
"for-free" = dontDistribute super."for-free";
"forbidden-fruit" = dontDistribute super."forbidden-fruit";
"force-layout" = doDistribute super."force-layout_0_3_0_9";
@ -4263,6 +4267,12 @@ self: super: {
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
"haskell-tools-ast" = dontDistribute super."haskell-tools-ast";
"haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc";
"haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen";
"haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf";
"haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint";
"haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor";
"haskell-tor" = dontDistribute super."haskell-tor";
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
"haskell-typescript" = dontDistribute super."haskell-typescript";
@ -4665,6 +4675,7 @@ self: super: {
"hopfield" = dontDistribute super."hopfield";
"hopfield-networks" = dontDistribute super."hopfield-networks";
"hopfli" = dontDistribute super."hopfli";
"hoppy-docs" = dontDistribute super."hoppy-docs";
"hoppy-generator" = dontDistribute super."hoppy-generator";
"hoppy-runtime" = dontDistribute super."hoppy-runtime";
"hoppy-std" = dontDistribute super."hoppy-std";
@ -5606,6 +5617,7 @@ self: super: {
"learn-physics-examples" = dontDistribute super."learn-physics-examples";
"learning-hmm" = dontDistribute super."learning-hmm";
"leetify" = dontDistribute super."leetify";
"legion" = dontDistribute super."legion";
"leksah" = dontDistribute super."leksah";
"leksah-server" = dontDistribute super."leksah-server";
"lendingclub" = dontDistribute super."lendingclub";
@ -6115,6 +6127,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@ -7912,6 +7925,7 @@ self: super: {
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
"simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
"simple-tabular" = dontDistribute super."simple-tabular";
"simple-tar" = dontDistribute super."simple-tar";
"simple-templates" = dontDistribute super."simple-templates";
"simple-vec3" = dontDistribute super."simple-vec3";
"simpleargs" = dontDistribute super."simpleargs";
@ -8671,6 +8685,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timelens" = dontDistribute super."timelens";
"timeless" = dontDistribute super."timeless";
"timelike" = dontDistribute super."timelike";
"timelike-clock" = dontDistribute super."timelike-clock";
@ -9617,6 +9632,7 @@ self: super: {
"yuuko" = dontDistribute super."yuuko";
"yxdb-utils" = dontDistribute super."yxdb-utils";
"z3" = dontDistribute super."z3";
"z3-encoding" = dontDistribute super."z3-encoding";
"zalgo" = dontDistribute super."zalgo";
"zampolit" = dontDistribute super."zampolit";
"zasni-gerna" = dontDistribute super."zasni-gerna";

View file

@ -2683,6 +2683,7 @@ self: super: {
"dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
"dclabel" = dontDistribute super."dclabel";
"dclabel-eci11" = dontDistribute super."dclabel-eci11";
"ddate" = dontDistribute super."ddate";
"ddc-base" = dontDistribute super."ddc-base";
"ddc-build" = dontDistribute super."ddc-build";
"ddc-code" = dontDistribute super."ddc-code";
@ -2997,6 +2998,7 @@ self: super: {
"ebeats" = dontDistribute super."ebeats";
"ebnf-bff" = dontDistribute super."ebnf-bff";
"ec2-signature" = dontDistribute super."ec2-signature";
"ec2-unikernel" = dontDistribute super."ec2-unikernel";
"eccrypto" = dontDistribute super."eccrypto";
"ecdsa" = dontDistribute super."ecdsa";
"ecma262" = dontDistribute super."ecma262";
@ -3348,6 +3350,7 @@ self: super: {
"fixpoint" = dontDistribute super."fixpoint";
"fixtime" = dontDistribute super."fixtime";
"fizz-buzz" = dontDistribute super."fizz-buzz";
"fizzbuzz" = dontDistribute super."fizzbuzz";
"flaccuraterip" = dontDistribute super."flaccuraterip";
"flamethrower" = dontDistribute super."flamethrower";
"flamingra" = dontDistribute super."flamingra";
@ -3401,6 +3404,7 @@ self: super: {
"foma" = dontDistribute super."foma";
"font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
"foo" = dontDistribute super."foo";
"foobar" = dontDistribute super."foobar";
"for-free" = dontDistribute super."for-free";
"forbidden-fruit" = dontDistribute super."forbidden-fruit";
"force-layout" = doDistribute super."force-layout_0_3_0_9";
@ -4260,6 +4264,12 @@ self: super: {
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
"haskell-tools-ast" = dontDistribute super."haskell-tools-ast";
"haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc";
"haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen";
"haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf";
"haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint";
"haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor";
"haskell-tor" = dontDistribute super."haskell-tor";
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
"haskell-typescript" = dontDistribute super."haskell-typescript";
@ -4662,6 +4672,7 @@ self: super: {
"hopfield" = dontDistribute super."hopfield";
"hopfield-networks" = dontDistribute super."hopfield-networks";
"hopfli" = dontDistribute super."hopfli";
"hoppy-docs" = dontDistribute super."hoppy-docs";
"hoppy-generator" = dontDistribute super."hoppy-generator";
"hoppy-runtime" = dontDistribute super."hoppy-runtime";
"hoppy-std" = dontDistribute super."hoppy-std";
@ -5603,6 +5614,7 @@ self: super: {
"learn-physics-examples" = dontDistribute super."learn-physics-examples";
"learning-hmm" = dontDistribute super."learning-hmm";
"leetify" = dontDistribute super."leetify";
"legion" = dontDistribute super."legion";
"leksah" = dontDistribute super."leksah";
"leksah-server" = dontDistribute super."leksah-server";
"lendingclub" = dontDistribute super."lendingclub";
@ -6112,6 +6124,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@ -7908,6 +7921,7 @@ self: super: {
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
"simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
"simple-tabular" = dontDistribute super."simple-tabular";
"simple-tar" = dontDistribute super."simple-tar";
"simple-templates" = dontDistribute super."simple-templates";
"simple-vec3" = dontDistribute super."simple-vec3";
"simpleargs" = dontDistribute super."simpleargs";
@ -8666,6 +8680,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timelens" = dontDistribute super."timelens";
"timeless" = dontDistribute super."timeless";
"timelike" = dontDistribute super."timelike";
"timelike-clock" = dontDistribute super."timelike-clock";
@ -9612,6 +9627,7 @@ self: super: {
"yuuko" = dontDistribute super."yuuko";
"yxdb-utils" = dontDistribute super."yxdb-utils";
"z3" = dontDistribute super."z3";
"z3-encoding" = dontDistribute super."z3-encoding";
"zalgo" = dontDistribute super."zalgo";
"zampolit" = dontDistribute super."zampolit";
"zasni-gerna" = dontDistribute super."zasni-gerna";

View file

@ -2682,6 +2682,7 @@ self: super: {
"dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
"dclabel" = dontDistribute super."dclabel";
"dclabel-eci11" = dontDistribute super."dclabel-eci11";
"ddate" = dontDistribute super."ddate";
"ddc-base" = dontDistribute super."ddc-base";
"ddc-build" = dontDistribute super."ddc-build";
"ddc-code" = dontDistribute super."ddc-code";
@ -2996,6 +2997,7 @@ self: super: {
"ebeats" = dontDistribute super."ebeats";
"ebnf-bff" = dontDistribute super."ebnf-bff";
"ec2-signature" = dontDistribute super."ec2-signature";
"ec2-unikernel" = dontDistribute super."ec2-unikernel";
"eccrypto" = dontDistribute super."eccrypto";
"ecdsa" = dontDistribute super."ecdsa";
"ecma262" = dontDistribute super."ecma262";
@ -3347,6 +3349,7 @@ self: super: {
"fixpoint" = dontDistribute super."fixpoint";
"fixtime" = dontDistribute super."fixtime";
"fizz-buzz" = dontDistribute super."fizz-buzz";
"fizzbuzz" = dontDistribute super."fizzbuzz";
"flaccuraterip" = dontDistribute super."flaccuraterip";
"flamethrower" = dontDistribute super."flamethrower";
"flamingra" = dontDistribute super."flamingra";
@ -3400,6 +3403,7 @@ self: super: {
"foma" = dontDistribute super."foma";
"font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
"foo" = dontDistribute super."foo";
"foobar" = dontDistribute super."foobar";
"for-free" = dontDistribute super."for-free";
"forbidden-fruit" = dontDistribute super."forbidden-fruit";
"force-layout" = doDistribute super."force-layout_0_3_0_9";
@ -4259,6 +4263,12 @@ self: super: {
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
"haskell-tools-ast" = dontDistribute super."haskell-tools-ast";
"haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc";
"haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen";
"haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf";
"haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint";
"haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor";
"haskell-tor" = dontDistribute super."haskell-tor";
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
"haskell-typescript" = dontDistribute super."haskell-typescript";
@ -4661,6 +4671,7 @@ self: super: {
"hopfield" = dontDistribute super."hopfield";
"hopfield-networks" = dontDistribute super."hopfield-networks";
"hopfli" = dontDistribute super."hopfli";
"hoppy-docs" = dontDistribute super."hoppy-docs";
"hoppy-generator" = dontDistribute super."hoppy-generator";
"hoppy-runtime" = dontDistribute super."hoppy-runtime";
"hoppy-std" = dontDistribute super."hoppy-std";
@ -5602,6 +5613,7 @@ self: super: {
"learn-physics-examples" = dontDistribute super."learn-physics-examples";
"learning-hmm" = dontDistribute super."learning-hmm";
"leetify" = dontDistribute super."leetify";
"legion" = dontDistribute super."legion";
"leksah" = dontDistribute super."leksah";
"leksah-server" = dontDistribute super."leksah-server";
"lendingclub" = dontDistribute super."lendingclub";
@ -6111,6 +6123,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@ -7907,6 +7920,7 @@ self: super: {
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
"simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
"simple-tabular" = dontDistribute super."simple-tabular";
"simple-tar" = dontDistribute super."simple-tar";
"simple-templates" = dontDistribute super."simple-templates";
"simple-vec3" = dontDistribute super."simple-vec3";
"simpleargs" = dontDistribute super."simpleargs";
@ -8665,6 +8679,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timelens" = dontDistribute super."timelens";
"timeless" = dontDistribute super."timeless";
"timelike" = dontDistribute super."timelike";
"timelike-clock" = dontDistribute super."timelike-clock";
@ -9609,6 +9624,7 @@ self: super: {
"yuuko" = dontDistribute super."yuuko";
"yxdb-utils" = dontDistribute super."yxdb-utils";
"z3" = dontDistribute super."z3";
"z3-encoding" = dontDistribute super."z3-encoding";
"zalgo" = dontDistribute super."zalgo";
"zampolit" = dontDistribute super."zampolit";
"zasni-gerna" = dontDistribute super."zasni-gerna";

View file

@ -2682,6 +2682,7 @@ self: super: {
"dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
"dclabel" = dontDistribute super."dclabel";
"dclabel-eci11" = dontDistribute super."dclabel-eci11";
"ddate" = dontDistribute super."ddate";
"ddc-base" = dontDistribute super."ddc-base";
"ddc-build" = dontDistribute super."ddc-build";
"ddc-code" = dontDistribute super."ddc-code";
@ -2996,6 +2997,7 @@ self: super: {
"ebeats" = dontDistribute super."ebeats";
"ebnf-bff" = dontDistribute super."ebnf-bff";
"ec2-signature" = dontDistribute super."ec2-signature";
"ec2-unikernel" = dontDistribute super."ec2-unikernel";
"eccrypto" = dontDistribute super."eccrypto";
"ecdsa" = dontDistribute super."ecdsa";
"ecma262" = dontDistribute super."ecma262";
@ -3347,6 +3349,7 @@ self: super: {
"fixpoint" = dontDistribute super."fixpoint";
"fixtime" = dontDistribute super."fixtime";
"fizz-buzz" = dontDistribute super."fizz-buzz";
"fizzbuzz" = dontDistribute super."fizzbuzz";
"flaccuraterip" = dontDistribute super."flaccuraterip";
"flamethrower" = dontDistribute super."flamethrower";
"flamingra" = dontDistribute super."flamingra";
@ -3400,6 +3403,7 @@ self: super: {
"foma" = dontDistribute super."foma";
"font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
"foo" = dontDistribute super."foo";
"foobar" = dontDistribute super."foobar";
"for-free" = dontDistribute super."for-free";
"forbidden-fruit" = dontDistribute super."forbidden-fruit";
"force-layout" = doDistribute super."force-layout_0_3_0_9";
@ -4259,6 +4263,12 @@ self: super: {
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
"haskell-tools-ast" = dontDistribute super."haskell-tools-ast";
"haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc";
"haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen";
"haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf";
"haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint";
"haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor";
"haskell-tor" = dontDistribute super."haskell-tor";
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
"haskell-typescript" = dontDistribute super."haskell-typescript";
@ -4661,6 +4671,7 @@ self: super: {
"hopfield" = dontDistribute super."hopfield";
"hopfield-networks" = dontDistribute super."hopfield-networks";
"hopfli" = dontDistribute super."hopfli";
"hoppy-docs" = dontDistribute super."hoppy-docs";
"hoppy-generator" = dontDistribute super."hoppy-generator";
"hoppy-runtime" = dontDistribute super."hoppy-runtime";
"hoppy-std" = dontDistribute super."hoppy-std";
@ -5597,6 +5608,7 @@ self: super: {
"learn-physics-examples" = dontDistribute super."learn-physics-examples";
"learning-hmm" = dontDistribute super."learning-hmm";
"leetify" = dontDistribute super."leetify";
"legion" = dontDistribute super."legion";
"leksah" = dontDistribute super."leksah";
"leksah-server" = dontDistribute super."leksah-server";
"lendingclub" = dontDistribute super."lendingclub";
@ -6106,6 +6118,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_11_1";
"monad-logger-json" = dontDistribute super."monad-logger-json";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@ -7902,6 +7915,7 @@ self: super: {
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
"simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
"simple-tabular" = dontDistribute super."simple-tabular";
"simple-tar" = dontDistribute super."simple-tar";
"simple-templates" = dontDistribute super."simple-templates";
"simple-vec3" = dontDistribute super."simple-vec3";
"simpleargs" = dontDistribute super."simpleargs";
@ -8660,6 +8674,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timelens" = dontDistribute super."timelens";
"timeless" = dontDistribute super."timeless";
"timelike" = dontDistribute super."timelike";
"timelike-clock" = dontDistribute super."timelike-clock";
@ -9604,6 +9619,7 @@ self: super: {
"yuuko" = dontDistribute super."yuuko";
"yxdb-utils" = dontDistribute super."yxdb-utils";
"z3" = dontDistribute super."z3";
"z3-encoding" = dontDistribute super."z3-encoding";
"zalgo" = dontDistribute super."zalgo";
"zampolit" = dontDistribute super."zampolit";
"zasni-gerna" = dontDistribute super."zasni-gerna";

View file

@ -2682,6 +2682,7 @@ self: super: {
"dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
"dclabel" = dontDistribute super."dclabel";
"dclabel-eci11" = dontDistribute super."dclabel-eci11";
"ddate" = dontDistribute super."ddate";
"ddc-base" = dontDistribute super."ddc-base";
"ddc-build" = dontDistribute super."ddc-build";
"ddc-code" = dontDistribute super."ddc-code";
@ -2996,6 +2997,7 @@ self: super: {
"ebeats" = dontDistribute super."ebeats";
"ebnf-bff" = dontDistribute super."ebnf-bff";
"ec2-signature" = dontDistribute super."ec2-signature";
"ec2-unikernel" = dontDistribute super."ec2-unikernel";
"eccrypto" = dontDistribute super."eccrypto";
"ecdsa" = dontDistribute super."ecdsa";
"ecma262" = dontDistribute super."ecma262";
@ -3345,6 +3347,7 @@ self: super: {
"fixpoint" = dontDistribute super."fixpoint";
"fixtime" = dontDistribute super."fixtime";
"fizz-buzz" = dontDistribute super."fizz-buzz";
"fizzbuzz" = dontDistribute super."fizzbuzz";
"flaccuraterip" = dontDistribute super."flaccuraterip";
"flamethrower" = dontDistribute super."flamethrower";
"flamingra" = dontDistribute super."flamingra";
@ -3398,6 +3401,7 @@ self: super: {
"foma" = dontDistribute super."foma";
"font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
"foo" = dontDistribute super."foo";
"foobar" = dontDistribute super."foobar";
"for-free" = dontDistribute super."for-free";
"forbidden-fruit" = dontDistribute super."forbidden-fruit";
"force-layout" = doDistribute super."force-layout_0_3_0_9";
@ -4256,6 +4260,12 @@ self: super: {
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
"haskell-tools-ast" = dontDistribute super."haskell-tools-ast";
"haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc";
"haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen";
"haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf";
"haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint";
"haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor";
"haskell-tor" = dontDistribute super."haskell-tor";
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
"haskell-typescript" = dontDistribute super."haskell-typescript";
@ -4658,6 +4668,7 @@ self: super: {
"hopfield" = dontDistribute super."hopfield";
"hopfield-networks" = dontDistribute super."hopfield-networks";
"hopfli" = dontDistribute super."hopfli";
"hoppy-docs" = dontDistribute super."hoppy-docs";
"hoppy-generator" = dontDistribute super."hoppy-generator";
"hoppy-runtime" = dontDistribute super."hoppy-runtime";
"hoppy-std" = dontDistribute super."hoppy-std";
@ -5594,6 +5605,7 @@ self: super: {
"learn-physics-examples" = dontDistribute super."learn-physics-examples";
"learning-hmm" = dontDistribute super."learning-hmm";
"leetify" = dontDistribute super."leetify";
"legion" = dontDistribute super."legion";
"leksah" = dontDistribute super."leksah";
"leksah-server" = dontDistribute super."leksah-server";
"lendingclub" = dontDistribute super."lendingclub";
@ -6102,6 +6114,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_12";
"monad-logger-json" = dontDistribute super."monad-logger-json";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@ -7898,6 +7911,7 @@ self: super: {
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
"simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
"simple-tabular" = dontDistribute super."simple-tabular";
"simple-tar" = dontDistribute super."simple-tar";
"simple-templates" = dontDistribute super."simple-templates";
"simple-vec3" = dontDistribute super."simple-vec3";
"simpleargs" = dontDistribute super."simpleargs";
@ -8656,6 +8670,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timelens" = dontDistribute super."timelens";
"timeless" = dontDistribute super."timeless";
"timelike" = dontDistribute super."timelike";
"timelike-clock" = dontDistribute super."timelike-clock";
@ -9599,6 +9614,7 @@ self: super: {
"yuuko" = dontDistribute super."yuuko";
"yxdb-utils" = dontDistribute super."yxdb-utils";
"z3" = dontDistribute super."z3";
"z3-encoding" = dontDistribute super."z3-encoding";
"zalgo" = dontDistribute super."zalgo";
"zampolit" = dontDistribute super."zampolit";
"zasni-gerna" = dontDistribute super."zasni-gerna";

View file

@ -2682,6 +2682,7 @@ self: super: {
"dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
"dclabel" = dontDistribute super."dclabel";
"dclabel-eci11" = dontDistribute super."dclabel-eci11";
"ddate" = dontDistribute super."ddate";
"ddc-base" = dontDistribute super."ddc-base";
"ddc-build" = dontDistribute super."ddc-build";
"ddc-code" = dontDistribute super."ddc-code";
@ -2996,6 +2997,7 @@ self: super: {
"ebeats" = dontDistribute super."ebeats";
"ebnf-bff" = dontDistribute super."ebnf-bff";
"ec2-signature" = dontDistribute super."ec2-signature";
"ec2-unikernel" = dontDistribute super."ec2-unikernel";
"eccrypto" = dontDistribute super."eccrypto";
"ecdsa" = dontDistribute super."ecdsa";
"ecma262" = dontDistribute super."ecma262";
@ -3345,6 +3347,7 @@ self: super: {
"fixpoint" = dontDistribute super."fixpoint";
"fixtime" = dontDistribute super."fixtime";
"fizz-buzz" = dontDistribute super."fizz-buzz";
"fizzbuzz" = dontDistribute super."fizzbuzz";
"flaccuraterip" = dontDistribute super."flaccuraterip";
"flamethrower" = dontDistribute super."flamethrower";
"flamingra" = dontDistribute super."flamingra";
@ -3398,6 +3401,7 @@ self: super: {
"foma" = dontDistribute super."foma";
"font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
"foo" = dontDistribute super."foo";
"foobar" = dontDistribute super."foobar";
"for-free" = dontDistribute super."for-free";
"forbidden-fruit" = dontDistribute super."forbidden-fruit";
"force-layout" = doDistribute super."force-layout_0_3_0_9";
@ -4255,6 +4259,12 @@ self: super: {
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
"haskell-tools-ast" = dontDistribute super."haskell-tools-ast";
"haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc";
"haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen";
"haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf";
"haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint";
"haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor";
"haskell-tor" = dontDistribute super."haskell-tor";
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
"haskell-typescript" = dontDistribute super."haskell-typescript";
@ -4657,6 +4667,7 @@ self: super: {
"hopfield" = dontDistribute super."hopfield";
"hopfield-networks" = dontDistribute super."hopfield-networks";
"hopfli" = dontDistribute super."hopfli";
"hoppy-docs" = dontDistribute super."hoppy-docs";
"hoppy-generator" = dontDistribute super."hoppy-generator";
"hoppy-runtime" = dontDistribute super."hoppy-runtime";
"hoppy-std" = dontDistribute super."hoppy-std";
@ -5593,6 +5604,7 @@ self: super: {
"learn-physics-examples" = dontDistribute super."learn-physics-examples";
"learning-hmm" = dontDistribute super."learning-hmm";
"leetify" = dontDistribute super."leetify";
"legion" = dontDistribute super."legion";
"leksah" = dontDistribute super."leksah";
"leksah-server" = dontDistribute super."leksah-server";
"lendingclub" = dontDistribute super."lendingclub";
@ -6101,6 +6113,7 @@ self: super: {
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_12";
"monad-logger-json" = dontDistribute super."monad-logger-json";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@ -7897,6 +7910,7 @@ self: super: {
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
"simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
"simple-tabular" = dontDistribute super."simple-tabular";
"simple-tar" = dontDistribute super."simple-tar";
"simple-templates" = dontDistribute super."simple-templates";
"simple-vec3" = dontDistribute super."simple-vec3";
"simpleargs" = dontDistribute super."simpleargs";
@ -8655,6 +8669,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timelens" = dontDistribute super."timelens";
"timeless" = dontDistribute super."timeless";
"timelike" = dontDistribute super."timelike";
"timelike-clock" = dontDistribute super."timelike-clock";
@ -9598,6 +9613,7 @@ self: super: {
"yuuko" = dontDistribute super."yuuko";
"yxdb-utils" = dontDistribute super."yxdb-utils";
"z3" = dontDistribute super."z3";
"z3-encoding" = dontDistribute super."z3-encoding";
"zalgo" = dontDistribute super."zalgo";
"zampolit" = dontDistribute super."zampolit";
"zasni-gerna" = dontDistribute super."zasni-gerna";

View file

@ -2666,6 +2666,7 @@ self: super: {
"dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
"dclabel" = dontDistribute super."dclabel";
"dclabel-eci11" = dontDistribute super."dclabel-eci11";
"ddate" = dontDistribute super."ddate";
"ddc-base" = dontDistribute super."ddc-base";
"ddc-build" = dontDistribute super."ddc-build";
"ddc-code" = dontDistribute super."ddc-code";
@ -2980,6 +2981,7 @@ self: super: {
"ebeats" = dontDistribute super."ebeats";
"ebnf-bff" = dontDistribute super."ebnf-bff";
"ec2-signature" = dontDistribute super."ec2-signature";
"ec2-unikernel" = dontDistribute super."ec2-unikernel";
"eccrypto" = dontDistribute super."eccrypto";
"ecdsa" = dontDistribute super."ecdsa";
"ecma262" = dontDistribute super."ecma262";
@ -3330,6 +3332,7 @@ self: super: {
"fixpoint" = dontDistribute super."fixpoint";
"fixtime" = dontDistribute super."fixtime";
"fizz-buzz" = dontDistribute super."fizz-buzz";
"fizzbuzz" = dontDistribute super."fizzbuzz";
"flaccuraterip" = dontDistribute super."flaccuraterip";
"flamethrower" = dontDistribute super."flamethrower";
"flamingra" = dontDistribute super."flamingra";
@ -3381,6 +3384,7 @@ self: super: {
"foma" = dontDistribute super."foma";
"font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
"foo" = dontDistribute super."foo";
"foobar" = dontDistribute super."foobar";
"for-free" = dontDistribute super."for-free";
"forbidden-fruit" = dontDistribute super."forbidden-fruit";
"force-layout" = doDistribute super."force-layout_0_3_0_10";
@ -4235,6 +4239,12 @@ self: super: {
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
"haskell-tools-ast" = dontDistribute super."haskell-tools-ast";
"haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc";
"haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen";
"haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf";
"haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint";
"haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor";
"haskell-tor" = dontDistribute super."haskell-tor";
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
"haskell-typescript" = dontDistribute super."haskell-typescript";
@ -4635,6 +4645,7 @@ self: super: {
"hopfield" = dontDistribute super."hopfield";
"hopfield-networks" = dontDistribute super."hopfield-networks";
"hopfli" = dontDistribute super."hopfli";
"hoppy-docs" = dontDistribute super."hoppy-docs";
"hoppy-generator" = dontDistribute super."hoppy-generator";
"hoppy-runtime" = dontDistribute super."hoppy-runtime";
"hoppy-std" = dontDistribute super."hoppy-std";
@ -5559,6 +5570,7 @@ self: super: {
"learn-physics-examples" = dontDistribute super."learn-physics-examples";
"learning-hmm" = dontDistribute super."learning-hmm";
"leetify" = dontDistribute super."leetify";
"legion" = dontDistribute super."legion";
"leksah" = dontDistribute super."leksah";
"leksah-server" = dontDistribute super."leksah-server";
"lendingclub" = dontDistribute super."lendingclub";
@ -6063,6 +6075,7 @@ self: super: {
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@ -7845,6 +7858,7 @@ self: super: {
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
"simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
"simple-tabular" = dontDistribute super."simple-tabular";
"simple-tar" = dontDistribute super."simple-tar";
"simple-templates" = dontDistribute super."simple-templates";
"simple-vec3" = dontDistribute super."simple-vec3";
"simpleargs" = dontDistribute super."simpleargs";
@ -8595,6 +8609,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timelens" = dontDistribute super."timelens";
"timeless" = dontDistribute super."timeless";
"timelike" = dontDistribute super."timelike";
"timelike-clock" = dontDistribute super."timelike-clock";
@ -9528,6 +9543,7 @@ self: super: {
"yuuko" = dontDistribute super."yuuko";
"yxdb-utils" = dontDistribute super."yxdb-utils";
"z3" = dontDistribute super."z3";
"z3-encoding" = dontDistribute super."z3-encoding";
"zalgo" = dontDistribute super."zalgo";
"zampolit" = dontDistribute super."zampolit";
"zasni-gerna" = dontDistribute super."zasni-gerna";

View file

@ -2666,6 +2666,7 @@ self: super: {
"dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
"dclabel" = dontDistribute super."dclabel";
"dclabel-eci11" = dontDistribute super."dclabel-eci11";
"ddate" = dontDistribute super."ddate";
"ddc-base" = dontDistribute super."ddc-base";
"ddc-build" = dontDistribute super."ddc-build";
"ddc-code" = dontDistribute super."ddc-code";
@ -2980,6 +2981,7 @@ self: super: {
"ebeats" = dontDistribute super."ebeats";
"ebnf-bff" = dontDistribute super."ebnf-bff";
"ec2-signature" = dontDistribute super."ec2-signature";
"ec2-unikernel" = dontDistribute super."ec2-unikernel";
"eccrypto" = dontDistribute super."eccrypto";
"ecdsa" = dontDistribute super."ecdsa";
"ecma262" = dontDistribute super."ecma262";
@ -3330,6 +3332,7 @@ self: super: {
"fixpoint" = dontDistribute super."fixpoint";
"fixtime" = dontDistribute super."fixtime";
"fizz-buzz" = dontDistribute super."fizz-buzz";
"fizzbuzz" = dontDistribute super."fizzbuzz";
"flaccuraterip" = dontDistribute super."flaccuraterip";
"flamethrower" = dontDistribute super."flamethrower";
"flamingra" = dontDistribute super."flamingra";
@ -3381,6 +3384,7 @@ self: super: {
"foma" = dontDistribute super."foma";
"font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
"foo" = dontDistribute super."foo";
"foobar" = dontDistribute super."foobar";
"for-free" = dontDistribute super."for-free";
"forbidden-fruit" = dontDistribute super."forbidden-fruit";
"force-layout" = doDistribute super."force-layout_0_3_0_11";
@ -4235,6 +4239,12 @@ self: super: {
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
"haskell-tools-ast" = dontDistribute super."haskell-tools-ast";
"haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc";
"haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen";
"haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf";
"haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint";
"haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor";
"haskell-tor" = dontDistribute super."haskell-tor";
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
"haskell-typescript" = dontDistribute super."haskell-typescript";
@ -4635,6 +4645,7 @@ self: super: {
"hopfield" = dontDistribute super."hopfield";
"hopfield-networks" = dontDistribute super."hopfield-networks";
"hopfli" = dontDistribute super."hopfli";
"hoppy-docs" = dontDistribute super."hoppy-docs";
"hoppy-generator" = dontDistribute super."hoppy-generator";
"hoppy-runtime" = dontDistribute super."hoppy-runtime";
"hoppy-std" = dontDistribute super."hoppy-std";
@ -5559,6 +5570,7 @@ self: super: {
"learn-physics-examples" = dontDistribute super."learn-physics-examples";
"learning-hmm" = dontDistribute super."learning-hmm";
"leetify" = dontDistribute super."leetify";
"legion" = dontDistribute super."legion";
"leksah" = dontDistribute super."leksah";
"leksah-server" = dontDistribute super."leksah-server";
"lendingclub" = dontDistribute super."lendingclub";
@ -6063,6 +6075,7 @@ self: super: {
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@ -7845,6 +7858,7 @@ self: super: {
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
"simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
"simple-tabular" = dontDistribute super."simple-tabular";
"simple-tar" = dontDistribute super."simple-tar";
"simple-templates" = dontDistribute super."simple-templates";
"simple-vec3" = dontDistribute super."simple-vec3";
"simpleargs" = dontDistribute super."simpleargs";
@ -8595,6 +8609,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timelens" = dontDistribute super."timelens";
"timeless" = dontDistribute super."timeless";
"timelike" = dontDistribute super."timelike";
"timelike-clock" = dontDistribute super."timelike-clock";
@ -9528,6 +9543,7 @@ self: super: {
"yuuko" = dontDistribute super."yuuko";
"yxdb-utils" = dontDistribute super."yxdb-utils";
"z3" = dontDistribute super."z3";
"z3-encoding" = dontDistribute super."z3-encoding";
"zalgo" = dontDistribute super."zalgo";
"zampolit" = dontDistribute super."zampolit";
"zasni-gerna" = dontDistribute super."zasni-gerna";

View file

@ -2657,6 +2657,7 @@ self: super: {
"dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
"dclabel" = dontDistribute super."dclabel";
"dclabel-eci11" = dontDistribute super."dclabel-eci11";
"ddate" = dontDistribute super."ddate";
"ddc-base" = dontDistribute super."ddc-base";
"ddc-build" = dontDistribute super."ddc-build";
"ddc-code" = dontDistribute super."ddc-code";
@ -2970,6 +2971,7 @@ self: super: {
"ebeats" = dontDistribute super."ebeats";
"ebnf-bff" = dontDistribute super."ebnf-bff";
"ec2-signature" = dontDistribute super."ec2-signature";
"ec2-unikernel" = dontDistribute super."ec2-unikernel";
"eccrypto" = dontDistribute super."eccrypto";
"ecdsa" = dontDistribute super."ecdsa";
"ecma262" = dontDistribute super."ecma262";
@ -3317,6 +3319,7 @@ self: super: {
"fixpoint" = dontDistribute super."fixpoint";
"fixtime" = dontDistribute super."fixtime";
"fizz-buzz" = dontDistribute super."fizz-buzz";
"fizzbuzz" = dontDistribute super."fizzbuzz";
"flaccuraterip" = dontDistribute super."flaccuraterip";
"flamethrower" = dontDistribute super."flamethrower";
"flamingra" = dontDistribute super."flamingra";
@ -3368,6 +3371,7 @@ self: super: {
"foma" = dontDistribute super."foma";
"font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
"foo" = dontDistribute super."foo";
"foobar" = dontDistribute super."foobar";
"for-free" = dontDistribute super."for-free";
"forbidden-fruit" = dontDistribute super."forbidden-fruit";
"force-layout" = doDistribute super."force-layout_0_3_0_11";
@ -4221,6 +4225,12 @@ self: super: {
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_9";
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
"haskell-tools-ast" = dontDistribute super."haskell-tools-ast";
"haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc";
"haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen";
"haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf";
"haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint";
"haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor";
"haskell-tor" = dontDistribute super."haskell-tor";
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
"haskell-typescript" = dontDistribute super."haskell-typescript";
@ -4621,6 +4631,7 @@ self: super: {
"hopfield" = dontDistribute super."hopfield";
"hopfield-networks" = dontDistribute super."hopfield-networks";
"hopfli" = dontDistribute super."hopfli";
"hoppy-docs" = dontDistribute super."hoppy-docs";
"hoppy-generator" = dontDistribute super."hoppy-generator";
"hoppy-runtime" = dontDistribute super."hoppy-runtime";
"hoppy-std" = dontDistribute super."hoppy-std";
@ -5541,6 +5552,7 @@ self: super: {
"learn-physics-examples" = dontDistribute super."learn-physics-examples";
"learning-hmm" = dontDistribute super."learning-hmm";
"leetify" = dontDistribute super."leetify";
"legion" = dontDistribute super."legion";
"leksah" = dontDistribute super."leksah";
"leksah-server" = dontDistribute super."leksah-server";
"lendingclub" = dontDistribute super."lendingclub";
@ -6044,6 +6056,7 @@ self: super: {
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@ -7822,6 +7835,7 @@ self: super: {
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
"simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
"simple-tabular" = dontDistribute super."simple-tabular";
"simple-tar" = dontDistribute super."simple-tar";
"simple-templates" = dontDistribute super."simple-templates";
"simple-vec3" = dontDistribute super."simple-vec3";
"simpleargs" = dontDistribute super."simpleargs";
@ -8564,6 +8578,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timelens" = dontDistribute super."timelens";
"timeless" = dontDistribute super."timeless";
"timelike" = dontDistribute super."timelike";
"timelike-clock" = dontDistribute super."timelike-clock";
@ -9493,6 +9508,7 @@ self: super: {
"yuuko" = dontDistribute super."yuuko";
"yxdb-utils" = dontDistribute super."yxdb-utils";
"z3" = dontDistribute super."z3";
"z3-encoding" = dontDistribute super."z3-encoding";
"zalgo" = dontDistribute super."zalgo";
"zampolit" = dontDistribute super."zampolit";
"zasni-gerna" = dontDistribute super."zasni-gerna";

View file

@ -2656,6 +2656,7 @@ self: super: {
"dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
"dclabel" = dontDistribute super."dclabel";
"dclabel-eci11" = dontDistribute super."dclabel-eci11";
"ddate" = dontDistribute super."ddate";
"ddc-base" = dontDistribute super."ddc-base";
"ddc-build" = dontDistribute super."ddc-build";
"ddc-code" = dontDistribute super."ddc-code";
@ -2969,6 +2970,7 @@ self: super: {
"ebeats" = dontDistribute super."ebeats";
"ebnf-bff" = dontDistribute super."ebnf-bff";
"ec2-signature" = dontDistribute super."ec2-signature";
"ec2-unikernel" = dontDistribute super."ec2-unikernel";
"eccrypto" = dontDistribute super."eccrypto";
"ecdsa" = dontDistribute super."ecdsa";
"ecma262" = dontDistribute super."ecma262";
@ -3316,6 +3318,7 @@ self: super: {
"fixpoint" = dontDistribute super."fixpoint";
"fixtime" = dontDistribute super."fixtime";
"fizz-buzz" = dontDistribute super."fizz-buzz";
"fizzbuzz" = dontDistribute super."fizzbuzz";
"flaccuraterip" = dontDistribute super."flaccuraterip";
"flamethrower" = dontDistribute super."flamethrower";
"flamingra" = dontDistribute super."flamingra";
@ -3367,6 +3370,7 @@ self: super: {
"foma" = dontDistribute super."foma";
"font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
"foo" = dontDistribute super."foo";
"foobar" = dontDistribute super."foobar";
"for-free" = dontDistribute super."for-free";
"forbidden-fruit" = dontDistribute super."forbidden-fruit";
"force-layout" = doDistribute super."force-layout_0_3_0_11";
@ -4220,6 +4224,12 @@ self: super: {
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_9";
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
"haskell-tools-ast" = dontDistribute super."haskell-tools-ast";
"haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc";
"haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen";
"haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf";
"haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint";
"haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor";
"haskell-tor" = dontDistribute super."haskell-tor";
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
"haskell-typescript" = dontDistribute super."haskell-typescript";
@ -4620,6 +4630,7 @@ self: super: {
"hopfield" = dontDistribute super."hopfield";
"hopfield-networks" = dontDistribute super."hopfield-networks";
"hopfli" = dontDistribute super."hopfli";
"hoppy-docs" = dontDistribute super."hoppy-docs";
"hoppy-generator" = dontDistribute super."hoppy-generator";
"hoppy-runtime" = dontDistribute super."hoppy-runtime";
"hoppy-std" = dontDistribute super."hoppy-std";
@ -5540,6 +5551,7 @@ self: super: {
"learn-physics-examples" = dontDistribute super."learn-physics-examples";
"learning-hmm" = dontDistribute super."learning-hmm";
"leetify" = dontDistribute super."leetify";
"legion" = dontDistribute super."legion";
"leksah" = dontDistribute super."leksah";
"leksah-server" = dontDistribute super."leksah-server";
"lendingclub" = dontDistribute super."lendingclub";
@ -6043,6 +6055,7 @@ self: super: {
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
"monad-logger-prefix" = dontDistribute super."monad-logger-prefix";
"monad-loops" = doDistribute super."monad-loops_0_4_2_1";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
"monad-lrs" = dontDistribute super."monad-lrs";
@ -7819,6 +7832,7 @@ self: super: {
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
"simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
"simple-tabular" = dontDistribute super."simple-tabular";
"simple-tar" = dontDistribute super."simple-tar";
"simple-templates" = dontDistribute super."simple-templates";
"simple-vec3" = dontDistribute super."simple-vec3";
"simpleargs" = dontDistribute super."simpleargs";
@ -8560,6 +8574,7 @@ self: super: {
"timecalc" = dontDistribute super."timecalc";
"timeconsole" = dontDistribute super."timeconsole";
"timeit" = dontDistribute super."timeit";
"timelens" = dontDistribute super."timelens";
"timeless" = dontDistribute super."timeless";
"timelike" = dontDistribute super."timelike";
"timelike-clock" = dontDistribute super."timelike-clock";
@ -9489,6 +9504,7 @@ self: super: {
"yuuko" = dontDistribute super."yuuko";
"yxdb-utils" = dontDistribute super."yxdb-utils";
"z3" = dontDistribute super."z3";
"z3-encoding" = dontDistribute super."z3-encoding";
"zalgo" = dontDistribute super."zalgo";
"zampolit" = dontDistribute super."zampolit";
"zasni-gerna" = dontDistribute super."zasni-gerna";

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